{
	"info": {
		"_postman_id": "38464f51-f64d-4a59-b1de-86306af582a8",
		"name": "Plaid API Endpoints",
		"description": "A collection of Plaid API endpoints for the `sandbox` environment. Each endpoint request comes with an example request & response. It also contains 'use cases' for each product.  \n<br />\nBefore you begin, please set your `client_id` and `secret_key` variables in the Sandbox environment. You can find them in your Plaid [dashboard](https://dashboard.plaid.com/account/keys). Set the variables by clicking on the 'eye' icon in the top-right corner of the screen.",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"item": [
		{
			"name": "Link Tokens",
			"item": [
				{
					"name": "Create Link Token",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n  \"client_name\": \"Insert Client name here\",\n  \"country_codes\": [\"US\"],\n  \"language\": \"en\",\n  \"user\": {\n    \"client_user_id\": \"unique_user_id\"\n  },\n  \"products\": [\"auth\"]\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/link/token/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"link",
								"token",
								"create"
							]
						},
						"description": "Creates a link token with options. The link token can then be used to initialize Plaid Link."
					},
					"response": []
				},
				{
					"name": "Create Link Token - Update Mode",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n  \"client_name\": \"Insert Client name here\",\n  \"country_codes\": [\"US\"],\n  \"language\": \"en\",\n  \"user\": {\n    \"client_user_id\": \"unique_user_id\"\n  },\n  \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/link/token/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"link",
								"token",
								"create"
							]
						},
						"description": "Creates a link token with options. The link token can then be used to initialize Plaid Link."
					},
					"response": []
				},
				{
					"name": "Create Link Token - Payment Initiation",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n  \"client_name\": \"Insert Client name here\",\n  \"country_codes\": [\"GB\"],\n  \"language\": \"en\",\n  \"user\": {\n    \"client_user_id\": \"unique_user_id\"\n  },\n  \"products\": [\"payment_initiation\"],\n  \"payment_initiation\": {\n    \"payment_id\": \"INSERT_PAYMENT_ID_HERE\"\n  }\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/link/token/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"link",
								"token",
								"create"
							]
						},
						"description": "Creates a link token with options. The link token can then be used to initialize Plaid Link."
					},
					"response": []
				},
				{
					"name": "Create Link Token - OAuth",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n  \"client_name\": \"Insert Client name here\",\n  \"country_codes\": [\"GB\"],\n  \"language\": \"en\",\n  \"user\": {\n    \"client_user_id\": \"unique_user_id\"\n  },\n  \"products\": [\"auth\"],\n  \"redirect_uri\": \"http://example.com/redirect\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/link/token/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"link",
								"token",
								"create"
							]
						},
						"description": "Creates a link token with options. The link token can then be used to initialize Plaid Link."
					},
					"response": []
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Items",
			"item": [
				{
					"name": "Item Creation",
					"item": [
						{
							"name": "Create Item [Sandbox Only]",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"institution_id\": \"ins_3\",\n  \"initial_products\": [\"auth\"],\n  \"options\": {\n    \"webhook\": \"https://www.genericwebhookurl.com/webhook\"\n  }\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/sandbox/public_token/create",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"sandbox",
										"public_token",
										"create"
									]
								},
								"description": "Creates an `Item` in the `sandbox` environment. You will get back a `public_token` and a `request_id`."
							},
							"response": []
						},
						{
							"name": "Create Item Custom [Sandbox Only]",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"institution_id\": \"ins_3\",\n  \"initial_products\": [\"auth\"],\n  \"options\": {\n    \"webhook\": \"https://www.genericwebhookurl.com/webhook\",\n    \"override_username\": \"user_custom\",\n    \"override_password\": \"{\\\"force_error\\\": \\\"USER_SETUP_REQUIRED\\\"}\"\n  }\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/sandbox/public_token/create",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"sandbox",
										"public_token",
										"create"
									]
								},
								"description": "Creates an `Item` in the `sandbox` environment. You will get back a `public_token` and a `request_id`."
							},
							"response": []
						},
						{
							"name": "Exchange Token",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"public_token\": \"ENTER_PUBLIC_TOKEN_HERE\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/item/public_token/exchange",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"item",
										"public_token",
										"exchange"
									]
								},
								"description": "Goes through the exchange token process where the `public_token` is exchanged for an `access_token`."
							},
							"response": [
								{
									"name": "Exchange Token Example",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"public_token\": \"public-sandbox-a4215520-adff-4bee-a50b-5c5fc9643f5e\"\n}"
										},
										"url": {
											"raw": "https://{{env_url}}/item/public_token/exchange",
											"protocol": "https",
											"host": [
												"{{env_url}}"
											],
											"path": [
												"item",
												"public_token",
												"exchange"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Connection",
											"value": "keep-alive",
											"name": "Connection",
											"description": "Options that are desired for the connection"
										},
										{
											"key": "Content-Encoding",
											"value": "gzip",
											"name": "Content-Encoding",
											"description": "The type of encoding used on the data."
										},
										{
											"key": "Content-Length",
											"value": "159",
											"name": "Content-Length",
											"description": "The length of the response body in octets (8-bit bytes)"
										},
										{
											"key": "Content-Type",
											"value": "application/json",
											"name": "Content-Type",
											"description": "The mime type of this content"
										},
										{
											"key": "Date",
											"value": "Tue, 28 Aug 2018 23:05:58 GMT",
											"name": "Date",
											"description": "The date and time that the message was sent"
										},
										{
											"key": "Plaid-Version",
											"value": "2018-05-22",
											"name": "Plaid-Version",
											"description": "Custom header"
										},
										{
											"key": "Server",
											"value": "nginx",
											"name": "Server",
											"description": "A name for the server"
										},
										{
											"key": "Strict-Transport-Security",
											"value": "max-age=31536000; includeSubDomains; preload",
											"name": "Strict-Transport-Security",
											"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
										},
										{
											"key": "Vary",
											"value": "Accept-Encoding",
											"name": "Vary",
											"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
										},
										{
											"key": "X-Content-Type-Options",
											"value": "nosniff",
											"name": "X-Content-Type-Options",
											"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
										},
										{
											"key": "X-Frame-Options",
											"value": "DENY",
											"name": "X-Frame-Options",
											"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
										},
										{
											"key": "X-XSS-Protection",
											"value": "1; mode=block",
											"name": "X-XSS-Protection",
											"description": "Cross-site scripting (XSS) filter"
										}
									],
									"cookie": [],
									"body": "{\n  \"access_token\": \"access-sandbox-3f3181d2-76de-40c2-8f3b-152d2c6726d7\",\n  \"item_id\": \"wnVRXPmk3mt3wepjXEeXsbN4NWe5V9FrNeEN1\",\n  \"request_id\": \"WAH4B\"\n}"
								}
							]
						}
					],
					"protocolProfileBehavior": {},
					"_postman_isSubFolder": true
				},
				{
					"name": "Item Management",
					"item": [
						{
							"name": "Retrieve Item",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/item/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"item",
										"get"
									]
								},
								"description": "This endpoint allows you to retrieve information about an `Item`."
							},
							"response": [
								{
									"name": "Retrieve Item Example",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"access-sandbox-bb0b0f02-d34c-4bff-b609-4019cd6cd4e4\"\n}"
										},
										"url": {
											"raw": "https://{{env_url}}/item/get",
											"protocol": "https",
											"host": [
												"{{env_url}}"
											],
											"path": [
												"item",
												"get"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Connection",
											"value": "keep-alive",
											"name": "Connection",
											"description": "Options that are desired for the connection"
										},
										{
											"key": "Content-Encoding",
											"value": "gzip",
											"name": "Content-Encoding",
											"description": "The type of encoding used on the data."
										},
										{
											"key": "Content-Length",
											"value": "260",
											"name": "Content-Length",
											"description": "The length of the response body in octets (8-bit bytes)"
										},
										{
											"key": "Content-Type",
											"value": "application/json",
											"name": "Content-Type",
											"description": "The mime type of this content"
										},
										{
											"key": "Date",
											"value": "Tue, 28 Aug 2018 22:50:41 GMT",
											"name": "Date",
											"description": "The date and time that the message was sent"
										},
										{
											"key": "Plaid-Version",
											"value": "2018-05-22",
											"name": "Plaid-Version",
											"description": "Custom header"
										},
										{
											"key": "Server",
											"value": "nginx",
											"name": "Server",
											"description": "A name for the server"
										},
										{
											"key": "Strict-Transport-Security",
											"value": "max-age=31536000; includeSubDomains; preload",
											"name": "Strict-Transport-Security",
											"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
										},
										{
											"key": "Vary",
											"value": "Accept-Encoding",
											"name": "Vary",
											"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
										},
										{
											"key": "X-Content-Type-Options",
											"value": "nosniff",
											"name": "X-Content-Type-Options",
											"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
										},
										{
											"key": "X-Frame-Options",
											"value": "DENY",
											"name": "X-Frame-Options",
											"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
										},
										{
											"key": "X-XSS-Protection",
											"value": "1; mode=block",
											"name": "X-XSS-Protection",
											"description": "Cross-site scripting (XSS) filter"
										}
									],
									"cookie": [],
									"body": "{\n  \"item\": {\n    \"available_products\": [\n      \"assets\",\n      \"balance\",\n      \"credit_details\",\n      \"identity\",\n      \"income\",\n      \"transactions\"\n    ],\n    \"billed_products\": [\n      \"auth\"\n    ],\n    \"error\": null,\n    \"institution_id\": \"ins_3\",\n    \"item_id\": \"yqRQV73LQMt95BJ85PKGIzBnxkPkdoFy3NKa9\",\n    \"webhook\": \"https://www.genericwebhookurl.com/webhook\"\n  },\n  \"request_id\": \"JQ3wz\"\n}"
								}
							]
						},
						{
							"name": "Retrieve an Item's Accounts",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/accounts/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"accounts",
										"get"
									]
								},
								"description": "This endpoint allows you to retrieve all available `Account`s associated with an `Item`."
							},
							"response": [
								{
									"name": "Retrieve an Item's Accounts Example",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"access-sandbox-3f3181d2-76de-40c2-8f3b-152d2c6726d7\"\n}"
										},
										"url": {
											"raw": "https://{{env_url}}/accounts/get",
											"protocol": "https",
											"host": [
												"{{env_url}}"
											],
											"path": [
												"accounts",
												"get"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Connection",
											"value": "keep-alive",
											"name": "Connection",
											"description": "Options that are desired for the connection"
										},
										{
											"key": "Content-Encoding",
											"value": "gzip",
											"name": "Content-Encoding",
											"description": "The type of encoding used on the data."
										},
										{
											"key": "Content-Length",
											"value": "759",
											"name": "Content-Length",
											"description": "The length of the response body in octets (8-bit bytes)"
										},
										{
											"key": "Content-Type",
											"value": "application/json",
											"name": "Content-Type",
											"description": "The mime type of this content"
										},
										{
											"key": "Date",
											"value": "Tue, 28 Aug 2018 23:07:11 GMT",
											"name": "Date",
											"description": "The date and time that the message was sent"
										},
										{
											"key": "Plaid-Version",
											"value": "2018-05-22",
											"name": "Plaid-Version",
											"description": "Custom header"
										},
										{
											"key": "Server",
											"value": "nginx",
											"name": "Server",
											"description": "A name for the server"
										},
										{
											"key": "Strict-Transport-Security",
											"value": "max-age=31536000; includeSubDomains; preload",
											"name": "Strict-Transport-Security",
											"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
										},
										{
											"key": "Vary",
											"value": "Accept-Encoding",
											"name": "Vary",
											"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
										},
										{
											"key": "X-Content-Type-Options",
											"value": "nosniff",
											"name": "X-Content-Type-Options",
											"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
										},
										{
											"key": "X-Frame-Options",
											"value": "DENY",
											"name": "X-Frame-Options",
											"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
										},
										{
											"key": "X-XSS-Protection",
											"value": "1; mode=block",
											"name": "X-XSS-Protection",
											"description": "Cross-site scripting (XSS) filter"
										}
									],
									"cookie": [],
									"body": "{\n  \"accounts\": [\n    {\n      \"account_id\": \"PnpkZlD1rDtQZ7oxk97kSd3xJxz1pwf7bgeLk\",\n      \"balances\": {\n        \"available\": 100,\n        \"current\": 110,\n        \"iso_currency_code\": \"CAD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"0000\",\n      \"name\": \"Plaid Checking\",\n      \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n      \"subtype\": \"checking\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"eNVMxpWB6WFpQmr8gvmgi3woAoQP5aHLKpbvG\",\n      \"balances\": {\n        \"available\": 200,\n        \"current\": 210,\n        \"iso_currency_code\": \"CAD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"1111\",\n      \"name\": \"Plaid Saving\",\n      \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n      \"subtype\": \"savings\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"jQVLmWn4pnCokXGzlpXlSEKkXkd6AbT1kD7K4\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 1000,\n        \"iso_currency_code\": \"CAD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"2222\",\n      \"name\": \"Plaid CD\",\n      \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n      \"subtype\": \"cd\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"QbopGqDLzDCmZp7aM9pMhoeywyR1xnSpLvgPn\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 410,\n        \"iso_currency_code\": \"CAD\",\n        \"limit\": 2000,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"3333\",\n      \"name\": \"Plaid Credit Card\",\n      \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n      \"subtype\": \"credit card\",\n      \"type\": \"credit\"\n    },\n    {\n      \"account_id\": \"7zAR5KDnPDfybrlMj9rjUrQGNGVMBpCgze5bP\",\n      \"balances\": {\n        \"available\": 43200,\n        \"current\": 43200,\n        \"iso_currency_code\": \"CAD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"4444\",\n      \"name\": \"Plaid Money Market\",\n      \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n      \"subtype\": \"money market\",\n      \"type\": \"depository\"\n    }\n  ],\n  \"item\": {\n    \"available_products\": [\n      \"assets\",\n      \"balance\",\n      \"identity\",\n      \"income\",\n      \"transactions\"\n    ],\n    \"billed_products\": [\n      \"auth\"\n    ],\n    \"error\": null,\n    \"institution_id\": \"ins_43\",\n    \"item_id\": \"wnVRXPmk3mt3wepjXEeXsbN4NWe5V9FrNeEN1\",\n    \"webhook\": \"https://www.genericwebhookurl.com/webhook\"\n  },\n  \"request_id\": \"xBULJ\"\n}"
								}
							]
						},
						{
							"name": "Rotate Access Token",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/item/access_token/invalidate",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"item",
										"access_token",
										"invalidate"
									]
								},
								"description": "By default, the `access_token` associated with an `Item` does not expire and should be stored in a persistent, secure manner.  \n<br />\nYou can use the POST `/item/access_token/invalidate` endpoint to rotate the `access_token` associated with an `Item`. The endpoint returns a new `access_token` and immediately invalidates the previous `access_token`."
							},
							"response": [
								{
									"name": "Rotate Access Token Example",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"access_token\": \"Eaccess-sandbox-3f3181d2-76de-40c2-8f3b-152d2c6726d7\"\n}"
										},
										"url": {
											"raw": "https://{{env_url}}/item/access_token/invalidate",
											"protocol": "https",
											"host": [
												"{{env_url}}"
											],
											"path": [
												"item",
												"access_token",
												"invalidate"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Connection",
											"value": "keep-alive",
											"name": "Connection",
											"description": "Options that are desired for the connection"
										},
										{
											"key": "Content-Encoding",
											"value": "gzip",
											"name": "Content-Encoding",
											"description": "The type of encoding used on the data."
										},
										{
											"key": "Content-Length",
											"value": "120",
											"name": "Content-Length",
											"description": "The length of the response body in octets (8-bit bytes)"
										},
										{
											"key": "Content-Type",
											"value": "application/json",
											"name": "Content-Type",
											"description": "The mime type of this content"
										},
										{
											"key": "Date",
											"value": "Tue, 28 Aug 2018 22:54:30 GMT",
											"name": "Date",
											"description": "The date and time that the message was sent"
										},
										{
											"key": "Plaid-Version",
											"value": "2018-05-22",
											"name": "Plaid-Version",
											"description": "Custom header"
										},
										{
											"key": "Server",
											"value": "nginx",
											"name": "Server",
											"description": "A name for the server"
										},
										{
											"key": "Strict-Transport-Security",
											"value": "max-age=31536000; includeSubDomains; preload",
											"name": "Strict-Transport-Security",
											"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
										},
										{
											"key": "Vary",
											"value": "Accept-Encoding",
											"name": "Vary",
											"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
										},
										{
											"key": "X-Content-Type-Options",
											"value": "nosniff",
											"name": "X-Content-Type-Options",
											"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
										},
										{
											"key": "X-Frame-Options",
											"value": "DENY",
											"name": "X-Frame-Options",
											"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
										},
										{
											"key": "X-XSS-Protection",
											"value": "1; mode=block",
											"name": "X-XSS-Protection",
											"description": "Cross-site scripting (XSS) filter"
										}
									],
									"cookie": [],
									"body": "{\n  \"new_access_token\": \"access-sandbox-15b1169a-3dac-4d8c-a24c-d71e90b91e07\",\n  \"request_id\": \"L7wrN\"\n}"
								}
							]
						},
						{
							"name": "Update an Item's Webhook",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\",\n    \"webhook\": \"ENTER_WEBHOOK_URL_HERE\"\n }"
								},
								"url": {
									"raw": "https://{{env_url}}/item/webhook/update",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"item",
										"webhook",
										"update"
									]
								},
								"description": "This endpoint allows you to update the webhook url for an `Item`. This request triggers a `WEBHOOK_UPDATE_ACKNOWLEDGED` [webhook](https://plaid.com/docs/api/#item-webhooks)."
							},
							"response": [
								{
									"name": "Update an Item's Webhook Example",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"access_token\": \"access-sandbox-3c6e4f8e-d119-45d1-aa67-07f66512c0b8\",\n    \"webhook\": \"https://www.genericwebhookurl2.com/webhook\"\n }"
										},
										"url": {
											"raw": "https://{{env_url}}/item/webhook/update",
											"protocol": "https",
											"host": [
												"{{env_url}}"
											],
											"path": [
												"item",
												"webhook",
												"update"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Connection",
											"value": "keep-alive",
											"name": "Connection",
											"description": "Options that are desired for the connection"
										},
										{
											"key": "Content-Encoding",
											"value": "gzip",
											"name": "Content-Encoding",
											"description": "The type of encoding used on the data."
										},
										{
											"key": "Content-Length",
											"value": "261",
											"name": "Content-Length",
											"description": "The length of the response body in octets (8-bit bytes)"
										},
										{
											"key": "Content-Type",
											"value": "application/json",
											"name": "Content-Type",
											"description": "The mime type of this content"
										},
										{
											"key": "Date",
											"value": "Tue, 28 Aug 2018 22:52:41 GMT",
											"name": "Date",
											"description": "The date and time that the message was sent"
										},
										{
											"key": "Plaid-Version",
											"value": "2018-05-22",
											"name": "Plaid-Version",
											"description": "Custom header"
										},
										{
											"key": "Server",
											"value": "nginx",
											"name": "Server",
											"description": "A name for the server"
										},
										{
											"key": "Strict-Transport-Security",
											"value": "max-age=31536000; includeSubDomains; preload",
											"name": "Strict-Transport-Security",
											"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
										},
										{
											"key": "Vary",
											"value": "Accept-Encoding",
											"name": "Vary",
											"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
										},
										{
											"key": "X-Content-Type-Options",
											"value": "nosniff",
											"name": "X-Content-Type-Options",
											"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
										},
										{
											"key": "X-Frame-Options",
											"value": "DENY",
											"name": "X-Frame-Options",
											"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
										},
										{
											"key": "X-XSS-Protection",
											"value": "1; mode=block",
											"name": "X-XSS-Protection",
											"description": "Cross-site scripting (XSS) filter"
										}
									],
									"cookie": [],
									"body": "{\n  \"item\": {\n    \"available_products\": [\n      \"assets\",\n      \"balance\",\n      \"credit_details\",\n      \"identity\",\n      \"income\",\n      \"transactions\"\n    ],\n    \"billed_products\": [\n      \"auth\"\n    ],\n    \"error\": null,\n    \"institution_id\": \"ins_3\",\n    \"item_id\": \"yqRQV73LQMt95BJ85PKGIzBnxkPkdoFy3NKa9\",\n    \"webhook\": \"https://www.genericwebhookurl2.com/webhook\"\n  },\n  \"request_id\": \"zi7hT\"\n}"
								}
							]
						},
						{
							"name": "Simulate ITEM_LOGIN_REQUIRED [Sandbox Only]",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/sandbox/item/reset_login",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"sandbox",
										"item",
										"reset_login"
									]
								},
								"description": "An `Item` may transition into an error state in response to changes made by the user or financial institution. The most common scenarios are when a user changes their password or when the financial institution changes their multi-factor authentication flow. [Plaid Link](https://plaid.com/docs/api/#updating-items-via-link) makes it easy to restore a user's `Item` to a good state by having them provide updated credentials and MFA information, if needed.  \n<br />\nIn the Sandbox, `Item`s transition to an `ITEM_LOGIN_REQUIRED` error state automatically after 30 days. You can also simulate this event via an API request.  \n<br />\nThe `/sandbox/item/reset_login` endpoint allows you put an Item in an `ITEM_LOGIN_REQUIRED` error state. You can then use [Plaid Link update mode](https://plaid.com/docs/api/#updating-items-via-link) to restore the `Item` to a good state.  \n<br />\nAn `ITEM_LOGIN_REQUIRED` webhook will be fired after a call to this endpoint, if one is associated with the `Item`."
							},
							"response": [
								{
									"name": "Simulate ITEM_LOGIN_REQUIRED [Sandbox Only] Example",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"access_token\": \"access-sandbox-3f3181d2-76de-40c2-8f3b-152d2c6726d7\"\n}"
										},
										"url": {
											"raw": "https://{{env_url}}/sandbox/item/reset_login",
											"protocol": "https",
											"host": [
												"{{env_url}}"
											],
											"path": [
												"sandbox",
												"item",
												"reset_login"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Connection",
											"value": "keep-alive",
											"name": "Connection",
											"description": "Options that are desired for the connection"
										},
										{
											"key": "Content-Encoding",
											"value": "gzip",
											"name": "Content-Encoding",
											"description": "The type of encoding used on the data."
										},
										{
											"key": "Content-Length",
											"value": "70",
											"name": "Content-Length",
											"description": "The length of the response body in octets (8-bit bytes)"
										},
										{
											"key": "Content-Type",
											"value": "application/json",
											"name": "Content-Type",
											"description": "The mime type of this content"
										},
										{
											"key": "Date",
											"value": "Tue, 28 Aug 2018 22:56:15 GMT",
											"name": "Date",
											"description": "The date and time that the message was sent"
										},
										{
											"key": "Plaid-Version",
											"value": "2018-05-22",
											"name": "Plaid-Version",
											"description": "Custom header"
										},
										{
											"key": "Server",
											"value": "nginx",
											"name": "Server",
											"description": "A name for the server"
										},
										{
											"key": "Strict-Transport-Security",
											"value": "max-age=31536000; includeSubDomains; preload",
											"name": "Strict-Transport-Security",
											"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
										},
										{
											"key": "Vary",
											"value": "Accept-Encoding",
											"name": "Vary",
											"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
										},
										{
											"key": "X-Content-Type-Options",
											"value": "nosniff",
											"name": "X-Content-Type-Options",
											"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
										},
										{
											"key": "X-Frame-Options",
											"value": "DENY",
											"name": "X-Frame-Options",
											"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
										},
										{
											"key": "X-XSS-Protection",
											"value": "1; mode=block",
											"name": "X-XSS-Protection",
											"description": "Cross-site scripting (XSS) filter"
										}
									],
									"cookie": [],
									"body": "{\n  \"request_id\": \"vv5qz\",\n  \"reset_login\": true\n}"
								}
							]
						},
						{
							"name": "Remove Item",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/item/remove",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"item",
										"remove"
									]
								},
								"description": "This endpoint allows you to remove an `Item` using its `access_token`."
							},
							"response": [
								{
									"name": "Remove Item Example",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
										},
										"url": {
											"raw": "https://{{env_url}}/item/remove",
											"protocol": "https",
											"host": [
												"{{env_url}}"
											],
											"path": [
												"item",
												"remove"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Connection",
											"value": "keep-alive",
											"name": "Connection",
											"description": "Options that are desired for the connection"
										},
										{
											"key": "Content-Encoding",
											"value": "gzip",
											"name": "Content-Encoding",
											"description": "The type of encoding used on the data."
										},
										{
											"key": "Content-Length",
											"value": "64",
											"name": "Content-Length",
											"description": "The length of the response body in octets (8-bit bytes)"
										},
										{
											"key": "Content-Type",
											"value": "application/json",
											"name": "Content-Type",
											"description": "The mime type of this content"
										},
										{
											"key": "Date",
											"value": "Tue, 28 Aug 2018 22:56:41 GMT",
											"name": "Date",
											"description": "The date and time that the message was sent"
										},
										{
											"key": "Plaid-Version",
											"value": "2018-05-22",
											"name": "Plaid-Version",
											"description": "Custom header"
										},
										{
											"key": "Server",
											"value": "nginx",
											"name": "Server",
											"description": "A name for the server"
										},
										{
											"key": "Strict-Transport-Security",
											"value": "max-age=31536000; includeSubDomains; preload",
											"name": "Strict-Transport-Security",
											"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
										},
										{
											"key": "Vary",
											"value": "Accept-Encoding",
											"name": "Vary",
											"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
										},
										{
											"key": "X-Content-Type-Options",
											"value": "nosniff",
											"name": "X-Content-Type-Options",
											"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
										},
										{
											"key": "X-Frame-Options",
											"value": "DENY",
											"name": "X-Frame-Options",
											"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
										},
										{
											"key": "X-XSS-Protection",
											"value": "1; mode=block",
											"name": "X-XSS-Protection",
											"description": "Cross-site scripting (XSS) filter"
										}
									],
									"cookie": [],
									"body": "{\n  \"removed\": true,\n  \"request_id\": \"rIjWv\"\n}"
								},
								{
									"name": "Remove Item Example",
									"originalRequest": {
										"method": "POST",
										"header": [
											{
												"key": "Content-Type",
												"value": "application/json"
											}
										],
										"body": {
											"mode": "raw",
											"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
										},
										"url": {
											"raw": "https://{{env_url}}/item/remove",
											"protocol": "https",
											"host": [
												"{{env_url}}"
											],
											"path": [
												"item",
												"remove"
											]
										}
									},
									"status": "OK",
									"code": 200,
									"_postman_previewlanguage": "json",
									"header": [
										{
											"key": "Connection",
											"value": "keep-alive",
											"name": "Connection",
											"description": "Options that are desired for the connection"
										},
										{
											"key": "Content-Encoding",
											"value": "gzip",
											"name": "Content-Encoding",
											"description": "The type of encoding used on the data."
										},
										{
											"key": "Content-Length",
											"value": "64",
											"name": "Content-Length",
											"description": "The length of the response body in octets (8-bit bytes)"
										},
										{
											"key": "Content-Type",
											"value": "application/json",
											"name": "Content-Type",
											"description": "The mime type of this content"
										},
										{
											"key": "Date",
											"value": "Tue, 28 Aug 2018 23:08:14 GMT",
											"name": "Date",
											"description": "The date and time that the message was sent"
										},
										{
											"key": "Plaid-Version",
											"value": "2018-05-22",
											"name": "Plaid-Version",
											"description": "Custom header"
										},
										{
											"key": "Server",
											"value": "nginx",
											"name": "Server",
											"description": "A name for the server"
										},
										{
											"key": "Strict-Transport-Security",
											"value": "max-age=31536000; includeSubDomains; preload",
											"name": "Strict-Transport-Security",
											"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
										},
										{
											"key": "Vary",
											"value": "Accept-Encoding",
											"name": "Vary",
											"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
										},
										{
											"key": "X-Content-Type-Options",
											"value": "nosniff",
											"name": "X-Content-Type-Options",
											"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
										},
										{
											"key": "X-Frame-Options",
											"value": "DENY",
											"name": "X-Frame-Options",
											"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
										},
										{
											"key": "X-XSS-Protection",
											"value": "1; mode=block",
											"name": "X-XSS-Protection",
											"description": "Cross-site scripting (XSS) filter"
										}
									],
									"cookie": [],
									"body": "{\n  \"removed\": true,\n  \"request_id\": \"emqzg\"\n}"
								}
							]
						},
						{
							"name": "Automated Deposit Webhook",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n\"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"access_token\": \"\",\n  \"account_id\": \"\",\n  \"verification_status\": \"automatically_verified\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/sandbox/item/set_verification_status",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"sandbox",
										"item",
										"set_verification_status"
									]
								}
							},
							"response": []
						},
						{
							"name": "Create Public Token for Update",
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n  }"
								},
								"url": {
									"raw": "https://{{env_url}}/item/public_token/create",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"item",
										"public_token",
										"create"
									]
								}
							},
							"response": []
						}
					],
					"description": "This folder contains all the endpoints for managing your `Item`s.",
					"event": [
						{
							"listen": "prerequest",
							"script": {
								"id": "969a9887-aaec-4813-9714-0e0a63901c11",
								"type": "text/javascript",
								"exec": [
									""
								]
							}
						},
						{
							"listen": "test",
							"script": {
								"id": "17f6f980-3611-4cf7-805d-40b90b691475",
								"type": "text/javascript",
								"exec": [
									""
								]
							}
						}
					],
					"protocolProfileBehavior": {},
					"_postman_isSubFolder": true
				}
			],
			"description": "An `Item` is a set of credentials (map of key-value pairs) associated with a financial institution. Each `Item` can have many associated `Accounts`. For each `Account`, Plaid returns high-level information such as balance, name, and account type. Credit and depository `Accounts` may also have transactions associated with them.  \n<br/>\nIt is important to note that a single end-user of your application might have accounts at different financial institutions, which means they would have multiple different `Items` within your application. \n",
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"id": "47ce85f7-4910-4e96-ba69-0c6ac6ab512f",
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"id": "f8760a93-b433-490d-85e2-5119563ff8eb",
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Auth",
			"item": [
				{
					"name": "Retrieve Auth",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/auth/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"auth",
								"get"
							]
						},
						"description": "The `/auth/get` endpoint allows you to retrieve the bank account and routing numbers associated with an Item’s checking and savings accounts, along with high-level account data and balances."
					},
					"response": [
						{
							"name": "Retrieve Auth EFT Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"access-sandbox-3f3181d2-76de-40c2-8f3b-152d2c6726d7\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/auth/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"auth",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "827",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 28 Aug 2018 23:06:24 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"accounts\": [\n    {\n      \"account_id\": \"PnpkZlD1rDtQZ7oxk97kSd3xJxz1pwf7bgeLk\",\n      \"balances\": {\n        \"available\": 100,\n        \"current\": 110,\n        \"iso_currency_code\": \"CAD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"0000\",\n      \"name\": \"Plaid Checking\",\n      \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n      \"subtype\": \"checking\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"eNVMxpWB6WFpQmr8gvmgi3woAoQP5aHLKpbvG\",\n      \"balances\": {\n        \"available\": 200,\n        \"current\": 210,\n        \"iso_currency_code\": \"CAD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"1111\",\n      \"name\": \"Plaid Saving\",\n      \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n      \"subtype\": \"savings\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"jQVLmWn4pnCokXGzlpXlSEKkXkd6AbT1kD7K4\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 1000,\n        \"iso_currency_code\": \"CAD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"2222\",\n      \"name\": \"Plaid CD\",\n      \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n      \"subtype\": \"cd\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"QbopGqDLzDCmZp7aM9pMhoeywyR1xnSpLvgPn\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 410,\n        \"iso_currency_code\": \"CAD\",\n        \"limit\": 2000,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"3333\",\n      \"name\": \"Plaid Credit Card\",\n      \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n      \"subtype\": \"credit card\",\n      \"type\": \"credit\"\n    },\n    {\n      \"account_id\": \"7zAR5KDnPDfybrlMj9rjUrQGNGVMBpCgze5bP\",\n      \"balances\": {\n        \"available\": 43200,\n        \"current\": 43200,\n        \"iso_currency_code\": \"CAD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"4444\",\n      \"name\": \"Plaid Money Market\",\n      \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n      \"subtype\": \"money market\",\n      \"type\": \"depository\"\n    }\n  ],\n  \"item\": {\n    \"available_products\": [\n      \"assets\",\n      \"balance\",\n      \"identity\",\n      \"income\",\n      \"transactions\"\n    ],\n    \"billed_products\": [\n      \"auth\"\n    ],\n    \"error\": null,\n    \"institution_id\": \"ins_43\",\n    \"item_id\": \"wnVRXPmk3mt3wepjXEeXsbN4NWe5V9FrNeEN1\",\n    \"webhook\": \"https://www.genericwebhookurl.com/webhook\"\n  },\n  \"numbers\": {\n    \"ach\": [],\n    \"eft\": [\n      {\n        \"account\": \"111122220000\",\n        \"account_id\": \"PnpkZlD1rDtQZ7oxk97kSd3xJxz1pwf7bgeLk\",\n        \"branch\": \"01533\",\n        \"institution\": \"114\"\n      },\n      {\n        \"account\": \"111122221111\",\n        \"account_id\": \"eNVMxpWB6WFpQmr8gvmgi3woAoQP5aHLKpbvG\",\n        \"branch\": \"01533\",\n        \"institution\": \"114\"\n      }\n    ]\n  },\n  \"request_id\": \"X5W6V\"\n}"
						},
						{
							"name": "Retrieve Auth ACH Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"access-sandbox-00a30504-0eb2-4fb5-8af9-b7eb5c5f23f7\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/auth/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"auth",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "850",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 28 Aug 2018 23:03:56 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"accounts\": [\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"balances\": {\n        \"available\": 100,\n        \"current\": 110,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"0000\",\n      \"name\": \"Plaid Checking\",\n      \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n      \"subtype\": \"checking\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"balances\": {\n        \"available\": 200,\n        \"current\": 210,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"1111\",\n      \"name\": \"Plaid Saving\",\n      \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n      \"subtype\": \"savings\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"5NVq637arPcAbDxWd7GZUd3g5pjXPWFZlNNLz\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 1000,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"2222\",\n      \"name\": \"Plaid CD\",\n      \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n      \"subtype\": \"cd\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 410,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": 2000,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"3333\",\n      \"name\": \"Plaid Credit Card\",\n      \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n      \"subtype\": \"credit card\",\n      \"type\": \"credit\"\n    },\n    {\n      \"account_id\": \"Jzbo9AkW8vcleKXgyPJ4cjva1KQw7qid3RRNb\",\n      \"balances\": {\n        \"available\": 43200,\n        \"current\": 43200,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"4444\",\n      \"name\": \"Plaid Money Market\",\n      \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n      \"subtype\": \"money market\",\n      \"type\": \"depository\"\n    }\n  ],\n  \"item\": {\n    \"available_products\": [\n      \"assets\",\n      \"balance\",\n      \"credit_details\"\n    ],\n    \"billed_products\": [\n      \"auth\",\n      \"identity\",\n      \"income\",\n      \"transactions\"\n    ],\n    \"error\": null,\n    \"institution_id\": \"ins_3\",\n    \"item_id\": \"QNWnmvzAKwcx9RwPXqVMSoRBjkroVnhpge7bq\",\n    \"webhook\": \"https://www.genericwebhookurl.com/webhook\"\n  },\n  \"numbers\": {\n    \"ach\": [\n      {\n        \"account\": \"1111222233330000\",\n        \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n        \"routing\": \"011401533\",\n        \"wire_routing\": \"021000021\"\n      },\n      {\n        \"account\": \"1111222233331111\",\n        \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n        \"routing\": \"011401533\",\n        \"wire_routing\": \"021000021\"\n      }\n    ],\n    \"eft\": []\n  },\n  \"request_id\": \"snosJ\"\n}"
						}
					]
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Transactions",
			"item": [
				{
					"name": "Retrieve Transactions",
					"event": [
						{
							"listen": "prerequest",
							"script": {
								"id": "d62b0edc-b07c-48df-813b-e00fc4793e05",
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\",\n  \"start_date\": \"2017-01-01\",\n  \"end_date\": \"2019-05-10\" \n}"
						},
						"url": {
							"raw": "https://{{env_url}}/transactions/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"transactions",
								"get"
							]
						},
						"description": "The `/transactions/get` endpoint allows developers to receive user-authorized transaction data for credit and depository-type Accounts. Transaction data is standardized across financial institutions, and in many cases transactions are linked to a clean name, entity type, location, and category. Similarly, account data is standardized and returned with a clean name, number, balance, and other meta information where available.  \n<br />\n\nYou must wait to retrieve transactions after creating an `Item` as it takes a couple seconds for Plaid to grab `transaction` data initially. If you don't, you will receive a `PRODUCT_NOT_READY` error. A good practice is to retrieve the data when you are notified that it's ready via webhook."
					},
					"response": [
						{
							"name": "Retrieve Transactions Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"access-sandbox-00a30504-0eb2-4fb5-8af9-b7eb5c5f23f7\",\n\t\"start_date\": \"2017-01-01\",\n\t\"end_date\": \"2018-01-01\",\n\t\"options\": {\n\t\t\"count\": 250,\n\t\t\"offset\": 100\n\t}\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/transactions/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"transactions",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 28 Aug 2018 23:03:30 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked",
									"name": "Transfer-Encoding",
									"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"accounts\": [\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"balances\": {\n        \"available\": 100,\n        \"current\": 110,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"0000\",\n      \"name\": \"Plaid Checking\",\n      \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n      \"subtype\": \"checking\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"balances\": {\n        \"available\": 200,\n        \"current\": 210,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"1111\",\n      \"name\": \"Plaid Saving\",\n      \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n      \"subtype\": \"savings\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"5NVq637arPcAbDxWd7GZUd3g5pjXPWFZlNNLz\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 1000,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"2222\",\n      \"name\": \"Plaid CD\",\n      \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n      \"subtype\": \"cd\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 410,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": 2000,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"3333\",\n      \"name\": \"Plaid Credit Card\",\n      \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n      \"subtype\": \"credit card\",\n      \"type\": \"credit\"\n    },\n    {\n      \"account_id\": \"Jzbo9AkW8vcleKXgyPJ4cjva1KQw7qid3RRNb\",\n      \"balances\": {\n        \"available\": 43200,\n        \"current\": 43200,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"4444\",\n      \"name\": \"Plaid Money Market\",\n      \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n      \"subtype\": \"money market\",\n      \"type\": \"depository\"\n    }\n  ],\n  \"item\": {\n    \"available_products\": [\n      \"assets\",\n      \"balance\",\n      \"credit_details\"\n    ],\n    \"billed_products\": [\n      \"auth\",\n      \"identity\",\n      \"income\",\n      \"transactions\"\n    ],\n    \"error\": null,\n    \"institution_id\": \"ins_3\",\n    \"item_id\": \"QNWnmvzAKwcx9RwPXqVMSoRBjkroVnhpge7bq\",\n    \"webhook\": \"https://www.genericwebhookurl.com/webhook\"\n  },\n  \"request_id\": \"a4O3F\",\n  \"total_transactions\": 194,\n  \"transactions\": [\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 78.5,\n      \"category\": [\n        \"Recreation\",\n        \"Gyms and Fitness Centers\"\n      ],\n      \"category_id\": \"17018000\",\n      \"date\": \"2017-06-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Touchstone Climbing\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ygbB5vdRjLTByelzwEKkizPwpa6p3ltymExM3\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": -500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-06-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"3avmdzPxq4i1JAv63dVMI431nNpnl7Cq69z8E\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 12,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-06-27\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": \"3322\",\n        \"zip\": null\n      },\n      \"name\": \"McDonald's\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"z8539RJ17pfype3mQb6rh5eGZ36ZPBcorxpgL\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 4.33,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Coffee Shop\"\n      ],\n      \"category_id\": \"13005043\",\n      \"date\": \"2017-06-27\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Starbucks\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"B85791wWQEfjxn3rDzgeIJB8aZ5aXqCwE3rLj\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 89.4,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-06-26\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"SparkFun\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"rQ5b9Aqo3ksZNRvAVEgLCebRWNdWPmIl4ZEDg\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": -4.22,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-06-25\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"INTRST PYMNT\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"Gqk1o8w6pvUMP4DRd9ABSa8By6QyMgS1vbkjA\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-06-15\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"mN9EboJwqdc6MJPKvoW9tD6ZKR3Km9tLN16ko\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 6.33,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-06-13\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 072515 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"KBVgZGRWEvtqQgJAVjKZT8yZlwqlaKFVqzMma\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-06-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Tectra Inc\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"blj7gNpo1vtQeNw7VEqvIZxb96P9encVjW8Pl\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 2078.5,\n      \"category\": [\n        \"Payment\"\n      ],\n      \"category_id\": \"16000000\",\n      \"date\": \"2017-06-09\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"AUTOMATIC PAYMENT - THANK\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"nPJWwg49Kau8DanrvypmcjGq7vZ7emu6RzvDd\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-06-09\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"KFC\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"Gqk1o8w6pvUMP4DRd9ABSa8By6QyMgS1vbkwe\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Shops\",\n        \"Bicycles\"\n      ],\n      \"category_id\": \"19007000\",\n      \"date\": \"2017-06-09\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Madison Bicycle Shop\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"Ag9jpM1We8TA3koQlrBRUw8naPLalBi1DgzMv\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": 25,\n      \"category\": [\n        \"Payment\",\n        \"Credit Card\"\n      ],\n      \"category_id\": \"16001000\",\n      \"date\": \"2017-05-31\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CREDIT CARD 3333 PAYMENT *//\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"Ag9jpM1We8TA3koQlrBRUw8naPLalBi1Dgze4\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 5.4,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-05-31\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 063015 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"qejn9WloBPIoa5k3vwmRszeKvw3vV4tdGwnVZ\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"Jzbo9AkW8vcleKXgyPJ4cjva1KQw7qid3RRNb\",\n      \"account_owner\": null,\n      \"amount\": 5850,\n      \"category\": [\n        \"Transfer\",\n        \"Debit\"\n      ],\n      \"category_id\": \"21006000\",\n      \"date\": \"2017-05-30\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"ACH Electronic CreditGUSTO PAY 123456\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": \"ACH\",\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"QNWnmvzAKwcx9RwPXqVMSo9MPmgPalIpXKvZz\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"5NVq637arPcAbDxWd7GZUd3g5pjXPWFZlNNLz\",\n      \"account_owner\": null,\n      \"amount\": 1000,\n      \"category\": [\n        \"Service\"\n      ],\n      \"category_id\": \"18000000\",\n      \"date\": \"2017-05-30\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CD DEPOSIT .INITIAL.\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"6PBKdxX4zjuAkENZabgqU7b5zqBzD8TgZd4mP\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 78.5,\n      \"category\": [\n        \"Recreation\",\n        \"Gyms and Fitness Centers\"\n      ],\n      \"category_id\": \"17018000\",\n      \"date\": \"2017-05-29\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Touchstone Climbing\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"WZ4rzlJAdvu6aVjKXxp9tAB9wjywVEil8pgxk\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": -500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-05-29\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"l418dp7olxiDAaok8E1pi5l3zKLzwXcZQblrl\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 12,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-05-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": \"3322\",\n        \"zip\": null\n      },\n      \"name\": \"McDonald's\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"Jzbo9AkW8vcleKXgyPJ4cjA4qbeqZdud3Rm5R\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 4.33,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Coffee Shop\"\n      ],\n      \"category_id\": \"13005043\",\n      \"date\": \"2017-05-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Starbucks\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"kamgkLwoG3iMQPzlvEaZSGQ5LopLwBiWnZk8N\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 89.4,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-05-27\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"SparkFun\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"5NVq637arPcAbDxWd7GZUdqkWlEWKRuZlN93B\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": -4.22,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-05-26\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"INTRST PYMNT\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"WZ4rzlJAdvu6aVjKXxp9tAB9wjywVEil8pga6\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-05-16\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"EArZvo7W1GsGm1Wwax6RTByRgALgmJCX7obzn\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 6.33,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-05-14\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 072515 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"wp5rJy31NMfyEJNDvoqXhbK5yrQyDjirwWJqn\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-05-11\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Tectra Inc\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"87Rzqa6P3efr81xyNJD3iJdLKVEKkrCw69q53\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 2078.5,\n      \"category\": [\n        \"Payment\"\n      ],\n      \"category_id\": \"16000000\",\n      \"date\": \"2017-05-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"AUTOMATIC PAYMENT - THANK\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"gBJ1kQp68KtNP7XDVnoxToVxZ71Z9AIgBKW9R\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-05-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"KFC\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ojLA98bor4uk6gQA8ENXTdbeBxlBMXuRDNEAQ\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Shops\",\n        \"Bicycles\"\n      ],\n      \"category_id\": \"19007000\",\n      \"date\": \"2017-05-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Madison Bicycle Shop\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"p7XG9EgmzNfkWXwB8V5pTZxMKa4KrpcLG5aeQ\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": 25,\n      \"category\": [\n        \"Payment\",\n        \"Credit Card\"\n      ],\n      \"category_id\": \"16001000\",\n      \"date\": \"2017-05-01\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CREDIT CARD 3333 PAYMENT *//\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"EArZvo7W1GsGm1Wwax6RTByRgALgmJCX7obdX\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 5.4,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-05-01\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 063015 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"VQgKrVpmxvsPdVEoqArmTkXmzZ4zGBSW1Kzp3\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"Jzbo9AkW8vcleKXgyPJ4cjva1KQw7qid3RRNb\",\n      \"account_owner\": null,\n      \"amount\": 5850,\n      \"category\": [\n        \"Transfer\",\n        \"Debit\"\n      ],\n      \"category_id\": \"21006000\",\n      \"date\": \"2017-04-30\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"ACH Electronic CreditGUSTO PAY 123456\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": \"ACH\",\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"erJZ176DoltPvZw7V5EgT3dgKMJKGbFLQWpJV\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"5NVq637arPcAbDxWd7GZUd3g5pjXPWFZlNNLz\",\n      \"account_owner\": null,\n      \"amount\": 1000,\n      \"category\": [\n        \"Service\"\n      ],\n      \"category_id\": \"18000000\",\n      \"date\": \"2017-04-30\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CD DEPOSIT .INITIAL.\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"RP1bokBArvudzjgPoKXlij5lkZ6kEJuRyn8wA\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 78.5,\n      \"category\": [\n        \"Recreation\",\n        \"Gyms and Fitness Centers\"\n      ],\n      \"category_id\": \"17018000\",\n      \"date\": \"2017-04-29\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Touchstone Climbing\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"L3b8onMwWvfKmzrpGn7QI8kQNjLNArFPMNwBE\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": -500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-04-29\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"DWwQVpoGMAcbmzyr4WGwcevw1AZ1WNIvD6bEA\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 12,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-04-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": \"3322\",\n        \"zip\": null\n      },\n      \"name\": \"McDonald's\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"6PBKdxX4zjuAkENZabgqU7b5zqBzD8TgZd4bA\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 4.33,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Coffee Shop\"\n      ],\n      \"category_id\": \"13005043\",\n      \"date\": \"2017-04-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Starbucks\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"XMwkBqoRavf74DyEGAoWsg6WA3xAPBIdZeGPz\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 89.4,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-04-27\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"SparkFun\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"RP1bokBArvudzjgPoKXlij5lkZ6kEJuRyn8X5\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": -4.22,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-04-26\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"INTRST PYMNT\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"87Rzqa6P3efr81xyNJD3iJdLKVEKkrCw69qEx\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-04-16\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"1xwnmKJBGduoJEbjzexZsjXJpZNpm3u5RMBVo\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 6.33,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-04-14\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 072515 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"vLRKAmBJ4ZtKpMLRv1WBIMbQ45K4zaSWm8rnJ\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-04-11\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Tectra Inc\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"MxZkoblVAvurMQegwW8lixwlqG7qJAi9vQqkP\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 2078.5,\n      \"category\": [\n        \"Payment\"\n      ],\n      \"category_id\": \"16000000\",\n      \"date\": \"2017-04-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"AUTOMATIC PAYMENT - THANK\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ZLj3erbANXtQ96jxV4B7ILR7KG6Kx5tgp74WV\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-04-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"KFC\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"QNWnmvzAKwcx9RwPXqVMSo9MPmgPalIpXKvBW\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Shops\",\n        \"Bicycles\"\n      ],\n      \"category_id\": \"19007000\",\n      \"date\": \"2017-04-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Madison Bicycle Shop\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"erJZ176DoltPvZw7V5EgT3dgKMJKGbFLQWpPz\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": 25,\n      \"category\": [\n        \"Payment\",\n        \"Credit Card\"\n      ],\n      \"category_id\": \"16001000\",\n      \"date\": \"2017-04-01\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CREDIT CARD 3333 PAYMENT *//\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"gBJ1kQp68KtNP7XDVnoxToVxZ71Z9AIgBKWkj\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 5.4,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-04-01\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 063015 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"9ewBK4kjxQIAybd1P7KQUyA8Pz9PVlfR1ZjVK\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"Jzbo9AkW8vcleKXgyPJ4cjva1KQw7qid3RRNb\",\n      \"account_owner\": null,\n      \"amount\": 5850,\n      \"category\": [\n        \"Transfer\",\n        \"Debit\"\n      ],\n      \"category_id\": \"21006000\",\n      \"date\": \"2017-03-31\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"ACH Electronic CreditGUSTO PAY 123456\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": \"ACH\",\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"7jVrldPNB7uA9Dp64XJjUr9l7Kq7wAfgPXe6M\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"5NVq637arPcAbDxWd7GZUd3g5pjXPWFZlNNLz\",\n      \"account_owner\": null,\n      \"amount\": 1000,\n      \"category\": [\n        \"Service\"\n      ],\n      \"category_id\": \"18000000\",\n      \"date\": \"2017-03-31\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CD DEPOSIT .INITIAL.\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"vLRKAmBJ4ZtKpMLRv1WBIMbQ45K4zaSWm8rgR\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 78.5,\n      \"category\": [\n        \"Recreation\",\n        \"Gyms and Fitness Centers\"\n      ],\n      \"category_id\": \"17018000\",\n      \"date\": \"2017-03-30\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Touchstone Climbing\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"7jVrldPNB7uA9Dp64XJjUr9l7Kq7wAfgPXe3e\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": -500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-03-30\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ygbB5vdRjLTByelzwEKkizPwpa6p3ltymExWo\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 12,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-03-29\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": \"3322\",\n        \"zip\": null\n      },\n      \"name\": \"McDonald's\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"blj7gNpo1vtQeNw7VEqvIZxb96P9encVjW8N3\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 4.33,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Coffee Shop\"\n      ],\n      \"category_id\": \"13005043\",\n      \"date\": \"2017-03-29\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Starbucks\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"mN9EboJwqdc6MJPKvoW9tD6ZKR3Km9tLN16MP\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 89.4,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-03-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"SparkFun\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"nPJWwg49Kau8DanrvypmcjGq7vZ7emu6RzvKK\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": -4.22,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-03-27\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"INTRST PYMNT\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ojLA98bor4uk6gQA8ENXTdbeBxlBMXuRDNEwB\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-03-17\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"jdgoP1p6ABu7pwKRvyWlsEyrwRawMeI1dJD9P\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 6.33,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-03-15\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 072515 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"Gqk1o8w6pvUMP4DRd9ABSa8By6QyMgS1vbkAG\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-03-12\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Tectra Inc\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"P4EGo9rAqvi39WqLylRkSdlkNQ6NBau7azgjz\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 2078.5,\n      \"category\": [\n        \"Payment\"\n      ],\n      \"category_id\": \"16000000\",\n      \"date\": \"2017-03-11\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"AUTOMATIC PAYMENT - THANK\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"NdnWgmqyGvuzlyA8bWdjIZ7jyRByMacWdM9Ve\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-03-11\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"KFC\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"44VlGB6dKNionDwyXpvzsRm5MLpMbqtdzaBmG\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Shops\",\n        \"Bicycles\"\n      ],\n      \"category_id\": \"19007000\",\n      \"date\": \"2017-03-11\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Madison Bicycle Shop\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"aA3j94kGMvsd369RVAGMi5oMNwKNAVc7wgrXA\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": 25,\n      \"category\": [\n        \"Payment\",\n        \"Credit Card\"\n      ],\n      \"category_id\": \"16001000\",\n      \"date\": \"2017-03-02\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CREDIT CARD 3333 PAYMENT *//\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"p7XG9EgmzNfkWXwB8V5pTZxMKa4KrpcLG5amq\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 5.4,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-03-02\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 063015 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"Ag9jpM1We8TA3koQlrBRUw8naPLalBi1Dgz69\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"Jzbo9AkW8vcleKXgyPJ4cjva1KQw7qid3RRNb\",\n      \"account_owner\": null,\n      \"amount\": 5850,\n      \"category\": [\n        \"Transfer\",\n        \"Debit\"\n      ],\n      \"category_id\": \"21006000\",\n      \"date\": \"2017-03-01\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"ACH Electronic CreditGUSTO PAY 123456\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": \"ACH\",\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"jdgoP1p6ABu7pwKRvyWlsEyrwRawMeI1dJDxv\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"5NVq637arPcAbDxWd7GZUd3g5pjXPWFZlNNLz\",\n      \"account_owner\": null,\n      \"amount\": 1000,\n      \"category\": [\n        \"Service\"\n      ],\n      \"category_id\": \"18000000\",\n      \"date\": \"2017-03-01\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CD DEPOSIT .INITIAL.\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"9ewBK4kjxQIAybd1P7KQUyA8Pz9PVlfR1ZjkQ\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 78.5,\n      \"category\": [\n        \"Recreation\",\n        \"Gyms and Fitness Centers\"\n      ],\n      \"category_id\": \"17018000\",\n      \"date\": \"2017-02-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Touchstone Climbing\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"dKJQ8jg9pvulaZ37VoBQcM9QgJdglXSZK47X8\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": -500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-02-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"WZ4rzlJAdvu6aVjKXxp9tAB9wjywVEil8pgwl\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 12,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-02-27\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": \"3322\",\n        \"zip\": null\n      },\n      \"name\": \"McDonald's\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"87Rzqa6P3efr81xyNJD3iJdLKVEKkrCw69qKv\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 4.33,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Coffee Shop\"\n      ],\n      \"category_id\": \"13005043\",\n      \"date\": \"2017-02-27\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Starbucks\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"EArZvo7W1GsGm1Wwax6RTByRgALgmJCX7ob9j\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 89.4,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-02-26\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"SparkFun\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"gBJ1kQp68KtNP7XDVnoxToVxZ71Z9AIgBKW4Z\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": -4.22,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-02-25\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"INTRST PYMNT\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"L3b8onMwWvfKmzrpGn7QI8kQNjLNArFPMNwz5\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-02-15\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ojLA98bor4uk6gQA8ENXTdbeBxlBMXuRDNEvx\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 6.33,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-02-13\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 072515 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ojLA98bor4uk6gQA8ENXTdbeBxlBMXuRDNEkP\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-02-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Tectra Inc\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"p7XG9EgmzNfkWXwB8V5pTZxMKa4KrpcLG5aXm\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 2078.5,\n      \"category\": [\n        \"Payment\"\n      ],\n      \"category_id\": \"16000000\",\n      \"date\": \"2017-02-09\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"AUTOMATIC PAYMENT - THANK\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"L3b8onMwWvfKmzrpGn7QI8kQNjLNArFPMNw3d\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-02-09\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"KFC\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"1xwnmKJBGduoJEbjzexZsjXJpZNpm3u5RMBDV\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Shops\",\n        \"Bicycles\"\n      ],\n      \"category_id\": \"19007000\",\n      \"date\": \"2017-02-09\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Madison Bicycle Shop\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"MxZkoblVAvurMQegwW8lixwlqG7qJAi9vQqmm\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": 25,\n      \"category\": [\n        \"Payment\",\n        \"Credit Card\"\n      ],\n      \"category_id\": \"16001000\",\n      \"date\": \"2017-01-31\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CREDIT CARD 3333 PAYMENT *//\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"1xwnmKJBGduoJEbjzexZsjXJpZNpm3u5RMBvR\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 5.4,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-01-31\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 063015 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"p7XG9EgmzNfkWXwB8V5pTZxMKa4KrpcLG5aEd\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"Jzbo9AkW8vcleKXgyPJ4cjva1KQw7qid3RRNb\",\n      \"account_owner\": null,\n      \"amount\": 5850,\n      \"category\": [\n        \"Transfer\",\n        \"Debit\"\n      ],\n      \"category_id\": \"21006000\",\n      \"date\": \"2017-01-30\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"ACH Electronic CreditGUSTO PAY 123456\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": \"ACH\",\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"P4EGo9rAqvi39WqLylRkSdlkNQ6NBau7azg8o\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"5NVq637arPcAbDxWd7GZUd3g5pjXPWFZlNNLz\",\n      \"account_owner\": null,\n      \"amount\": 1000,\n      \"category\": [\n        \"Service\"\n      ],\n      \"category_id\": \"18000000\",\n      \"date\": \"2017-01-30\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CD DEPOSIT .INITIAL.\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ygbB5vdRjLTByelzwEKkizPwpa6p3ltymExoe\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 78.5,\n      \"category\": [\n        \"Recreation\",\n        \"Gyms and Fitness Centers\"\n      ],\n      \"category_id\": \"17018000\",\n      \"date\": \"2017-01-29\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Touchstone Climbing\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ZLj3erbANXtQ96jxV4B7ILR7KG6Kx5tgp74xP\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": -500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-01-29\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"L3b8onMwWvfKmzrpGn7QI8kQNjLNArFPMNwlM\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 12,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-01-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": \"3322\",\n        \"zip\": null\n      },\n      \"name\": \"McDonald's\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"MxZkoblVAvurMQegwW8lixwlqG7qJAi9vQqel\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 4.33,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Coffee Shop\"\n      ],\n      \"category_id\": \"13005043\",\n      \"date\": \"2017-01-28\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Starbucks\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"1xwnmKJBGduoJEbjzexZsjXJpZNpm3u5RMBZ7\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 89.4,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-01-27\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"SparkFun\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ZLj3erbANXtQ96jxV4B7ILR7KG6Kx5tgp74rE\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": -4.22,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-01-26\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"INTRST PYMNT\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"MxZkoblVAvurMQegwW8lixwlqG7qJAi9vQqZx\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ],\n      \"category_id\": \"22001000\",\n      \"date\": \"2017-01-16\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"United Airlines\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"QNWnmvzAKwcx9RwPXqVMSo9MPmgPalIpXKvjz\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 6.33,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-01-14\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 072515 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"QNWnmvzAKwcx9RwPXqVMSo9MPmgPalIpXKv31\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-01-11\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Tectra Inc\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"erJZ176DoltPvZw7V5EgT3dgKMJKGbFLQWpxV\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 2078.5,\n      \"category\": [\n        \"Payment\"\n      ],\n      \"category_id\": \"16000000\",\n      \"date\": \"2017-01-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"AUTOMATIC PAYMENT - THANK\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"7jVrldPNB7uA9Dp64XJjUr9l7Kq7wAfgPXewM\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ],\n      \"category_id\": \"13005000\",\n      \"date\": \"2017-01-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"KFC\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"jdgoP1p6ABu7pwKRvyWlsEyrwRawMeI1dJDQv\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"account_owner\": null,\n      \"amount\": 500,\n      \"category\": [\n        \"Shops\",\n        \"Bicycles\"\n      ],\n      \"category_id\": \"19007000\",\n      \"date\": \"2017-01-10\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Madison Bicycle Shop\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"P4EGo9rAqvi39WqLylRkSdlkNQ6NBau7azgKo\",\n      \"transaction_type\": \"place\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"account_owner\": null,\n      \"amount\": 25,\n      \"category\": [\n        \"Payment\",\n        \"Credit Card\"\n      ],\n      \"category_id\": \"16001000\",\n      \"date\": \"2017-01-01\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"CREDIT CARD 3333 PAYMENT *//\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"ZLj3erbANXtQ96jxV4B7ILR7KG6Kx5tgp74kR\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    },\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"account_owner\": null,\n      \"amount\": 5.4,\n      \"category\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ],\n      \"category_id\": \"22006001\",\n      \"date\": \"2017-01-01\",\n      \"iso_currency_code\": \"USD\",\n      \"location\": {\n        \"address\": null,\n        \"city\": null,\n        \"lat\": null,\n        \"lon\": null,\n        \"state\": null,\n        \"store_number\": null,\n        \"zip\": null\n      },\n      \"name\": \"Uber 063015 SF**POOL**\",\n      \"payment_meta\": {\n        \"by_order_of\": null,\n        \"payee\": null,\n        \"payer\": null,\n        \"payment_method\": null,\n        \"payment_processor\": null,\n        \"ppd_id\": null,\n        \"reason\": null,\n        \"reference_number\": null\n      },\n      \"pending\": false,\n      \"pending_transaction_id\": null,\n      \"transaction_id\": \"erJZ176DoltPvZw7V5EgT3dgKMJKGbFLQWp7N\",\n      \"transaction_type\": \"special\",\n      \"unofficial_currency_code\": null\n    }\n  ]\n}"
						}
					]
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Balance",
			"item": [
				{
					"name": "Retrieve Balance",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/accounts/balance/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"accounts",
								"balance",
								"get"
							]
						},
						"description": "The `/accounts/balance/get` endpoint returns the real-time balance for each of an `Item`’s accounts. It can be used for existing `Item`s that were added via any of Plaid’s other products."
					},
					"response": [
						{
							"name": "Retrieve Balance Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"access_token\": \"access-sandbox-00a30504-0eb2-4fb5-8af9-b7eb5c5f23f7\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/accounts/balance/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"accounts",
										"balance",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "768",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 28 Aug 2018 23:03:01 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"accounts\": [\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"balances\": {\n        \"available\": 100,\n        \"current\": 110,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"0000\",\n      \"name\": \"Plaid Checking\",\n      \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n      \"subtype\": \"checking\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"balances\": {\n        \"available\": 200,\n        \"current\": 210,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"1111\",\n      \"name\": \"Plaid Saving\",\n      \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n      \"subtype\": \"savings\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"5NVq637arPcAbDxWd7GZUd3g5pjXPWFZlNNLz\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 1000,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"2222\",\n      \"name\": \"Plaid CD\",\n      \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n      \"subtype\": \"cd\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 410,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": 2000,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"3333\",\n      \"name\": \"Plaid Credit Card\",\n      \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n      \"subtype\": \"credit card\",\n      \"type\": \"credit\"\n    },\n    {\n      \"account_id\": \"Jzbo9AkW8vcleKXgyPJ4cjva1KQw7qid3RRNb\",\n      \"balances\": {\n        \"available\": 43200,\n        \"current\": 43200,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"4444\",\n      \"name\": \"Plaid Money Market\",\n      \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n      \"subtype\": \"money market\",\n      \"type\": \"depository\"\n    }\n  ],\n  \"item\": {\n    \"available_products\": [\n      \"assets\",\n      \"balance\",\n      \"credit_details\"\n    ],\n    \"billed_products\": [\n      \"auth\",\n      \"identity\",\n      \"income\",\n      \"transactions\"\n    ],\n    \"error\": null,\n    \"institution_id\": \"ins_3\",\n    \"item_id\": \"QNWnmvzAKwcx9RwPXqVMSoRBjkroVnhpge7bq\",\n    \"webhook\": \"https://www.genericwebhookurl.com/webhook\"\n  },\n  \"request_id\": \"gs794\"\n}"
						}
					]
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Identity",
			"item": [
				{
					"name": "Retrieve Identity",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/identity/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"identity",
								"get"
							]
						},
						"description": "The `/identity/get` endpoint allows you to retrieve various account holder information on file with the financial institution, including names, emails, phone numbers, and addresses."
					},
					"response": [
						{
							"name": "Retrieve Identity Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"access_token\": \"access-sandbox-00a30504-0eb2-4fb5-8af9-b7eb5c5f23f7\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/identity/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"identity",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "1119",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 28 Aug 2018 23:02:41 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"accounts\": [\n    {\n      \"account_id\": \"wp5rJy31NMfyEJNDvoqXhbwLlRaEGyCrwWWdy\",\n      \"balances\": {\n        \"available\": 100,\n        \"current\": 110,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"0000\",\n      \"name\": \"Plaid Checking\",\n      \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n      \"subtype\": \"checking\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"l418dp7olxiDAaok8E1pi5Q7n9NGkzfZQbbAp\",\n      \"balances\": {\n        \"available\": 200,\n        \"current\": 210,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"1111\",\n      \"name\": \"Plaid Saving\",\n      \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n      \"subtype\": \"savings\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"5NVq637arPcAbDxWd7GZUd3g5pjXPWFZlNNLz\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 1000,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"2222\",\n      \"name\": \"Plaid CD\",\n      \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n      \"subtype\": \"cd\",\n      \"type\": \"depository\"\n    },\n    {\n      \"account_id\": \"kamgkLwoG3iMQPzlvEaZSGnMVR36rLiWnZZRW\",\n      \"balances\": {\n        \"available\": null,\n        \"current\": 410,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": 2000,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"3333\",\n      \"name\": \"Plaid Credit Card\",\n      \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n      \"subtype\": \"credit card\",\n      \"type\": \"credit\"\n    },\n    {\n      \"account_id\": \"Jzbo9AkW8vcleKXgyPJ4cjva1KQw7qid3RRNb\",\n      \"balances\": {\n        \"available\": 43200,\n        \"current\": 43200,\n        \"iso_currency_code\": \"USD\",\n        \"limit\": null,\n        \"unofficial_currency_code\": null\n      },\n      \"mask\": \"4444\",\n      \"name\": \"Plaid Money Market\",\n      \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n      \"subtype\": \"money market\",\n      \"type\": \"depository\"\n    }\n  ],\n  \"identity\": {\n    \"addresses\": [\n      {\n        \"accounts\": [\n          \"Plaid Checking 0000\",\n          \"Plaid Saving 1111\",\n          \"Plaid CD 2222\"\n        ],\n        \"data\": {\n          \"city\": \"Malakoff\",\n          \"state\": \"NY\",\n          \"street\": \"2992 Cameron Road\",\n          \"zip\": \"14236\"\n        },\n        \"primary\": true\n      },\n      {\n        \"accounts\": [\n          \"Plaid Credit Card 3333\"\n        ],\n        \"data\": {\n          \"city\": \"San Matias\",\n          \"state\": \"CA\",\n          \"street\": \"2493 Leisure Lane\",\n          \"zip\": \"93405-2255\"\n        },\n        \"primary\": false\n      }\n    ],\n    \"emails\": [\n      {\n        \"data\": \"accountholder0@example.com\",\n        \"primary\": true,\n        \"type\": \"primary\"\n      },\n      {\n        \"data\": \"accountholder1@example.com\",\n        \"primary\": false,\n        \"type\": \"secondary\"\n      },\n      {\n        \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n        \"primary\": false,\n        \"type\": \"other\"\n      }\n    ],\n    \"names\": [\n      \"Alberta Bobbeth Charleson\"\n    ],\n    \"phone_numbers\": [\n      {\n        \"data\": \"1112223333\",\n        \"primary\": false,\n        \"type\": \"home\"\n      },\n      {\n        \"data\": \"1112224444\",\n        \"primary\": false,\n        \"type\": \"work\"\n      },\n      {\n        \"data\": \"1112225555\",\n        \"primary\": false,\n        \"type\": \"mobile1\"\n      }\n    ]\n  },\n  \"item\": {\n    \"available_products\": [\n      \"assets\",\n      \"balance\",\n      \"credit_details\"\n    ],\n    \"billed_products\": [\n      \"auth\",\n      \"identity\",\n      \"income\",\n      \"transactions\"\n    ],\n    \"error\": null,\n    \"institution_id\": \"ins_3\",\n    \"item_id\": \"QNWnmvzAKwcx9RwPXqVMSoRBjkroVnhpge7bq\",\n    \"webhook\": \"https://www.genericwebhookurl.com/webhook\"\n  },\n  \"request_id\": \"yt4tV\"\n}"
						}
					]
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Income",
			"item": [
				{
					"name": "Retrieve Income",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/income/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"income",
								"get"
							]
						},
						"description": "The `/income/get` endpoint allows you to retrieve information pertaining to a `Item`’s income. In addition to the annual income, detailed information will be provided for each contributing income stream (or job). Details on each of these fields can be found below.  \n<br />\nJust like retrieving `transaction` data, you need to wait several seconds to retrieve `income` data after `Item` creation. A good practice is to retrieve the data when you are notified that it's ready via webhook."
					},
					"response": [
						{
							"name": "Retrieve Income Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"access_token\": \"access-sandbox-00a30504-0eb2-4fb5-8af9-b7eb5c5f23f7\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/income/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"income",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "245",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 28 Aug 2018 23:02:19 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"income\": {\n    \"income_streams\": [\n      {\n        \"confidence\": 0.99,\n        \"days\": 720,\n        \"monthly_income\": 500,\n        \"name\": \"UNITED AIRLINES\"\n      }\n    ],\n    \"last_year_income\": 6000,\n    \"last_year_income_before_tax\": 7285,\n    \"max_number_of_overlapping_income_streams\": 1,\n    \"number_of_income_streams\": 1,\n    \"projected_yearly_income\": 6085,\n    \"projected_yearly_income_before_tax\": 7389\n  },\n  \"request_id\": \"lnaxi\"\n}"
						}
					]
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Assets",
			"item": [
				{
					"name": "Create Asset Report",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"access_tokens\": [\"ENTER_ACCESS_TOKENS_HERE\"],\n   \"days_requested\": 30,\n   \"options\": {\n      \"client_report_id\": \"ENTER_CLIENT_REPORT_ID_HERE\",\n      \"webhook\": \"ENTER_WEBHOOK_URL_HERE\",\n      \"user\": {\n        \"client_user_id\": \"ENTER_USER_ID_HERE\",\n        \"first_name\": \"ENTER_FIRST_NAME_HERE\",\n        \"middle_name\": \"ENTER_MIDDLE_NAME_HERE\",\n        \"last_name\": \"ENTER_LAST_NAME_HERE\",\n        \"ssn\": \"ENTER_SSN_HERE\",\n        \"phone_number\": \"ENTER_PHONE_NUMBER_HERE\",\n        \"email\": \"ENTER_EMAIL_HERE\"\n      }\n   }\n }"
						},
						"url": {
							"raw": "https://{{env_url}}/asset_report/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"asset_report",
								"create"
							]
						},
						"description": "With your desired `access_tokens` in hand, all you need to do to create an Asset Report is to call the `/asset_report/create` endpoint.\n\nWhen creating an Asset Report, the only required fields are your `client_id`, `secret`, an `array of access_tokens` (one for each Item to be included in the Report), and the number of `days_requested` which determines the duration of transaction history to be included.\n\n`options` is optional!"
					},
					"response": [
						{
							"name": "Create Asset Report Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"access_tokens\": [\"access-sandbox-872d26b4-449a-4676-b2d4-1a014835a9ba\"],\n   \"days_requested\": 30,\n   \"options\": {\n      \"client_report_id\": \"example_report_id\",\n      \"webhook\": \"https://www.randomdomain.com/webhook_url\",\n      \"user\": {\n        \"client_user_id\": \"example_user_id\",\n        \"first_name\": \"John\",\n        \"middle_name\": \"Deere\",\n        \"last_name\": \"Doe\",\n        \"ssn\": \"123-45-7890\",\n        \"phone_number\": \"3214560987\",\n        \"email\": \"john@doe.com\"\n      }\n   }\n }"
								},
								"url": {
									"raw": "https://{{env_url}}/asset_report/create",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"asset_report",
										"create"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "155",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Wed, 29 Aug 2018 22:22:56 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"asset_report_id\": \"67de6f27-dc59-4663-a5ec-f2e3c271d208\",\n  \"asset_report_token\": \"assets-sandbox-d4002c0d-458a-41d0-9208-ac23700940f1\",\n  \"request_id\": \"xHPFT\"\n}"
						}
					]
				},
				{
					"name": "Retrieve an Asset Report (JSON)",
					"event": [
						{
							"listen": "prerequest",
							"script": {
								"id": "b7ab1d5a-8269-42b0-a879-75da5b992e6f",
								"type": "text/javascript",
								"exec": [
									""
								]
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"asset_report_token\": \"ENTER_ASSET_REPORT_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/asset_report/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"asset_report",
								"get"
							]
						},
						"description": "You can retrieve your Asset Report in multiple formats (PDF and JSON), determined by the endpoint you call.\n\nJSON: `/asset_report/get`  \nPDF: `/asset_report/pdf/get`  \n<br />\nJust like retrieving `transaction` data, you need to wait several seconds to retrieve an assets report after you create one. A good practice is to retrieve the data when you are notified that it's ready via webhook."
					},
					"response": [
						{
							"name": "Retrieve an Asset Report (JSON) Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"asset_report_token\": \"assets-sandbox-d4002c0d-458a-41d0-9208-ac23700940f1\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/asset_report/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"asset_report",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Wed, 29 Aug 2018 22:24:12 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked",
									"name": "Transfer-Encoding",
									"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"report\": {\n    \"asset_report_id\": \"67de6f27-dc59-4663-a5ec-f2e3c271d208\",\n    \"client_report_id\": \"example_report_id\",\n    \"date_generated\": \"2018-08-29T22:23:04Z\",\n    \"days_requested\": 30,\n    \"items\": [\n      {\n        \"accounts\": [\n          {\n            \"account_id\": \"3l6EVAdoxRhbzLQxyNnEHJj4RvWqyRiqv3QR1\",\n            \"balances\": {\n              \"available\": 43200,\n              \"current\": 43200,\n              \"iso_currency_code\": \"USD\",\n              \"unofficial_currency_code\": null\n            },\n            \"days_available\": 7,\n            \"historical_balances\": [\n              {\n                \"current\": 43200,\n                \"date\": \"2018-08-28\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 43200,\n                \"date\": \"2018-08-27\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 43200,\n                \"date\": \"2018-08-26\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 43200,\n                \"date\": \"2018-08-25\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 43200,\n                \"date\": \"2018-08-24\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 43200,\n                \"date\": \"2018-08-23\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 49050,\n                \"date\": \"2018-08-22\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"mask\": \"4444\",\n            \"name\": \"Plaid Money Market\",\n            \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n            \"owners\": [\n              {\n                \"addresses\": [\n                  {\n                    \"data\": {\n                      \"city\": \"Malakoff\",\n                      \"state\": \"NY\",\n                      \"street\": \"2992 Cameron Road\",\n                      \"zip\": \"14236\"\n                    },\n                    \"primary\": true\n                  },\n                  {\n                    \"data\": {\n                      \"city\": \"San Matias\",\n                      \"state\": \"CA\",\n                      \"street\": \"2493 Leisure Lane\",\n                      \"zip\": \"93405-2255\"\n                    },\n                    \"primary\": false\n                  }\n                ],\n                \"emails\": [\n                  {\n                    \"data\": \"accountholder0@example.com\",\n                    \"primary\": true,\n                    \"type\": \"primary\"\n                  },\n                  {\n                    \"data\": \"accountholder1@example.com\",\n                    \"primary\": false,\n                    \"type\": \"secondary\"\n                  },\n                  {\n                    \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                    \"primary\": false,\n                    \"type\": \"other\"\n                  }\n                ],\n                \"names\": [\n                  \"Alberta Bobbeth Charleson\"\n                ],\n                \"phone_numbers\": [\n                  {\n                    \"data\": \"1112223333\",\n                    \"primary\": false,\n                    \"type\": \"home\"\n                  },\n                  {\n                    \"data\": \"1112224444\",\n                    \"primary\": false,\n                    \"type\": \"work\"\n                  },\n                  {\n                    \"data\": \"1112225555\",\n                    \"primary\": false,\n                    \"type\": \"mobile1\"\n                  }\n                ]\n              }\n            ],\n            \"subtype\": \"money market\",\n            \"transactions\": [\n              {\n                \"account_id\": \"3l6EVAdoxRhbzLQxyNnEHJj4RvWqyRiqv3QR1\",\n                \"amount\": 5850,\n                \"date\": \"2018-08-23\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"ACH Electronic CreditGUSTO PAY 123456\",\n                \"pending\": false,\n                \"transaction_id\": \"DZNkKDV6GeHApZQN8E7dhLGjl7z8eXcveG8lB\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"type\": \"depository\"\n          },\n          {\n            \"account_id\": \"BeaBNb9AWjT8vp7alL1ZHbdJQezmWQCwRnXjG\",\n            \"balances\": {\n              \"available\": null,\n              \"current\": 410,\n              \"iso_currency_code\": \"USD\",\n              \"unofficial_currency_code\": null\n            },\n            \"days_available\": 27,\n            \"historical_balances\": [\n              {\n                \"current\": 410,\n                \"date\": \"2018-08-28\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 410,\n                \"date\": \"2018-08-27\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 410,\n                \"date\": \"2018-08-26\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 410,\n                \"date\": \"2018-08-25\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 410,\n                \"date\": \"2018-08-24\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 410,\n                \"date\": \"2018-08-23\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 410,\n                \"date\": \"2018-08-22\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-21\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-20\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-19\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-18\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-17\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-16\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-15\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-14\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-13\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-12\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-11\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-10\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 331.5,\n                \"date\": \"2018-08-09\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -168.5,\n                \"date\": \"2018-08-08\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -168.5,\n                \"date\": \"2018-08-07\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -168.5,\n                \"date\": \"2018-08-06\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -168.5,\n                \"date\": \"2018-08-05\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -168.5,\n                \"date\": \"2018-08-04\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -668.5,\n                \"date\": \"2018-08-03\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -3747,\n                \"date\": \"2018-08-02\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"mask\": \"3333\",\n            \"name\": \"Plaid Credit Card\",\n            \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n            \"owners\": [\n              {\n                \"addresses\": [\n                  {\n                    \"data\": {\n                      \"city\": \"Malakoff\",\n                      \"state\": \"NY\",\n                      \"street\": \"2992 Cameron Road\",\n                      \"zip\": \"14236\"\n                    },\n                    \"primary\": true\n                  },\n                  {\n                    \"data\": {\n                      \"city\": \"San Matias\",\n                      \"state\": \"CA\",\n                      \"street\": \"2493 Leisure Lane\",\n                      \"zip\": \"93405-2255\"\n                    },\n                    \"primary\": false\n                  }\n                ],\n                \"emails\": [\n                  {\n                    \"data\": \"accountholder0@example.com\",\n                    \"primary\": true,\n                    \"type\": \"primary\"\n                  },\n                  {\n                    \"data\": \"accountholder1@example.com\",\n                    \"primary\": false,\n                    \"type\": \"secondary\"\n                  },\n                  {\n                    \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                    \"primary\": false,\n                    \"type\": \"other\"\n                  }\n                ],\n                \"names\": [\n                  \"Alberta Bobbeth Charleson\"\n                ],\n                \"phone_numbers\": [\n                  {\n                    \"data\": \"1112223333\",\n                    \"primary\": false,\n                    \"type\": \"home\"\n                  },\n                  {\n                    \"data\": \"1112224444\",\n                    \"primary\": false,\n                    \"type\": \"work\"\n                  },\n                  {\n                    \"data\": \"1112225555\",\n                    \"primary\": false,\n                    \"type\": \"mobile1\"\n                  }\n                ]\n              }\n            ],\n            \"subtype\": \"credit card\",\n            \"transactions\": [\n              {\n                \"account_id\": \"BeaBNb9AWjT8vp7alL1ZHbdJQezmWQCwRnXjG\",\n                \"amount\": 500,\n                \"date\": \"2018-08-03\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"Madison Bicycle Shop\",\n                \"pending\": false,\n                \"transaction_id\": \"RmEpJDo6AKFZm3MJbQeVC4Rw7r3MjbCRj5QxD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"BeaBNb9AWjT8vp7alL1ZHbdJQezmWQCwRnXjG\",\n                \"amount\": 500,\n                \"date\": \"2018-08-03\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"KFC\",\n                \"pending\": false,\n                \"transaction_id\": \"6rVGJEd54qH1wLK5jBRJUwgye4X37kTgJnRa4\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"BeaBNb9AWjT8vp7alL1ZHbdJQezmWQCwRnXjG\",\n                \"amount\": 2078.5,\n                \"date\": \"2018-08-03\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"AUTOMATIC PAYMENT - THANK\",\n                \"pending\": false,\n                \"transaction_id\": \"XXmApWB6RdT36N1BXbPQhvZqwoM5gLtdg8RM3\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"BeaBNb9AWjT8vp7alL1ZHbdJQezmWQCwRnXjG\",\n                \"amount\": 500,\n                \"date\": \"2018-08-04\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"Tectra Inc\",\n                \"pending\": false,\n                \"transaction_id\": \"vG1obnAyJNc3oN8jzErlhw7oWLjJMdTWxVDG8\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"BeaBNb9AWjT8vp7alL1ZHbdJQezmWQCwRnXjG\",\n                \"amount\": 500,\n                \"date\": \"2018-08-09\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"United Airlines\",\n                \"pending\": false,\n                \"transaction_id\": \"93lmWEKDjzuZ3VBljNG8CpnZkKRQyqFR8Mm3P\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"BeaBNb9AWjT8vp7alL1ZHbdJQezmWQCwRnXjG\",\n                \"amount\": 78.5,\n                \"date\": \"2018-08-22\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"Touchstone Climbing\",\n                \"pending\": false,\n                \"transaction_id\": \"ymoE9n5yR7FrLPovx9D6IV7MKLv8zouydpQZV\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"type\": \"credit\"\n          },\n          {\n            \"account_id\": \"K8M7wDZ6Woswb34MPp7ks6o8XBRLnXcV7bKNp\",\n            \"balances\": {\n              \"available\": null,\n              \"current\": 1000,\n              \"iso_currency_code\": \"USD\",\n              \"unofficial_currency_code\": null\n            },\n            \"days_available\": 7,\n            \"historical_balances\": [\n              {\n                \"current\": 1000,\n                \"date\": \"2018-08-28\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1000,\n                \"date\": \"2018-08-27\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1000,\n                \"date\": \"2018-08-26\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1000,\n                \"date\": \"2018-08-25\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1000,\n                \"date\": \"2018-08-24\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1000,\n                \"date\": \"2018-08-23\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2000,\n                \"date\": \"2018-08-22\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"mask\": \"2222\",\n            \"name\": \"Plaid CD\",\n            \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n            \"owners\": [\n              {\n                \"addresses\": [\n                  {\n                    \"data\": {\n                      \"city\": \"Malakoff\",\n                      \"state\": \"NY\",\n                      \"street\": \"2992 Cameron Road\",\n                      \"zip\": \"14236\"\n                    },\n                    \"primary\": true\n                  },\n                  {\n                    \"data\": {\n                      \"city\": \"San Matias\",\n                      \"state\": \"CA\",\n                      \"street\": \"2493 Leisure Lane\",\n                      \"zip\": \"93405-2255\"\n                    },\n                    \"primary\": false\n                  }\n                ],\n                \"emails\": [\n                  {\n                    \"data\": \"accountholder0@example.com\",\n                    \"primary\": true,\n                    \"type\": \"primary\"\n                  },\n                  {\n                    \"data\": \"accountholder1@example.com\",\n                    \"primary\": false,\n                    \"type\": \"secondary\"\n                  },\n                  {\n                    \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                    \"primary\": false,\n                    \"type\": \"other\"\n                  }\n                ],\n                \"names\": [\n                  \"Alberta Bobbeth Charleson\"\n                ],\n                \"phone_numbers\": [\n                  {\n                    \"data\": \"1112223333\",\n                    \"primary\": false,\n                    \"type\": \"home\"\n                  },\n                  {\n                    \"data\": \"1112224444\",\n                    \"primary\": false,\n                    \"type\": \"work\"\n                  },\n                  {\n                    \"data\": \"1112225555\",\n                    \"primary\": false,\n                    \"type\": \"mobile1\"\n                  }\n                ]\n              }\n            ],\n            \"subtype\": \"cd\",\n            \"transactions\": [\n              {\n                \"account_id\": \"K8M7wDZ6Woswb34MPp7ks6o8XBRLnXcV7bKNp\",\n                \"amount\": 1000,\n                \"date\": \"2018-08-23\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"CD DEPOSIT .INITIAL.\",\n                \"pending\": false,\n                \"transaction_id\": \"gjzxwWkd6gT8zvJ9pEdqHGn5mXjDoesgDdXGr\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"type\": \"depository\"\n          },\n          {\n            \"account_id\": \"r8eMXn91oxsJbrwalGX9UQxeBo4pDBTlWgpMR\",\n            \"balances\": {\n              \"available\": 100,\n              \"current\": 110,\n              \"iso_currency_code\": \"USD\",\n              \"unofficial_currency_code\": null\n            },\n            \"days_available\": 23,\n            \"historical_balances\": [\n              {\n                \"current\": 110,\n                \"date\": \"2018-08-28\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 110,\n                \"date\": \"2018-08-27\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 110,\n                \"date\": \"2018-08-26\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 110,\n                \"date\": \"2018-08-25\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 110,\n                \"date\": \"2018-08-24\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 115.4,\n                \"date\": \"2018-08-23\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 115.4,\n                \"date\": \"2018-08-22\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -384.6,\n                \"date\": \"2018-08-21\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -368.27,\n                \"date\": \"2018-08-20\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-19\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-18\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-17\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-16\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-15\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-14\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-13\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-12\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-11\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-10\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-09\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-08\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -278.87,\n                \"date\": \"2018-08-07\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -272.54,\n                \"date\": \"2018-08-06\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"mask\": \"0000\",\n            \"name\": \"Plaid Checking\",\n            \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n            \"owners\": [\n              {\n                \"addresses\": [\n                  {\n                    \"data\": {\n                      \"city\": \"Malakoff\",\n                      \"state\": \"NY\",\n                      \"street\": \"2992 Cameron Road\",\n                      \"zip\": \"14236\"\n                    },\n                    \"primary\": true\n                  },\n                  {\n                    \"data\": {\n                      \"city\": \"San Matias\",\n                      \"state\": \"CA\",\n                      \"street\": \"2493 Leisure Lane\",\n                      \"zip\": \"93405-2255\"\n                    },\n                    \"primary\": false\n                  }\n                ],\n                \"emails\": [\n                  {\n                    \"data\": \"accountholder0@example.com\",\n                    \"primary\": true,\n                    \"type\": \"primary\"\n                  },\n                  {\n                    \"data\": \"accountholder1@example.com\",\n                    \"primary\": false,\n                    \"type\": \"secondary\"\n                  },\n                  {\n                    \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                    \"primary\": false,\n                    \"type\": \"other\"\n                  }\n                ],\n                \"names\": [\n                  \"Alberta Bobbeth Charleson\"\n                ],\n                \"phone_numbers\": [\n                  {\n                    \"data\": \"1112223333\",\n                    \"primary\": false,\n                    \"type\": \"home\"\n                  },\n                  {\n                    \"data\": \"1112224444\",\n                    \"primary\": false,\n                    \"type\": \"work\"\n                  },\n                  {\n                    \"data\": \"1112225555\",\n                    \"primary\": false,\n                    \"type\": \"mobile1\"\n                  }\n                ]\n              }\n            ],\n            \"subtype\": \"checking\",\n            \"transactions\": [\n              {\n                \"account_id\": \"r8eMXn91oxsJbrwalGX9UQxeBo4pDBTlWgpMR\",\n                \"amount\": 6.33,\n                \"date\": \"2018-08-07\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"Uber 072515 SF**POOL**\",\n                \"pending\": false,\n                \"transaction_id\": \"nLN7mnwe9rhJjgwk3GQ1UP61pnk4j9c6kgBXp\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"r8eMXn91oxsJbrwalGX9UQxeBo4pDBTlWgpMR\",\n                \"amount\": 89.4,\n                \"date\": \"2018-08-20\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"SparkFun\",\n                \"pending\": false,\n                \"transaction_id\": \"GL74bDoA6MhWGZ37oK86H3A4rpRxaXf19R4Lj\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"r8eMXn91oxsJbrwalGX9UQxeBo4pDBTlWgpMR\",\n                \"amount\": 12,\n                \"date\": \"2018-08-21\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"McDonalds #3322\",\n                \"pending\": false,\n                \"transaction_id\": \"W6bWwDzVAxhMnRwLrkbzhKG81qm6AXHlMqG5x\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"r8eMXn91oxsJbrwalGX9UQxeBo4pDBTlWgpMR\",\n                \"amount\": 4.33,\n                \"date\": \"2018-08-21\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"Starbucks\",\n                \"pending\": false,\n                \"transaction_id\": \"A7dz5Ep6WPUPv6jdqKmwFQWDyp9qwgc1w3vk3\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"r8eMXn91oxsJbrwalGX9UQxeBo4pDBTlWgpMR\",\n                \"amount\": -500,\n                \"date\": \"2018-08-22\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"United Airlines **** REFUND ****\",\n                \"pending\": false,\n                \"transaction_id\": \"EMPdRDvbWQC4EyrPzkLgCaWoqz76BjhXQ3LM6\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"r8eMXn91oxsJbrwalGX9UQxeBo4pDBTlWgpMR\",\n                \"amount\": 5.4,\n                \"date\": \"2018-08-24\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"Uber 063015 SF**POOL**\",\n                \"pending\": false,\n                \"transaction_id\": \"8B5b4EqAPrhPB4zXmwMVFbnzvoZQJXcwaeyRg\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"type\": \"depository\"\n          },\n          {\n            \"account_id\": \"zygWBX9V1eSljNKZRMgDs9q5DbvLyDCoZWMm5\",\n            \"balances\": {\n              \"available\": 200,\n              \"current\": 210,\n              \"iso_currency_code\": \"USD\",\n              \"unofficial_currency_code\": null\n            },\n            \"days_available\": 11,\n            \"historical_balances\": [\n              {\n                \"current\": 210,\n                \"date\": \"2018-08-28\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 210,\n                \"date\": \"2018-08-27\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 210,\n                \"date\": \"2018-08-26\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 210,\n                \"date\": \"2018-08-25\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 210,\n                \"date\": \"2018-08-24\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 235,\n                \"date\": \"2018-08-23\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 235,\n                \"date\": \"2018-08-22\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 235,\n                \"date\": \"2018-08-21\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 235,\n                \"date\": \"2018-08-20\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 235,\n                \"date\": \"2018-08-19\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 230.78,\n                \"date\": \"2018-08-18\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"mask\": \"1111\",\n            \"name\": \"Plaid Saving\",\n            \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n            \"owners\": [\n              {\n                \"addresses\": [\n                  {\n                    \"data\": {\n                      \"city\": \"Malakoff\",\n                      \"state\": \"NY\",\n                      \"street\": \"2992 Cameron Road\",\n                      \"zip\": \"14236\"\n                    },\n                    \"primary\": true\n                  },\n                  {\n                    \"data\": {\n                      \"city\": \"San Matias\",\n                      \"state\": \"CA\",\n                      \"street\": \"2493 Leisure Lane\",\n                      \"zip\": \"93405-2255\"\n                    },\n                    \"primary\": false\n                  }\n                ],\n                \"emails\": [\n                  {\n                    \"data\": \"accountholder0@example.com\",\n                    \"primary\": true,\n                    \"type\": \"primary\"\n                  },\n                  {\n                    \"data\": \"accountholder1@example.com\",\n                    \"primary\": false,\n                    \"type\": \"secondary\"\n                  },\n                  {\n                    \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                    \"primary\": false,\n                    \"type\": \"other\"\n                  }\n                ],\n                \"names\": [\n                  \"Alberta Bobbeth Charleson\"\n                ],\n                \"phone_numbers\": [\n                  {\n                    \"data\": \"1112223333\",\n                    \"primary\": false,\n                    \"type\": \"home\"\n                  },\n                  {\n                    \"data\": \"1112224444\",\n                    \"primary\": false,\n                    \"type\": \"work\"\n                  },\n                  {\n                    \"data\": \"1112225555\",\n                    \"primary\": false,\n                    \"type\": \"mobile1\"\n                  }\n                ]\n              }\n            ],\n            \"subtype\": \"savings\",\n            \"transactions\": [\n              {\n                \"account_id\": \"zygWBX9V1eSljNKZRMgDs9q5DbvLyDCoZWMm5\",\n                \"amount\": -4.22,\n                \"date\": \"2018-08-19\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"INTRST PYMNT\",\n                \"pending\": false,\n                \"transaction_id\": \"m14jWnb7wKCjndgzQE4LHGoLWPz4D8sLj85lV\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"zygWBX9V1eSljNKZRMgDs9q5DbvLyDCoZWMm5\",\n                \"amount\": 25,\n                \"date\": \"2018-08-24\",\n                \"iso_currency_code\": \"USD\",\n                \"original_description\": \"CREDIT CARD 3333 PAYMENT *//\",\n                \"pending\": false,\n                \"transaction_id\": \"bd5KeWgroMS89nDPxGroHl5RzwdyZWCVLrwJR\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"type\": \"depository\"\n          }\n        ],\n        \"date_last_updated\": \"2018-08-29T22:23:03Z\",\n        \"institution_id\": \"ins_3\",\n        \"institution_name\": \"Chase\",\n        \"item_id\": \"axwqJb9KGZIDP17LyKoNcdq5EKo8BNC7En8wK\"\n      }\n    ],\n    \"user\": {\n      \"client_user_id\": \"example_user_id\",\n      \"email\": \"john@doe.com\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"middle_name\": \"Deere\",\n      \"phone_number\": \"3214560987\",\n      \"ssn\": \"123-45-7890\"\n    }\n  },\n  \"request_id\": \"vz6rS\",\n  \"warnings\": []\n}"
						},
						{
							"name": "Retrieve an Asset Report (JSON) with Insights",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"asset_report_token\": \"assets-development-d9d729ca-23e1-45b8-a38a-62dd8f750198\",\n   \"include_insights\": true\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/asset_report/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"asset_report",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 19 Feb 2019 21:50:43 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked",
									"name": "Transfer-Encoding",
									"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"report\": {\n    \"asset_report_id\": \"99c611dc-c54f-4b0e-aa48-fa3690ff654e\",\n    \"client_report_id\": null,\n    \"date_generated\": \"2019-02-19T21:49:09Z\",\n    \"days_requested\": 30,\n    \"items\": [\n      {\n        \"accounts\": [\n          {\n            \"account_id\": \"dvvBb835nzUDobD9kPkxF0d7b4n9beIbRwRvE\",\n            \"balances\": {\n              \"available\": 502,\n              \"current\": 502,\n              \"iso_currency_code\": \"USD\",\n              \"unofficial_currency_code\": null\n            },\n            \"days_available\": 30,\n            \"historical_balances\": [\n              {\n                \"current\": 502,\n                \"date\": \"2019-02-18\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-02-17\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-02-16\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-02-15\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-14\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-13\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-12\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-11\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-10\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-09\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-08\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-07\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-06\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-05\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-04\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-03\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-02\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 2,\n                \"date\": \"2019-02-01\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1002,\n                \"date\": \"2019-01-31\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-30\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-29\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-28\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-27\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-26\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-25\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-24\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-23\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-22\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-21\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502,\n                \"date\": \"2019-01-20\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"mask\": \"8850\",\n            \"name\": \"TOTAL CHECKING\",\n            \"official_name\": null,\n            \"owners\": [\n              {\n                \"addresses\": [\n                  {\n                    \"data\": {\n                      \"city\": \"LOMITA\",\n                      \"state\": \"CA\",\n                      \"street\": \"25316 EBONY LN STE 7\",\n                      \"zip\": \"90717-1926\"\n                    },\n                    \"primary\": true\n                  }\n                ],\n                \"emails\": [\n                  {\n                    \"data\": \"edwinychu@gmail.com\",\n                    \"primary\": true,\n                    \"type\": \"primary\"\n                  }\n                ],\n                \"names\": [\n                  \"EDWIN CHU\"\n                ],\n                \"phone_numbers\": [\n                  {\n                    \"data\": \"3109944285\",\n                    \"primary\": true,\n                    \"type\": \"home\"\n                  }\n                ]\n              }\n            ],\n            \"subtype\": \"checking\",\n            \"transactions\": [\n              {\n                \"account_id\": \"dvvBb835nzUDobD9kPkxF0d7b4n9beIbRwRvE\",\n                \"account_owner\": null,\n                \"amount\": -500,\n                \"category\": [\n                  \"Transfer\",\n                  \"Payroll\"\n                ],\n                \"category_id\": \"21009000\",\n                \"date\": \"2019-01-31\",\n                \"date_transacted\": null,\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"GUSTO PAY 030955 PPD ID: 9138864001\",\n                \"original_description\": \"GUSTO            PAY 030955                 PPD ID: 9138864001\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"4OO0MAwVDkTv8dvgM7Myc7Ln9OOVg4HkBB0Vn\",\n                \"transaction_type\": \"special\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"dvvBb835nzUDobD9kPkxF0d7b4n9beIbRwRvE\",\n                \"account_owner\": null,\n                \"amount\": 1000,\n                \"category\": [\n                  \"Payment\",\n                  \"Credit Card\"\n                ],\n                \"category_id\": \"16001000\",\n                \"date\": \"2019-02-01\",\n                \"date_transacted\": null,\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"CITI CARD ONLINE PAYMENT 112872370117032 WEB ID: CITICTP\",\n                \"original_description\": \"CITI CARD ONLINE PAYMENT    112872370117032 WEB ID: CITICTP\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"rDD6mnE13YHnrenz5o5VsLXwEMMdjBUBppJQr\",\n                \"transaction_type\": \"special\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"dvvBb835nzUDobD9kPkxF0d7b4n9beIbRwRvE\",\n                \"account_owner\": null,\n                \"amount\": -500,\n                \"category\": [\n                  \"Transfer\",\n                  \"Payroll\"\n                ],\n                \"category_id\": \"21009000\",\n                \"date\": \"2019-02-15\",\n                \"date_transacted\": null,\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"GUSTO PAY 101649 PPD ID: 9138864001\",\n                \"original_description\": \"GUSTO            PAY 101649                 PPD ID: 9138864001\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": \"jxx817M5wQHpLapKw5woSk36MjjBwDsRrrVpe\",\n                \"transaction_id\": \"M005LXxE8qIBkZBoKVK7tbx7v0mzQYtMbp0m6\",\n                \"transaction_type\": \"special\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"type\": \"depository\"\n          },\n          {\n            \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n            \"balances\": {\n              \"available\": 18781.59,\n              \"current\": 584.67,\n              \"iso_currency_code\": \"USD\",\n              \"unofficial_currency_code\": null\n            },\n            \"days_available\": 30,\n            \"historical_balances\": [\n              {\n                \"current\": 584.67,\n                \"date\": \"2019-02-18\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 535.66,\n                \"date\": \"2019-02-17\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 520.88,\n                \"date\": \"2019-02-16\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 520.88,\n                \"date\": \"2019-02-15\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 502.88,\n                \"date\": \"2019-02-14\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 442.95,\n                \"date\": \"2019-02-13\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 442.95,\n                \"date\": \"2019-02-12\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 442.95,\n                \"date\": \"2019-02-11\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 376.68,\n                \"date\": \"2019-02-10\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 349.07,\n                \"date\": \"2019-02-09\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 349.07,\n                \"date\": \"2019-02-08\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 137.86,\n                \"date\": \"2019-02-07\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 101.33,\n                \"date\": \"2019-02-06\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 12.9,\n                \"date\": \"2019-02-05\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -26.19,\n                \"date\": \"2019-02-04\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": -75.68,\n                \"date\": \"2019-02-03\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1804.67,\n                \"date\": \"2019-02-02\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1804.67,\n                \"date\": \"2019-02-01\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1798.67,\n                \"date\": \"2019-01-31\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1759.26,\n                \"date\": \"2019-01-30\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1743.54,\n                \"date\": \"2019-01-29\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1743.54,\n                \"date\": \"2019-01-28\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1600.64,\n                \"date\": \"2019-01-27\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1527.73,\n                \"date\": \"2019-01-26\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1527.73,\n                \"date\": \"2019-01-25\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1386.38,\n                \"date\": \"2019-01-24\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1386.38,\n                \"date\": \"2019-01-23\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1334.82,\n                \"date\": \"2019-01-22\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1244.27,\n                \"date\": \"2019-01-21\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"current\": 1171.26,\n                \"date\": \"2019-01-20\",\n                \"iso_currency_code\": \"USD\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"mask\": \"8856\",\n            \"name\": \"CREDIT CARD\",\n            \"official_name\": \"Chase Freedom Unlimited®\",\n            \"owners\": [\n              {\n                \"addresses\": [\n                  {\n                    \"data\": {\n                      \"city\": \"LOMITA\",\n                      \"state\": \"CA\",\n                      \"street\": \"25316 EBONY LN STE 7\",\n                      \"zip\": \"90717-1926\"\n                    },\n                    \"primary\": true\n                  }\n                ],\n                \"emails\": [\n                  {\n                    \"data\": \"edwinychu@gmail.com\",\n                    \"primary\": true,\n                    \"type\": \"primary\"\n                  }\n                ],\n                \"names\": [\n                  \"EDWIN CHU\"\n                ],\n                \"phone_numbers\": [\n                  {\n                    \"data\": \"3109944285\",\n                    \"primary\": true,\n                    \"type\": \"home\"\n                  }\n                ]\n              }\n            ],\n            \"subtype\": \"credit card\",\n            \"transactions\": [\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 6.57,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-01-21\",\n                \"date_transacted\": \"2019-01-19\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"LUCKY #707 DALY CIT\",\n                \"original_description\": \"LUCKY #707 DALY CIT\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"P44xP6XomyUn0onVDzDXsjwLVddarAHm88Mz8\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 16.53,\n                \"category\": [\n                  \"Shops\"\n                ],\n                \"category_id\": \"19000000\",\n                \"date\": \"2019-01-21\",\n                \"date_transacted\": \"2019-01-20\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"AMZN Mktp US*MB77P55N1\",\n                \"original_description\": \"AMZN Mktp US*MB77P55N1\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"DPPEM9mo87COLzO6momxSE9eKPPXLRuZEEokK\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 49.91,\n                \"category\": [\n                  \"Service\",\n                  \"Financial\",\n                  \"Loans and Mortgages\"\n                ],\n                \"category_id\": \"18020004\",\n                \"date\": \"2019-01-21\",\n                \"date_transacted\": \"2019-01-20\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"IPHONE CITIZ*PMT 7 OF 24\",\n                \"original_description\": \"IPHONE CITIZ*PMT 7 OF 24\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"6ooEM0LVPvHj5ZjBpdp0udb4v88xVrHabb67R\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 21.56,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-01-22\",\n                \"date_transacted\": \"2019-01-20\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"LUCKY #707 DALY CIT\",\n                \"original_description\": \"LUCKY #707 DALY CIT\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"1ooAMygEw3HKabK3vgvyigxeEddyjXUmJJ1k9\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 15.05,\n                \"category\": [\n                  \"Food and Drink\",\n                  \"Restaurants\"\n                ],\n                \"category_id\": \"13005000\",\n                \"date\": \"2019-01-22\",\n                \"date_transacted\": \"2019-01-20\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"THE CREPE HOUSE 3\",\n                \"original_description\": \"THE CREPE HOUSE 3\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"Lvv16pxo8PUEKZEvQeQnc3J5PYYLoBs033YzO\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 32,\n                \"category\": [\n                  \"Food and Drink\",\n                  \"Restaurants\"\n                ],\n                \"category_id\": \"13005000\",\n                \"date\": \"2019-01-22\",\n                \"date_transacted\": \"2019-01-20\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"THE GOLDEN GATE GRILL\",\n                \"original_description\": \"THE GOLDEN GATE GRILL\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"w33746gyvQcnv1n73P3zsBgPyMMJqotL88ZAb\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 7.28,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-01-22\",\n                \"date_transacted\": \"2019-01-21\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *\",\n                \"original_description\": \"UBER   *\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"dvvBb835nzUDobD9kPkauVa3P44gpbFbvv9ZY\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 8.43,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-01-22\",\n                \"date_transacted\": \"2019-01-21\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *\",\n                \"original_description\": \"UBER   *\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"mZZPBO9dDQCvyBvZLEL0cxEkrppnRMCM66dpX\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 6.23,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-01-22\",\n                \"date_transacted\": \"2019-01-21\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *\",\n                \"original_description\": \"UBER   *\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"zkk7J1mArQU3bn3mJ7JBSKXND88k3OcO884Eg\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 58.56,\n                \"category\": null,\n                \"category_id\": null,\n                \"date\": \"2019-01-23\",\n                \"date_transacted\": \"2019-01-22\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"RICKHOUSE\",\n                \"original_description\": \"RICKHOUSE\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"YLL30K6QZaH35n36jPjvSdDBV11ZkAHQ55rmB\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": -7,\n                \"category\": [\n                  \"Recreation\",\n                  \"Gyms and Fitness Centers\"\n                ],\n                \"category_id\": \"17018000\",\n                \"date\": \"2019-01-23\",\n                \"date_transacted\": \"2019-01-23\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"24 Hour Fitness\",\n                \"original_description\": \"24 Hour Fitness USA, I\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"e00XdZ3z9QIxXmx7AaADc1qJvDDgVdHdzzj6V\",\n                \"transaction_type\": \"place\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 17.96,\n                \"category\": [\n                  \"Shops\",\n                  \"Food and Beverage Store\"\n                ],\n                \"category_id\": \"19025000\",\n                \"date\": \"2019-01-25\",\n                \"date_transacted\": \"2019-01-24\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"JOE \\u0026 THE JUICE\",\n                \"original_description\": \"SQ *JOE \\u0026 THE JUICE\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": \"Square\",\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"NjjqDdMo8BHJAzJaoboQu9Vmyqq4ArsR99KAX\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 11.42,\n                \"category\": null,\n                \"category_id\": null,\n                \"date\": \"2019-01-25\",\n                \"date_transacted\": \"2019-01-24\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"SOMA EATS\",\n                \"original_description\": \"SQ *SOMA EATS\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": \"Square\",\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"p66PKRaLqnH6AX6K9z9EFwLd6MMx9JcJggOK0\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 89,\n                \"category\": null,\n                \"category_id\": null,\n                \"date\": \"2019-01-25\",\n                \"date_transacted\": \"2019-01-24\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"2CHECKOUT*DATALISTS\",\n                \"original_description\": \"2CHECKOUT*DATALISTS\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"ndda3M9wmQUNr9N8x3xbCYaMqeevzAUAgg8EK\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 22.97,\n                \"category\": [\n                  \"Shops\"\n                ],\n                \"category_id\": \"19000000\",\n                \"date\": \"2019-01-25\",\n                \"date_transacted\": \"2019-01-24\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"AMZN Mktp US*MB36T86V1\",\n                \"original_description\": \"AMZN Mktp US*MB36T86V1\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"QaaOqLxobKhRjzRNXDXBtk6AVDDmj4sEvvk7Y\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 34.91,\n                \"category\": [\n                  \"Food and Drink\",\n                  \"Bar\"\n                ],\n                \"category_id\": \"13001000\",\n                \"date\": \"2019-01-27\",\n                \"date_transacted\": \"2019-01-24\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"PHOENIX IRISH BAR\",\n                \"original_description\": \"PHOENIX IRISH BAR\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"X66Rvyw5Q4HkZYkBmrm8cgLme99V3aU4557JJ\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 20,\n                \"category\": [\n                  \"Travel\",\n                  \"Public Transportation Services\"\n                ],\n                \"category_id\": \"22014000\",\n                \"date\": \"2019-01-27\",\n                \"date_transacted\": \"2019-01-25\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"BART-CLIPPER CIVIC CTR\",\n                \"original_description\": \"BART-CLIPPER CIVIC CTR\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"RxxmBDOo8kH8rR8kw0wMi0LXVbbkvqfy008Lv\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 18,\n                \"category\": [\n                  \"Service\",\n                  \"Personal Care\"\n                ],\n                \"category_id\": \"18045000\",\n                \"date\": \"2019-01-27\",\n                \"date_transacted\": \"2019-01-27\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"EXPRESSION HAIR DESIGN\",\n                \"original_description\": \"EXPRESSION HAIR DESIGN\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"Vmm0kBr5ojT5JO50bybXiowm811DejfrmmQ0E\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 43.8,\n                \"category\": [\n                  \"Food and Drink\",\n                  \"Restaurants\"\n                ],\n                \"category_id\": \"13005000\",\n                \"date\": \"2019-01-28\",\n                \"date_transacted\": \"2019-01-26\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"Cadillac Bar and Grill\",\n                \"original_description\": \"Cadillac Bar and Grill\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"EqqBMVkon9UYDjYmzqzNuJeOqZZ8LnFpMMw91\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 48.7,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-01-28\",\n                \"date_transacted\": \"2019-01-26\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"LUCKY #707 DALY CIT\",\n                \"original_description\": \"LUCKY #707 DALY CIT\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"M005LXxE8qIBkZBoKVK5cb69YjjXEpfMbbQJg\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 10.8,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-01-28\",\n                \"date_transacted\": \"2019-01-27\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *\",\n                \"original_description\": \"UBER   *\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"Orrb1wPo83FAvOA1VKV5iqdQj00aegs8qqMna\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 5.58,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-01-28\",\n                \"date_transacted\": \"2019-01-27\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *\",\n                \"original_description\": \"UBER   *\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"9oodM4PO3rHagBaJ1b1Rcbe3g66wQqfdmmaNV\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 34.02,\n                \"category\": [\n                  \"Travel\",\n                  \"Gas Stations\"\n                ],\n                \"category_id\": \"22009000\",\n                \"date\": \"2019-01-28\",\n                \"date_transacted\": \"2019-01-27\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"76 - MAYFAIR 76\",\n                \"original_description\": \"76 - MAYFAIR 76\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"7QQDzj9Vq0UrpzrNLOLvTO0kDqq5MYCQxxOKq\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 15.72,\n                \"category\": [\n                  \"Shops\",\n                  \"Pharmacies\"\n                ],\n                \"category_id\": \"19043000\",\n                \"date\": \"2019-01-30\",\n                \"date_transacted\": \"2019-01-29\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": \"10164\",\n                  \"zip\": null\n                },\n                \"name\": \"CVS\",\n                \"original_description\": \"CVS/PHARMACY #10164\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"oww9yE06PQh6vn6YPePQFb619NNLRBfB66a1L\",\n                \"transaction_type\": \"place\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 4,\n                \"category\": [\n                  \"Travel\",\n                  \"Parking\"\n                ],\n                \"category_id\": \"22013000\",\n                \"date\": \"2019-01-31\",\n                \"date_transacted\": \"2019-01-29\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"CCSF MTA PARKING METER P\",\n                \"original_description\": \"CCSF MTA PARKING METER P\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"grrp6oyMZQF8gz8aVJVNiPVOwyykXqtq55ZQ9\",\n                \"transaction_type\": \"place\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 22.91,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-01-31\",\n                \"date_transacted\": \"2019-01-29\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"LUCKY #707 DALY CIT\",\n                \"original_description\": \"LUCKY #707 DALY CIT\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"bkk4mxbgZ7UjEXj9q8qwu3wRbQQP0qsq55A4L\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 12.5,\n                \"category\": [\n                  \"Shops\",\n                  \"Food and Beverage Store\"\n                ],\n                \"category_id\": \"19025000\",\n                \"date\": \"2019-01-31\",\n                \"date_transacted\": \"2019-01-30\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"JUICE SHOP\",\n                \"original_description\": \"SQ *JUICE SHOP\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": \"Square\",\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"ZDD9jkL5pxHvoXvyn3ndc91XpJJ0qKsRDDQyj\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 6,\n                \"category\": [\n                  \"Recreation\",\n                  \"Arts and Entertainment\"\n                ],\n                \"category_id\": \"17001000\",\n                \"date\": \"2019-02-01\",\n                \"date_transacted\": \"2019-01-30\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"111 MINNA GALLERY LLC\",\n                \"original_description\": \"111 MINNA GALLERY LLC\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"5oojMv6z1AH0Zw0jMqMQcq63QvvXjZsBggLEA\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": -89,\n                \"category\": [\n                  \"Transfer\",\n                  \"Credit\"\n                ],\n                \"category_id\": \"21005000\",\n                \"date\": \"2019-02-03\",\n                \"date_transacted\": \"2019-02-01\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"2CHECKOUT*DATALISTS\",\n                \"original_description\": \"2CHECKOUT*DATALISTS\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"8ooyMrQVBjH4mJ4QENEvCKqP3zzwLNcy3357Z\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 6.06,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-03\",\n                \"date_transacted\": \"2019-02-02\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *\",\n                \"original_description\": \"UBER   *\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"xyyRaLgK0Qhq1zq9KjK5i3xBE88bAMsM44L1A\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": -1804.67,\n                \"category\": [\n                  \"Payment\",\n                  \"Credit Card\"\n                ],\n                \"category_id\": \"16001000\",\n                \"date\": \"2019-02-03\",\n                \"date_transacted\": \"2019-02-03\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"Payment Thank You - Web\",\n                \"original_description\": \"Payment Thank You - Web\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"rDD6mnE13YHnrenz5o5VsLXwEMMdjBUBppJOr\",\n                \"transaction_type\": \"special\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 7.26,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-03\",\n                \"date_transacted\": \"2019-02-03\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *TRIP ZRT6B\",\n                \"original_description\": \"UBER   *TRIP ZRT6B\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"0zzZM3gedBfm49m73b3zTbry9ppA76frKKM1r\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 11.98,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-02-04\",\n                \"date_transacted\": \"2019-02-02\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"LUCKY #707 DALY CIT\",\n                \"original_description\": \"LUCKY #707 DALY CIT\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"JkkNdQLXYDUx3expXoXrcAQmDyyLj7Tb88gzQ\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 7.56,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-04\",\n                \"date_transacted\": \"2019-02-03\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *\",\n                \"original_description\": \"UBER   *\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"aKKPZaA57guqMEqwzdzvir3X1DDgk7UZggPq9\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 29.95,\n                \"category\": null,\n                \"category_id\": null,\n                \"date\": \"2019-02-04\",\n                \"date_transacted\": \"2019-02-03\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"BENJAMIN COOPER\",\n                \"original_description\": \"SQ *BENJAMIN COOPER\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": \"Square\",\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"jxx817M5wQHpLapKw5woSk36MjjBwDsRrrVqe\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 11.19,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-02-05\",\n                \"date_transacted\": \"2019-02-03\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"LUCKY #707 DALY CIT\",\n                \"original_description\": \"LUCKY #707 DALY CIT\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"4OO0MAwVDkTv8dvgM7Myc7Ln9OOVg4HkBB0jn\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 8.7,\n                \"category\": [\n                  \"Shops\"\n                ],\n                \"category_id\": \"19000000\",\n                \"date\": \"2019-02-05\",\n                \"date_transacted\": \"2019-02-04\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"Amazon\",\n                \"original_description\": \"Amazon.com*MB6UC5Y71\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"vBBRrwP3AXf1pn1Z343BuqxOAMML1msmddBLM\",\n                \"transaction_type\": \"digital\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 14.85,\n                \"category\": [\n                  \"Shops\"\n                ],\n                \"category_id\": \"19000000\",\n                \"date\": \"2019-02-05\",\n                \"date_transacted\": \"2019-02-04\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"AMZN Mktp US*MB2M05YS0\",\n                \"original_description\": \"AMZN Mktp US*MB2M05YS0\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"kJJrP9NX6QH60r6OaJabFp9wgZZBARHRAA4mr\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 4.35,\n                \"category\": [\n                  \"Food and Drink\",\n                  \"Restaurants\"\n                ],\n                \"category_id\": \"13005000\",\n                \"date\": \"2019-02-05\",\n                \"date_transacted\": \"2019-02-04\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": \"159\",\n                  \"zip\": null\n                },\n                \"name\": \"In-N-Out Burger\",\n                \"original_description\": \"IN N OUT BURGER 159\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"KAADwnxo81uLybLoa1aAcBbOXJJ1jmtQBBZj6\",\n                \"transaction_type\": \"place\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 20.43,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-02-06\",\n                \"date_transacted\": \"2019-02-04\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"KUKJE SUPER MARKET\",\n                \"original_description\": \"KUKJE SUPER MARKET\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"ALLvMbJVroHmdwm3jyjnTykwLEEovnc6EEkak\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 41.99,\n                \"category\": [\n                  \"Recreation\",\n                  \"Gyms and Fitness Centers\"\n                ],\n                \"category_id\": \"17018000\",\n                \"date\": \"2019-02-06\",\n                \"date_transacted\": \"2019-02-05\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"24 Hour Fitness\",\n                \"original_description\": \"24 Hour Fitness USA, I\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"3oogekdVLKHAJ5AD797ni9ORq00VoDsKjje56\",\n                \"transaction_type\": \"place\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 19.1,\n                \"category\": [\n                  \"Shops\",\n                  \"Food and Beverage Store\"\n                ],\n                \"category_id\": \"19025000\",\n                \"date\": \"2019-02-06\",\n                \"date_transacted\": \"2019-02-05\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"JOE \\u0026 THE JUICE\",\n                \"original_description\": \"SQ *JOE \\u0026 THE JUICE\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": \"Square\",\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"BDD6Rgkp4bHLwgLxVAVvcAZQ533kR7T900xpe\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 6.91,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-06\",\n                \"date_transacted\": \"2019-02-06\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *\",\n                \"original_description\": \"UBER   *\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"1ooAMygEw3HKabK3vgvyigxeEddyjXUmJJ1v9\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 3,\n                \"category\": [\n                  \"Recreation\",\n                  \"Arts and Entertainment\"\n                ],\n                \"category_id\": \"17001000\",\n                \"date\": \"2019-02-07\",\n                \"date_transacted\": \"2019-02-05\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"111 MINNA GALLERY LLC\",\n                \"original_description\": \"111 MINNA GALLERY LLC\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"yKKmxD0kjQuB1eB3QVQncyd59MMkZOcOnnLVw\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 9,\n                \"category\": [\n                  \"Food and Drink\",\n                  \"Restaurants\",\n                  \"Coffee Shop\"\n                ],\n                \"category_id\": \"13005043\",\n                \"date\": \"2019-02-07\",\n                \"date_transacted\": \"2019-02-06\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"ANDYTOWN COFFEE ROAST\",\n                \"original_description\": \"SQ *ANDYTOWN COFFEE ROAST\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": \"Square\",\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"qLLakQqDBNHd1adezNzRu6q9LMMxBJUJLLaY3\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 5.28,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-07\",\n                \"date_transacted\": \"2019-02-06\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *TRIP\",\n                \"original_description\": \"UBER   *TRIP\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"P44xP6XomyUn0onVDzDXsjwLVddarAHm88Mx8\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 19.25,\n                \"category\": [\n                  \"Shops\",\n                  \"Food and Beverage Store\"\n                ],\n                \"category_id\": \"19025000\",\n                \"date\": \"2019-02-07\",\n                \"date_transacted\": \"2019-02-06\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"NATIVE JUICE\",\n                \"original_description\": \"SQ *NATIVE JUICE\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": \"Square\",\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"DPPEM9mo87COLzO6momxSE9eKPPXLRuZEEoaK\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 178.52,\n                \"category\": [\n                  \"Service\",\n                  \"Telecommunication Services\"\n                ],\n                \"category_id\": \"18063000\",\n                \"date\": \"2019-02-08\",\n                \"date_transacted\": \"2019-02-07\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"BILL PAYMENT\",\n                \"original_description\": \"AT\\u0026T*BILL PAYMENT\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": \"AT\\u0026T\",\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"Lvv16pxo8PUEKZEvQeQnc3J5PYYLoBs033YMO\",\n                \"transaction_type\": \"special\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 32.69,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-08\",\n                \"date_transacted\": \"2019-02-07\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *TRIP\",\n                \"original_description\": \"UBER   *TRIP\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"6ooEM0LVPvHj5ZjBpdp0udb4v88xVrHabb6JR\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 14.09,\n                \"category\": [\n                  \"Shops\"\n                ],\n                \"category_id\": \"19000000\",\n                \"date\": \"2019-02-10\",\n                \"date_transacted\": \"2019-02-08\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"Amazon\",\n                \"original_description\": \"Amazon.com*MI5EF84N0\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"w33746gyvQcnv1n73P3zsBgPyMMJqotL88Z4b\",\n                \"transaction_type\": \"digital\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 8.21,\n                \"category\": [\n                  \"Food and Drink\",\n                  \"Restaurants\"\n                ],\n                \"category_id\": \"13005000\",\n                \"date\": \"2019-02-10\",\n                \"date_transacted\": \"2019-02-09\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"L \\u0026 L HAWAIIAN BBQ #139\",\n                \"original_description\": \"L \\u0026 L HAWAIIAN BBQ #139\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"mZZPBO9dDQCvyBvZLEL0cxEkrppnRMCM66d5X\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 5.31,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-10\",\n                \"date_transacted\": \"2019-02-10\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *TRIP\",\n                \"original_description\": \"UBER   *TRIP\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"X66Rvyw5Q4HkZYkBmrm8cgLme99V3aU4557BJ\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 32.79,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-02-11\",\n                \"date_transacted\": \"2019-02-09\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"KUKJE SUPER MARKET\",\n                \"original_description\": \"KUKJE SUPER MARKET\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"dvvBb835nzUDobD9kPkauVa3P44gpbFbvv9nY\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 13.67,\n                \"category\": [\n                  \"Shops\",\n                  \"Food and Beverage Store\"\n                ],\n                \"category_id\": \"19025000\",\n                \"date\": \"2019-02-11\",\n                \"date_transacted\": \"2019-02-09\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"K \\u0026 H LIQUOR\",\n                \"original_description\": \"K \\u0026 H LIQUOR\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"zkk7J1mArQU3bn3mJ7JBSKXND88k3OcO884wg\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 5.45,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-11\",\n                \"date_transacted\": \"2019-02-10\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *TRIP\",\n                \"original_description\": \"UBER   *TRIP\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"YLL30K6QZaH35n36jPjvSdDBV11ZkAHQ55r6B\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 5.75,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-11\",\n                \"date_transacted\": \"2019-02-10\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *TRIP\",\n                \"original_description\": \"UBER   *TRIP\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"e00XdZ3z9QIxXmx7AaADc1qJvDDgVdHdzzjvV\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 8.61,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-11\",\n                \"date_transacted\": \"2019-02-10\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *TRIP\",\n                \"original_description\": \"UBER   *TRIP\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"NjjqDdMo8BHJAzJaoboQu9Vmyqq4ArsR99KBX\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 40.53,\n                \"category\": null,\n                \"category_id\": null,\n                \"date\": \"2019-02-14\",\n                \"date_transacted\": \"2019-02-12\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"GOOD OEL INC\",\n                \"original_description\": \"GOOD OEL INC\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"p66PKRaLqnH6AX6K9z9EFwLd6MMx9JcJggO00\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 0.99,\n                \"category\": [\n                  \"Shops\",\n                  \"Music, Video and DVD\"\n                ],\n                \"category_id\": \"19036000\",\n                \"date\": \"2019-02-14\",\n                \"date_transacted\": \"2019-02-13\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"iTunes\",\n                \"original_description\": \"APL*ITUNES.COM/BILL\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": \"Apple\",\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"ndda3M9wmQUNr9N8x3xbCYaMqeevzAUAgg8mK\",\n                \"transaction_type\": \"digital\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 10,\n                \"category\": [\n                  \"Travel\",\n                  \"Public Transportation Services\"\n                ],\n                \"category_id\": \"22014000\",\n                \"date\": \"2019-02-14\",\n                \"date_transacted\": \"2019-02-13\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"BART-CLIPPER DALY CITY\",\n                \"original_description\": \"BART-CLIPPER DALY CITY\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"QaaOqLxobKhRjzRNXDXBtk6AVDDmj4sEvvkQY\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 8.41,\n                \"category\": [\n                  \"Food and Drink\",\n                  \"Restaurants\"\n                ],\n                \"category_id\": \"13005000\",\n                \"date\": \"2019-02-14\",\n                \"date_transacted\": \"2019-02-13\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UNO DOS TACOS\",\n                \"original_description\": \"UNO DOS TACOS\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"RxxmBDOo8kH8rR8kw0wMi0LXVbbkvqfy0086v\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 18,\n                \"category\": [\n                  \"Service\",\n                  \"Personal Care\"\n                ],\n                \"category_id\": \"18045000\",\n                \"date\": \"2019-02-15\",\n                \"date_transacted\": \"2019-02-15\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"EXPRESSION HAIR DESIGN\",\n                \"original_description\": \"EXPRESSION HAIR DESIGN\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": \"EqqBMVkon9UYDjYmzqzNuJeOqZZ8LnFpMMwK1\",\n                \"transaction_id\": \"Orrb1wPo83FAvOA1VKVofqoXBrv9KjF8qgpJd\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 14.78,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-02-17\",\n                \"date_transacted\": \"2019-02-14\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"LUCKY #707 DALY CIT\",\n                \"original_description\": \"LUCKY #707 DALY CIT\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": \"M005LXxE8qIBkZBoKVK5cb69YjjXEpfMbbQAg\",\n                \"transaction_id\": \"M005LXxE8qIBkZBoKVK4fXr3qr83QYCMay6RD\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 575.88,\n                \"category\": [\n                  \"Service\",\n                  \"Business Services\"\n                ],\n                \"category_id\": \"18008000\",\n                \"date\": \"2019-02-17\",\n                \"date_transacted\": \"2019-02-17\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"LINKEDIN-450*1097613\",\n                \"original_description\": \"LINKEDIN-450*1097613\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": true,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"RxxmBDOo8kH8rR8kw0w9F7yO9p3gxkSyMx7X5\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 13.64,\n                \"category\": [\n                  \"Food and Drink\",\n                  \"Restaurants\",\n                  \"Coffee Shop\"\n                ],\n                \"category_id\": \"13005043\",\n                \"date\": \"2019-02-17\",\n                \"date_transacted\": \"2019-02-17\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"WESTLAKE COFFEE SHOP\",\n                \"original_description\": \"WESTLAKE COFFEE SHOP\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": true,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"mZZPBO9dDQCvyBvZLEL8i8rvPgDVQaIM7M40z\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 7.2,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-18\",\n                \"date_transacted\": \"2019-02-17\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *\",\n                \"original_description\": \"UBER   *\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": \"zkk7J1mArQU3bn3mJ7J1skNjXj1vQksO74qjA\",\n                \"transaction_id\": \"NjjqDdMo8BHJAzJaoboNcE3RVQdvJ4TRVQyJ6\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 6.22,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-18\",\n                \"date_transacted\": \"2019-02-17\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBER *\",\n                \"original_description\": \"UBER   *\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": \"ndda3M9wmQUNr9N8x3xVIpg5qL1z0ECAZM91v\",\n                \"transaction_id\": \"X66Rvyw5Q4HkZYkBmrmNTj6QLAy5MVt4RyzwL\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 35.59,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-02-18\",\n                \"date_transacted\": \"2019-02-16\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"LUCKY #707 DALY CIT\",\n                \"original_description\": \"LUCKY #707 DALY CIT\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": false,\n                \"pending_transaction_id\": \"9oodM4PO3rHagBaJ1b1ptM46BkxRyjudExbKM\",\n                \"transaction_id\": \"p66PKRaLqnH6AX6K9z97Hn3kLZeD4xCJqDA1o\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 20.46,\n                \"category\": [\n                  \"Shops\",\n                  \"Supermarkets and Groceries\"\n                ],\n                \"category_id\": \"19047000\",\n                \"date\": \"2019-02-18\",\n                \"date_transacted\": \"2019-02-18\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": \"CA\",\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"LUCKY #707.DALY CITY\",\n                \"original_description\": \"LUCKY #707.DALY CITY CA\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": true,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"ndda3M9wmQUNr9N8x3xQtdBra1yjmvCADNjn9\",\n                \"transaction_type\": \"place\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 16.99,\n                \"category\": [\n                  \"Food and Drink\",\n                  \"Restaurants\"\n                ],\n                \"category_id\": \"13005000\",\n                \"date\": \"2019-02-18\",\n                \"date_transacted\": \"2019-02-18\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"MY TOFU HOUSE\",\n                \"original_description\": \"MY TOFU HOUSE\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": true,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"QaaOqLxobKhRjzRNXDXEFaJE6Z90RmUEXM9D8\",\n                \"transaction_type\": \"unresolved\",\n                \"unofficial_currency_code\": null\n              },\n              {\n                \"account_id\": \"mZZPBO9dDQCvyBvZLELDuZyOMp47MKUMPAP6E\",\n                \"account_owner\": null,\n                \"amount\": 6.77,\n                \"category\": [\n                  \"Travel\",\n                  \"Car Service\",\n                  \"Ride Share\"\n                ],\n                \"category_id\": \"22006001\",\n                \"date\": \"2019-02-19\",\n                \"date_transacted\": \"2019-02-19\",\n                \"iso_currency_code\": \"USD\",\n                \"location\": {\n                  \"address\": null,\n                  \"city\": null,\n                  \"lat\": null,\n                  \"lon\": null,\n                  \"state\": null,\n                  \"store_number\": null,\n                  \"zip\": null\n                },\n                \"name\": \"UBR* PENDING.UBER.COM\",\n                \"original_description\": \"UBR* PENDING.UBER.COM\",\n                \"payment_meta\": {\n                  \"by_order_of\": null,\n                  \"payee\": null,\n                  \"payer\": null,\n                  \"payment_method\": null,\n                  \"payment_processor\": null,\n                  \"ppd_id\": null,\n                  \"reason\": null,\n                  \"reference_number\": null\n                },\n                \"pending\": true,\n                \"pending_transaction_id\": null,\n                \"transaction_id\": \"rDD6mnE13YHnrenz5o5mI0OkN84jp3tBRdmwq\",\n                \"transaction_type\": \"digital\",\n                \"unofficial_currency_code\": null\n              }\n            ],\n            \"type\": \"credit\"\n          }\n        ],\n        \"date_last_updated\": \"2019-02-19T21:49:08Z\",\n        \"institution_id\": \"ins_3\",\n        \"institution_name\": \"Chase\",\n        \"item_id\": \"kJJrP9NX6QH60r6OaJaytOdn3bNj67CROemRz\"\n      }\n    ],\n    \"user\": {\n      \"client_user_id\": null,\n      \"email\": null,\n      \"first_name\": null,\n      \"last_name\": null,\n      \"middle_name\": null,\n      \"phone_number\": null,\n      \"ssn\": null\n    }\n  },\n  \"request_id\": \"l8aHNi4oKFMUQc9\",\n  \"warnings\": []\n}"
						}
					]
				},
				{
					"name": "Retrieve an Asset Report (PDF)",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"asset_report_token\": \"ENTER_ASSET_REPORT_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/asset_report/pdf/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"asset_report",
								"pdf",
								"get"
							]
						},
						"description": "You can retrieve your Asset Report in multiple formats (PDF and JSON), determined by the endpoint you call.\n\nJSON: `/asset_report/get`  \nPDF: `/asset_report/pdf/get`  \n<br />\nJust like retrieving `transaction` data, you need to wait several seconds to retrieve an assets report after you create one. A good practice is to retrieve the data when you are notified that it's ready via webhook."
					},
					"response": []
				},
				{
					"name": "Create Audit Copy",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"asset_report_token\": \"ENTER_ASSET_REPORT_TOKEN_HERE\",\n   \"auditor_id\": \"ENTER_AUDITOR_ID_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/asset_report/audit_copy/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"asset_report",
								"audit_copy",
								"create"
							]
						},
						"description": "Plaid can provide an **Audit Copy** of any Asset Report directly to a participating third party on your behalf. \n\nAn Audit Copy contains the same underlying data as the Asset Report. To grant access to an Audit Copy, you’ll create an `audit_copy_token` for it and then pass that token to the third party who needs access. Each third party has its own `auditor_id`, for example `fannie_mae`. You’ll need to create a separate Audit Copy for each third party to whom you want to grant access to the report."
					},
					"response": [
						{
							"name": "Create Audit Copy Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"asset_report_token\": \"assets-sandbox-d4002c0d-458a-41d0-9208-ac23700940f1\",\n   \"auditor_id\": \"fannie_mae\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/asset_report/audit_copy/create",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"asset_report",
										"audit_copy",
										"create"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "109",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Wed, 29 Aug 2018 22:24:46 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"audit_copy_token\": \"a-sandbox-zk3j2qctsbdojdaq7bylhxu7sa\",\n  \"request_id\": \"Ngbxk\"\n}"
						}
					]
				},
				{
					"name": "Remove Asset Report",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"asset_report_token\": \"ENTER_ASSET_REPORT_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/asset_report/remove",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"asset_report",
								"remove"
							]
						},
						"description": "The `/asset_report/remove` endpoint allows you to remove an Asset Report. Removing an Asset Report invalidates its `asset_report_token`, meaning you will no longer be able to use it to access report data or create new Audit Copies. Removing an Asset Report does not affect the underlying Items, but does also invalidate any `audit_copy_token`s associated with the Asset Report. In other words, removing an Asset Report also cascade-removes its Audit Copies."
					},
					"response": [
						{
							"name": "Remove Asset Report Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"asset_report_token\": \"assets-sandbox-d4002c0d-458a-41d0-9208-ac23700940f1\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/asset_report/remove",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"asset_report",
										"remove"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "64",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Wed, 29 Aug 2018 22:25:39 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"removed\": true,\n  \"request_id\": \"L1oxW\"\n}"
						}
					]
				},
				{
					"name": "Remove Audit Copy ",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"audit_copy_token\": \"ENTER_AUDIT_COPY_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/asset_report/audit_copy/remove",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"asset_report",
								"audit_copy",
								"remove"
							]
						},
						"description": "The `/asset_report/audit_copy/remove` endpoint allows you to remove an Audit Copy. Removing an Audit Copy invalidates the `audit_copy_token` associated with it, meaning both you and any third parties holding the token will no longer be able to use it to access report data. `Item`s associated with the Asset Report, the Asset Report itself and other Audit Copies of it are not affected and will remain accessible after removing the given Audit Copy."
					},
					"response": [
						{
							"name": "Remove Audit Copy Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"audit_copy_token\": \"a-sandbox-zk3j2qctsbdojdaq7bylhxu7sa\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/asset_report/audit_copy/remove",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"asset_report",
										"audit_copy",
										"remove"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "64",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Wed, 29 Aug 2018 22:25:19 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"removed\": true,\n  \"request_id\": \"Rvr6D\"\n}"
						}
					]
				},
				{
					"name": "Refresh Asset Report ",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"asset_report_token\": \"ENTER_ASSET_REPORT_TOKEN_HERE\",\n   \"days_requested\": 30,\n   \"options\": {\n      \"client_report_id\": \"ENTER_CLIENT_REPORT_ID_HERE\",\n      \"webhook\": \"ENTER_WEBHOOK_URL_HERE\",\n      \"user\": {\n        \"client_user_id\": \"ENTER_USER_ID_HERE\",\n        \"first_name\": \"ENTER_FIRST_NAME_HERE\",\n        \"middle_name\": \"ENTER_MIDDLE_NAME_HERE\",\n        \"last_name\": \"ENTER_LAST_NAME_HERE\",\n        \"ssn\": \"ENTER_SSN_HERE\",\n        \"phone_number\": \"ENTER_PHONE_NUMBER_HERE\",\n        \"email\": \"ENTER_EMAIL_HERE\"\n      }\n   }\n }"
						},
						"url": {
							"raw": "https://{{env_url}}/asset_report/refresh",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"asset_report",
								"refresh"
							]
						},
						"description": "Create a new Asset Report based on the old one, but with the most recent data available from the financial institution(s)."
					},
					"response": [
						{
							"name": "Refresh Asset Report Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"asset_report_token\": \"assets-sandbox-915f0a0b-3168-4be9-84ab-84f03b721caf\",\n   \"days_requested\": 30\n   \n }"
								},
								"url": {
									"raw": "https://{{env_url}}/asset_report/refresh",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"asset_report",
										"refresh"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "151",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 18 Sep 2018 00:39:20 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"asset_report_id\": \"d688fccd-ea25-441c-8432-da7ad149d272\",\n  \"asset_report_token\": \"assets-sandbox-0334b31a-177f-4f4e-9764-ed20d217ef9b\",\n  \"request_id\": \"Nzrib\"\n}"
						}
					]
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Liabilities Report",
			"item": [
				{
					"name": "Create Liabilities Report",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"access_tokens\": [\"ENTER_ACCESS_TOKENS_HERE\"],\n   \"days_requested\": 30\n }"
						},
						"url": {
							"raw": "https://{{env_url}}/liabilities_report/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"liabilities_report",
								"create"
							]
						},
						"description": "With your desired `access_tokens` in hand, all you need to do to create a Liabilities Report is to call the `/liabilities_report/create` endpoint.\n\nWhen creating a Liabilities Report, the only required fields are your `client_id`, `secret`, an `array of access_tokens` (one for each Item to be included in the Report), and the number of `days_requested` which determines the duration of transaction history to be included."
					},
					"response": [
						{
							"name": "Create Liabilities Report Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"access_tokens\": [\"access-sandbox-6c626e5a-28fc-4f9b-bcc1-e3305e4e7600\"],\n   \"days_requested\": 30\n }"
								},
								"url": {
									"raw": "https://{{env_url}}/liabilities_report/create",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"liabilities_report",
										"create"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Date",
									"value": "Tue, 01 Sep 2020 21:47:15 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Content-Length",
									"value": "171"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block"
								}
							],
							"cookie": [],
							"body": "{\n    \"liabilities_report_id\": \"3c76bd62-b3e1-483d-9387-f7c26f24bc53\",\n    \"liabilities_report_token\": \"liabilities-report-sandbox-b6019c5e-057b-429c-8ab6-0a461a5f1fc2\",\n    \"request_id\": \"tSbuak3Dw7IB4Jg\"\n}"
						}
					]
				},
				{
					"name": "Retrieve Liabilities Report",
					"event": [
						{
							"listen": "prerequest",
							"script": {
								"id": "6d72915f-8363-4eaa-b4b3-72c760a67ef0",
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"liabilities_report_token\": \"ENTER_LIABILITIES_REPORT_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/liabilities_report/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"liabilities_report",
								"get"
							]
						},
						"description": "You can retrieve your Liabilities Report in JSON by calling `/liabilities_report/get`.\n\n<br />\nJust like retrieving `transaction` data, you need to wait several seconds to retrieve a liabilities report after you create one."
					},
					"response": [
						{
							"name": "Retrieve Liabilities Report Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"liabilities_report_token\": \"liabilities-report-sandbox-b6019c5e-057b-429c-8ab6-0a461a5f1fc2\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/liabilities_report/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"liabilities_report",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Date",
									"value": "Tue, 01 Sep 2020 22:47:08 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block"
								}
							],
							"cookie": [],
							"body": "{\n    \"report\": {\n        \"client_report_id\": \"\",\n        \"date_generated\": \"2020-09-01T21:47:18Z\",\n        \"days_requested\": 30,\n        \"items\": [\n            {\n                \"accounts\": [\n                    {\n                        \"account_id\": \"0NJ4PnMjnDhWqlB3Yvr9FKwLNQpWrmT2xM7oE\",\n                        \"balances\": {\n                            \"available\": 0,\n                            \"current\": 56302.06,\n                            \"iso_currency_code\": \"USD\",\n                            \"limit\": null,\n                            \"unofficial_currency_code\": null\n                        },\n                        \"liabilities\": [\n                            {\n                                \"credit\": null,\n                                \"mortgage\": [\n                                    {\n                                        \"account_id\": \"0NJ4PnMjnDhWqlB3Yvr9FKwLNQpWrmT2xM7oE\",\n                                        \"account_number\": \"3120194154\",\n                                        \"current_late_fee\": 25,\n                                        \"escrow_balance\": 3141.54,\n                                        \"has_pmi\": true,\n                                        \"has_prepayment_penalty\": true,\n                                        \"interest_rate\": {\n                                            \"percentage\": 3.99,\n                                            \"type\": \"fixed\"\n                                        },\n                                        \"last_payment_amount\": 3141.54,\n                                        \"last_payment_date\": \"2019-08-01\",\n                                        \"loan_term\": \"30 year\",\n                                        \"loan_type_description\": \"\",\n                                        \"maturity_date\": \"2045-07-31\",\n                                        \"next_monthly_payment\": 3141.54,\n                                        \"next_payment_due_date\": \"0001-01-01\",\n                                        \"origination_date\": \"2015-08-01\",\n                                        \"origination_principal_amount\": 425000,\n                                        \"past_due_amount\": 2304,\n                                        \"property_address\": {\n                                            \"city\": \"Malakoff\",\n                                            \"country\": \"US\",\n                                            \"postal_code\": \"\",\n                                            \"region\": \"NY\",\n                                            \"street\": \"2992 Cameron Road\"\n                                        },\n                                        \"ytd_interest_paid\": 12300.4,\n                                        \"ytd_principal_paid\": 12340.5\n                                    }\n                                ],\n                                \"student\": null\n                            }\n                        ],\n                        \"mask\": \"8888\",\n                        \"name\": \"Plaid Mortgage\",\n                        \"official_name\": \"\",\n                        \"owners\": [\n                            {\n                                \"addresses\": [\n                                    {\n                                        \"data\": {\n                                            \"city\": \"Malakoff\",\n                                            \"country\": \"US\",\n                                            \"postal_code\": \"14236\",\n                                            \"region\": \"NY\",\n                                            \"street\": \"2992 Cameron Road\"\n                                        },\n                                        \"primary\": true\n                                    },\n                                    {\n                                        \"data\": {\n                                            \"city\": \"San Matias\",\n                                            \"country\": \"US\",\n                                            \"postal_code\": \"93405-2255\",\n                                            \"region\": \"CA\",\n                                            \"street\": \"2493 Leisure Lane\"\n                                        },\n                                        \"primary\": false\n                                    }\n                                ],\n                                \"emails\": [\n                                    {\n                                        \"data\": \"accountholder0@example.com\",\n                                        \"primary\": true,\n                                        \"type\": \"primary\"\n                                    },\n                                    {\n                                        \"data\": \"accountholder1@example.com\",\n                                        \"primary\": false,\n                                        \"type\": \"secondary\"\n                                    },\n                                    {\n                                        \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                                        \"primary\": false,\n                                        \"type\": \"other\"\n                                    }\n                                ],\n                                \"names\": [\n                                    \"Alberta Bobbeth Charleson\"\n                                ],\n                                \"phone_numbers\": [\n                                    {\n                                        \"data\": \"1112223333\",\n                                        \"primary\": false,\n                                        \"type\": \"home\"\n                                    },\n                                    {\n                                        \"data\": \"1112224444\",\n                                        \"primary\": false,\n                                        \"type\": \"work\"\n                                    },\n                                    {\n                                        \"data\": \"1112225555\",\n                                        \"primary\": false,\n                                        \"type\": \"mobile1\"\n                                    }\n                                ]\n                            }\n                        ],\n                        \"ownership_type\": null,\n                        \"subtype\": \"mortgage\",\n                        \"transactions\": null,\n                        \"type\": \"loan\"\n                    },\n                    {\n                        \"account_id\": \"5kOjXvMovKuK5O9Gw8WzT1zNQRj2lgImJnGvB\",\n                        \"balances\": {\n                            \"available\": 0,\n                            \"current\": 410,\n                            \"iso_currency_code\": \"USD\",\n                            \"limit\": null,\n                            \"unofficial_currency_code\": null\n                        },\n                        \"liabilities\": [\n                            {\n                                \"credit\": [\n                                    {\n                                        \"account_id\": \"5kOjXvMovKuK5O9Gw8WzT1zNQRj2lgImJnGvB\",\n                                        \"aprs\": [\n                                            {\n                                                \"apr_percentage\": null,\n                                                \"apr_type\": null,\n                                                \"balance_subject_to_apr\": null,\n                                                \"interest_charge_amount\": null\n                                            },\n                                            {\n                                                \"apr_percentage\": null,\n                                                \"apr_type\": null,\n                                                \"balance_subject_to_apr\": null,\n                                                \"interest_charge_amount\": null\n                                            },\n                                            {\n                                                \"apr_percentage\": null,\n                                                \"apr_type\": null,\n                                                \"balance_subject_to_apr\": null,\n                                                \"interest_charge_amount\": null\n                                            },\n                                            {\n                                                \"apr_percentage\": null,\n                                                \"apr_type\": null,\n                                                \"balance_subject_to_apr\": null,\n                                                \"interest_charge_amount\": null\n                                            },\n                                            {\n                                                \"apr_percentage\": 15.24,\n                                                \"apr_type\": \"balance_transfer_apr\",\n                                                \"balance_subject_to_apr\": 1562.32,\n                                                \"interest_charge_amount\": 130.22\n                                            },\n                                            {\n                                                \"apr_percentage\": 27.95,\n                                                \"apr_type\": \"cash_apr\",\n                                                \"balance_subject_to_apr\": 56.22,\n                                                \"interest_charge_amount\": 14.81\n                                            },\n                                            {\n                                                \"apr_percentage\": 12.5,\n                                                \"apr_type\": \"purchase_apr\",\n                                                \"balance_subject_to_apr\": 157.01,\n                                                \"interest_charge_amount\": 25.66\n                                            },\n                                            {\n                                                \"apr_percentage\": 0,\n                                                \"apr_type\": \"special\",\n                                                \"balance_subject_to_apr\": 1000,\n                                                \"interest_charge_amount\": 0\n                                            }\n                                        ],\n                                        \"is_overdue\": false,\n                                        \"last_payment_amount\": 168.25,\n                                        \"last_payment_date\": \"2019-05-22\",\n                                        \"last_statement_balance\": 1708.77,\n                                        \"last_statement_issue_date\": \"2019-05-28\",\n                                        \"minimum_payment_amount\": 20,\n                                        \"next_payment_due_date\": \"2020-05-28\"\n                                    }\n                                ],\n                                \"mortgage\": null,\n                                \"student\": null\n                            }\n                        ],\n                        \"mask\": \"3333\",\n                        \"name\": \"Plaid Credit Card\",\n                        \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n                        \"owners\": [\n                            {\n                                \"addresses\": [\n                                    {\n                                        \"data\": {\n                                            \"city\": \"Malakoff\",\n                                            \"country\": \"US\",\n                                            \"postal_code\": \"14236\",\n                                            \"region\": \"NY\",\n                                            \"street\": \"2992 Cameron Road\"\n                                        },\n                                        \"primary\": true\n                                    },\n                                    {\n                                        \"data\": {\n                                            \"city\": \"San Matias\",\n                                            \"country\": \"US\",\n                                            \"postal_code\": \"93405-2255\",\n                                            \"region\": \"CA\",\n                                            \"street\": \"2493 Leisure Lane\"\n                                        },\n                                        \"primary\": false\n                                    }\n                                ],\n                                \"emails\": [\n                                    {\n                                        \"data\": \"accountholder0@example.com\",\n                                        \"primary\": true,\n                                        \"type\": \"primary\"\n                                    },\n                                    {\n                                        \"data\": \"accountholder1@example.com\",\n                                        \"primary\": false,\n                                        \"type\": \"secondary\"\n                                    },\n                                    {\n                                        \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                                        \"primary\": false,\n                                        \"type\": \"other\"\n                                    }\n                                ],\n                                \"names\": [\n                                    \"Alberta Bobbeth Charleson\"\n                                ],\n                                \"phone_numbers\": [\n                                    {\n                                        \"data\": \"1112223333\",\n                                        \"primary\": false,\n                                        \"type\": \"home\"\n                                    },\n                                    {\n                                        \"data\": \"1112224444\",\n                                        \"primary\": false,\n                                        \"type\": \"work\"\n                                    },\n                                    {\n                                        \"data\": \"1112225555\",\n                                        \"primary\": false,\n                                        \"type\": \"mobile1\"\n                                    }\n                                ]\n                            }\n                        ],\n                        \"ownership_type\": null,\n                        \"subtype\": \"credit card\",\n                        \"transactions\": [\n                            {\n                                \"account_id\": \"5kOjXvMovKuK5O9Gw8WzT1zNQRj2lgImJnGvB\",\n                                \"amount\": 500,\n                                \"date\": \"2020-08-28\",\n                                \"iso_currency_code\": \"USD\",\n                                \"original_description\": \"United Airlines\",\n                                \"pending\": false,\n                                \"transaction_id\": \"KNwMvoGlo9hwz0WnZKrYu1Mo9nPxZJfVyYrQZ\",\n                                \"unofficial_currency_code\": null\n                            },\n                            {\n                                \"account_id\": \"5kOjXvMovKuK5O9Gw8WzT1zNQRj2lgImJnGvB\",\n                                \"amount\": 500,\n                                \"date\": \"2020-08-23\",\n                                \"iso_currency_code\": \"USD\",\n                                \"original_description\": \"Tectra Inc\",\n                                \"pending\": false,\n                                \"transaction_id\": \"LOxNwpGmpWFOy591lqYgsVBrlKEn0ZcVp1vG7\",\n                                \"unofficial_currency_code\": null\n                            },\n                            {\n                                \"account_id\": \"5kOjXvMovKuK5O9Gw8WzT1zNQRj2lgImJnGvB\",\n                                \"amount\": 500,\n                                \"date\": \"2020-08-22\",\n                                \"iso_currency_code\": \"USD\",\n                                \"original_description\": \"KFC\",\n                                \"pending\": false,\n                                \"transaction_id\": \"NgzPyrGorWcxD13BwLMQTGmznVkAvNSPM8N0l\",\n                                \"unofficial_currency_code\": null\n                            },\n                            {\n                                \"account_id\": \"5kOjXvMovKuK5O9Gw8WzT1zNQRj2lgImJnGvB\",\n                                \"amount\": 2078.5,\n                                \"date\": \"2020-08-22\",\n                                \"iso_currency_code\": \"USD\",\n                                \"original_description\": \"AUTOMATIC PAYMENT - THANK\",\n                                \"pending\": false,\n                                \"transaction_id\": \"OjAQzvGpv6uXzoxKEY2gcGEA0jx1MqSxkWn3r\",\n                                \"unofficial_currency_code\": null\n                            },\n                            {\n                                \"account_id\": \"5kOjXvMovKuK5O9Gw8WzT1zNQRj2lgImJnGvB\",\n                                \"amount\": 500,\n                                \"date\": \"2020-08-22\",\n                                \"iso_currency_code\": \"USD\",\n                                \"original_description\": \"Madison Bicycle Shop\",\n                                \"pending\": false,\n                                \"transaction_id\": \"MPy0xqXnqWF8MG3ZvP6Li5wGEPg80Vc5oAq0n\",\n                                \"unofficial_currency_code\": null\n                            },\n                            {\n                                \"account_id\": \"5kOjXvMovKuK5O9Gw8WzT1zNQRj2lgImJnGvB\",\n                                \"amount\": 78.5,\n                                \"date\": \"2020-08-11\",\n                                \"iso_currency_code\": \"USD\",\n                                \"original_description\": \"Touchstone Climbing\",\n                                \"pending\": false,\n                                \"transaction_id\": \"PkBRAwGqwWum8qXxJg52c2zB4ZNYglT57ZMr1\",\n                                \"unofficial_currency_code\": null\n                            }\n                        ],\n                        \"type\": \"credit\"\n                    },\n                    {\n                        \"account_id\": \"9oVnPzjvzYUKLPqBrnY6Tro0KmqOZ9IPp8BXY\",\n                        \"balances\": {\n                            \"available\": 0,\n                            \"current\": 65262,\n                            \"iso_currency_code\": \"USD\",\n                            \"limit\": null,\n                            \"unofficial_currency_code\": null\n                        },\n                        \"liabilities\": [\n                            {\n                                \"credit\": null,\n                                \"mortgage\": null,\n                                \"student\": [\n                                    {\n                                        \"account_id\": \"9oVnPzjvzYUKLPqBrnY6Tro0KmqOZ9IPp8BXY\",\n                                        \"account_number\": \"4277075694\",\n                                        \"disbursement_dates\": [\n                                            \"0001-01-01\",\n                                            \"2002-08-28\"\n                                        ],\n                                        \"expected_payoff_date\": \"2032-07-28\",\n                                        \"guarantor\": \"DEPT OF ED\",\n                                        \"interest_rate_percentage\": 5.25,\n                                        \"is_overdue\": false,\n                                        \"last_payment_amount\": 138.05,\n                                        \"last_payment_date\": \"2019-04-22\",\n                                        \"last_statement_balance\": 138.05,\n                                        \"last_statement_issue_date\": \"2019-04-28\",\n                                        \"loan_name\": \"Repayment\",\n                                        \"loan_status\": {\n                                            \"end_date\": \"2032-07-28\",\n                                            \"type\": \"repayment\"\n                                        },\n                                        \"minimum_payment_amount\": 25,\n                                        \"next_payment_due_date\": \"2019-05-28\",\n                                        \"origination_date\": \"2002-08-28\",\n                                        \"origination_principal_amount\": 25000,\n                                        \"outstanding_interest_amount\": 6227.36,\n                                        \"payment_reference_number\": null,\n                                        \"pslf_status\": {\n                                            \"estimated_eligibility_date\": \"2021-01-01\",\n                                            \"payments_made\": 200,\n                                            \"payments_remaining\": 160\n                                        },\n                                        \"repayment_plan\": {\n                                            \"description\": \"Standard Repayment\",\n                                            \"type\": \"standard\"\n                                        },\n                                        \"sequence_number\": \"1\",\n                                        \"servicer_address\": {\n                                            \"city\": \"San Matias\",\n                                            \"country\": \"US\",\n                                            \"postal_code\": \"99415\",\n                                            \"region\": \"CA\",\n                                            \"street\": \"123 Relaxation Road\"\n                                        },\n                                        \"ytd_interest_paid\": 280.55,\n                                        \"ytd_principal_paid\": 271.65\n                                    }\n                                ]\n                            }\n                        ],\n                        \"mask\": \"7777\",\n                        \"name\": \"Plaid Student Loan\",\n                        \"official_name\": \"\",\n                        \"owners\": [\n                            {\n                                \"addresses\": [\n                                    {\n                                        \"data\": {\n                                            \"city\": \"Malakoff\",\n                                            \"country\": \"US\",\n                                            \"postal_code\": \"14236\",\n                                            \"region\": \"NY\",\n                                            \"street\": \"2992 Cameron Road\"\n                                        },\n                                        \"primary\": true\n                                    },\n                                    {\n                                        \"data\": {\n                                            \"city\": \"San Matias\",\n                                            \"country\": \"US\",\n                                            \"postal_code\": \"93405-2255\",\n                                            \"region\": \"CA\",\n                                            \"street\": \"2493 Leisure Lane\"\n                                        },\n                                        \"primary\": false\n                                    }\n                                ],\n                                \"emails\": [\n                                    {\n                                        \"data\": \"accountholder0@example.com\",\n                                        \"primary\": true,\n                                        \"type\": \"primary\"\n                                    },\n                                    {\n                                        \"data\": \"accountholder1@example.com\",\n                                        \"primary\": false,\n                                        \"type\": \"secondary\"\n                                    },\n                                    {\n                                        \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                                        \"primary\": false,\n                                        \"type\": \"other\"\n                                    }\n                                ],\n                                \"names\": [\n                                    \"Alberta Bobbeth Charleson\"\n                                ],\n                                \"phone_numbers\": [\n                                    {\n                                        \"data\": \"1112223333\",\n                                        \"primary\": false,\n                                        \"type\": \"home\"\n                                    },\n                                    {\n                                        \"data\": \"1112224444\",\n                                        \"primary\": false,\n                                        \"type\": \"work\"\n                                    },\n                                    {\n                                        \"data\": \"1112225555\",\n                                        \"primary\": false,\n                                        \"type\": \"mobile1\"\n                                    }\n                                ]\n                            }\n                        ],\n                        \"ownership_type\": null,\n                        \"subtype\": \"student\",\n                        \"transactions\": null,\n                        \"type\": \"loan\"\n                    }\n                ],\n                \"date_last_updated\": \"2020-09-01T21:47:16Z\",\n                \"institution_id\": \"ins_109508\",\n                \"institution_name\": \"First Platypus Bank\",\n                \"item_id\": \"4jNgPr2nrGuWMG51RP7nF1OjgLEkOJHJYD4Y8\"\n            }\n        ],\n        \"liabilities_report_id\": \"3c76bd62-b3e1-483d-9387-f7c26f24bc53\"\n    },\n    \"request_id\": \"ia8MzprycnmqZzb\",\n    \"warnings\": null\n}"
						}
					]
				},
				{
					"name": "Remove Liabilities Report",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"liabilities_report_token\": \"ENTER_LIABILITIES_REPORT_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/liabilities_report/remove",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"liabilities_report",
								"remove"
							]
						},
						"description": "The `/liabilities_report/remove` endpoint allows you to remove a Liabilities Report. Removing a Liabilities Report invalidates its `liabilities_report_token`, meaning you will no longer be able to use it to access report data. Removing a Liabilities Report does not affect the underlying Items."
					},
					"response": [
						{
							"name": "Remove Liabilities Report Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n   \"client_id\": \"{{client_id}}\",\n   \"secret\": \"{{secret_key}}\",\n   \"liabilities_report_token\": \"liabilities-report-sandbox-b6019c5e-057b-429c-8ab6-0a461a5f1fc2\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/liabilities_report/remove",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"liabilities_report",
										"remove"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Server",
									"value": "nginx"
								},
								{
									"key": "Date",
									"value": "Tue, 01 Sep 2020 22:49:09 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/json; charset=utf-8"
								},
								{
									"key": "Content-Length",
									"value": "74"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip"
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY"
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block"
								}
							],
							"cookie": [],
							"body": "{\n    \"removed\": true,\n    \"request_id\": \"pbmNyTduuDRVKxY\"\n}"
						}
					]
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Liabilities",
			"item": [
				{
					"name": "Retrieve Liabilities",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/liabilities/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"liabilities",
								"get"
							]
						}
					},
					"response": []
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Investments",
			"item": [
				{
					"name": "Liabilities Report",
					"item": [],
					"protocolProfileBehavior": {},
					"_postman_isSubFolder": true
				},
				{
					"name": "Retrieve Investments Holdings",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"ENTER_ACCESS_TOKEN_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/investments/holdings/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"investments",
								"holdings",
								"get"
							]
						}
					},
					"response": []
				},
				{
					"name": "Retrieve Investments Transactions",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"access_token\": \"ENTER_ACCESS_TOKEN_HERE\",\n  \"start_date\": \"2017-01-01\",\n  \"end_date\": \"2019-06-01\" \n}"
						},
						"url": {
							"raw": "https://{{env_url}}/investments/transactions/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"investments",
								"transactions",
								"get"
							]
						}
					},
					"response": []
				}
			],
			"description": "Endpoints for Plaid's Investments product.",
			"protocolProfileBehavior": {}
		},
		{
			"name": "Institutions",
			"item": [
				{
					"name": "Search Institution by Name",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\",\n    \"query\": \"delta schools\",\n    \"products\": [\"auth\"]\n }"
						},
						"url": {
							"raw": "https://{{env_url}}/institutions/search",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"institutions",
								"search"
							]
						},
						"description": "The `/institutions/search` endpoint makes it easy to stay up-to-date with supported institutions and help your users quickly find their institutions."
					},
					"response": [
						{
							"name": "Search Institution by Name Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"query\": \"chase\",\n    \"products\": [\"auth\"],\n    \"public_key\": \"{{public_key}}\"\n }"
								},
								"url": {
									"raw": "https://{{env_url}}/institutions/search",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"institutions",
										"search"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "619",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 28 Aug 2018 23:01:54 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"institutions\": [\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_3\",\n      \"mfa\": [\n        \"code\",\n        \"list\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Chase\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_112827\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"The Chasewood Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"UserID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_109602\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"CASE Credit Union\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Email address\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_35\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Chime Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"EasyLink ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"EasyLink Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_111161\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Chain Bridge Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123303\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Preferred Bank (Casey, Illinois)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Account Number\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"PIN\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_113981\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Class Act Federal Credit Union\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_113956\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions(3)\",\n        \"selections(5)\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Cash Advantage\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_113964\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions(3)\",\n        \"selections(5)\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"SEI Cash Access\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"NetTeller ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"NetTeller Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_111322\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Gulf Coast Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    }\n  ],\n  \"request_id\": \"j6Ga1\"\n}"
						}
					]
				},
				{
					"name": "Search Institution by ID",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"institution_id\": \"ENTER_INSTITUTION_ID_HERE\",\n    \"client_id\": \"{{client_id}}\",\n    \"secret\": \"{{secret_key}}\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/institutions/get_by_id",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"institutions",
								"get_by_id"
							]
						}
					},
					"response": [
						{
							"name": "Search Institution by ID Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"institution_id\": \"ins_3\",\n    \"public_key\": \"{{public_key}}\"\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/institutions/get_by_id",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"institutions",
										"get_by_id"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Length",
									"value": "275",
									"name": "Content-Length",
									"description": "The length of the response body in octets (8-bit bytes)"
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 28 Aug 2018 23:01:31 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"institution\": {\n    \"credentials\": [\n      {\n        \"label\": \"User ID\",\n        \"name\": \"username\",\n        \"type\": \"text\"\n      },\n      {\n        \"label\": \"Password\",\n        \"name\": \"password\",\n        \"type\": \"password\"\n      }\n    ],\n    \"has_mfa\": true,\n    \"institution_id\": \"ins_3\",\n    \"mfa\": [\n      \"code\",\n      \"list\"\n    ],\n    \"mfa_code_type\": \"numeric\",\n    \"name\": \"Chase\",\n    \"products\": [\n      \"assets\",\n      \"auth\",\n      \"balance\",\n      \"transactions\",\n      \"credit_details\",\n      \"income\",\n      \"identity\"\n    ]\n  },\n  \"request_id\": \"WTa7v\"\n}"
						}
					]
				},
				{
					"name": "Retrieve Insitution List",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\":\"{{secret_key}}\",\n\t\"count\": 200,\n\t\"offset\": 0\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/institutions/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"institutions",
								"get"
							]
						},
						"description": "To see a full list of supported institutions across all products, use the `/institutions/get` and `/institutions/search` endpoints.  \n<br />\nUse the `count` and `offset` query parameters to retrieve the desired institution data.   \n<br />\n`count`: The total number of Institutions to return, with 0 < count <= 500. <br />\n`offset`: The number of Institutions to skip before returning results, with offset >= 0"
					},
					"response": [
						{
							"name": "Retrieve Insitution List Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\":\"{{secret_key}}\",\n\t\"count\": 200,\n\t\"offset\": 0\n}"
								},
								"url": {
									"raw": "https://{{env_url}}/institutions/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"institutions",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 28 Aug 2018 23:01:12 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Plaid-Version",
									"value": "2018-05-22",
									"name": "Plaid-Version",
									"description": "Custom header"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked",
									"name": "Transfer-Encoding",
									"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"institutions\": [\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_25\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Ally Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Login ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_113968\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Amegy Bank of Texas\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_10\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American Express\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User Name\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_100530\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American Express - Personal Savings\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Online ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_1\",\n      \"mfa\": [\n        \"questions(3)\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of America\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_100866\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of America - Charitable Gift Fund\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_2\",\n      \"mfa\": [\n        \"questions(3)\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"BB\\u0026T\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_100775\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"BB\\u0026T - Wealth Management - TAMLink\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_23\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"BBVA Compass\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Email Address\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_110731\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"BBVA Compass - ClearSpend Visa Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Login ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_113969\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"California Bank and Trust\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_9\",\n      \"mfa\": [\n        \"code\",\n        \"questions(5)\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Capital One\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User name\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_101492\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Capital One - Credit Cards Canada\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Login ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_11\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Charles Schwab\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User Name\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_101686\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Charles Schwab - Learning Quest 529 Plan\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_3\",\n      \"mfa\": [\n        \"code\",\n        \"list\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Chase\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_5\",\n      \"mfa\": [\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citi\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_20\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_101804\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank - Credit Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"PIN\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_101806\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank - Wealth Management\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_12\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Fidelity\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_102914\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Fidelity - 401k\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_102913\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Fidelity - Charitable Gift Fund\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_102937\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Fidelity - Fidelity.com at work\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_26\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Fifth Third Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_21\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Huntington Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_29\",\n      \"mfa\": [\n        \"code\",\n        \"list\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"KeyBank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_27\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"M\\u0026T Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"User Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_105145\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"M\\u0026T Bank - Web Banking for Business\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Email\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_52\",\n      \"mfa\": [\n        \"code\",\n        \"list\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Marcus by Goldman Sachs\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Login ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_113970\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"National Bank of Arizona\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_15\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Navy Federal Credit Union\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Login ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_113971\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Nevada State Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Email\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_22\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"PayPal\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_13\",\n      \"mfa\": [\n        \"questions(3)\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"PNC\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_106256\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"PNC - Small Business\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Online ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_19\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Regions Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Member Number\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_113800\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"San Francisco Fire Credit Union\",\n      \"products\": [\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_28\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Santander\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User Name\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_107402\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Silicon Valley Bank - MasterCard\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User Name\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_107403\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Silicon Valley Bank - MasterCard Elite\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_109966\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Silicon Valley Bank - Private Banking\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_53\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Silicon Valley Bank - SVB Online Services\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_24\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Simple\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_16\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"SunTrust\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_110878\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"SunTrust - Online Cash Manager\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_107760\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"SunTrust - Small Business\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User Name\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_14\",\n      \"mfa\": [\n        \"questions(3)\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"TD Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_107836\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"TD Bank - Business Direct\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Online ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"PIN\",\n          \"name\": \"pin\",\n          \"type\": \"password\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_7\",\n      \"mfa\": [\n        \"questions(3)\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"USAA\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Login ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_113972\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Vectra Bank Colorado\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_4\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Wells Fargo\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_114007\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Wells Fargo - Commercial Electronic Office (CEO)\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_108968\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Wells Fargo - Dealer Services\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_108970\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Wells Fargo - Retirement Plan\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Login ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_113973\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Zions Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_101776\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citi Personal Wealth Management\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Enter your username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Enter your password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_51\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Barclaycard\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_33\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Discover Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"USERNAME\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"PASSWORD\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_32\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Woodforest National Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_114000\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Navient - Loans\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_101158\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"BestBuy.com - Credit Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_104063\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Harris Retirement Benefits\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Email\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_109357\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Macy's - Credit Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Card number\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_37\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"CIBC\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_100015\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Boeing Employees Credit Union (BECU)\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User Name\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_104878\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Kohl's Charge - Credit Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"4 or 6 Digit PIN\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_40\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Tangerine\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_102903\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"FedLoan Servicing\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_100092\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Great Lakes - Educational Loan Services Inc.\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Email Address\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_101037\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"BankMobile VIBE\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username or Access Card\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_42\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"TD Canada Trust\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_105849\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Nelnet - Education Financing\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_36\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"State Employees' Credit Union (NC)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_110938\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions(3)\",\n        \"selections(5)\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"First Convenience Bank\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"USERNAME\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"PASSWORD\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_100071\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Target - Credit Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_120012\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of the West\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Client Card or Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_39\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"RBC Royal Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Card Number\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_41\",\n      \"mfa\": [\n        \"questions(3)\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"BMO Bank of Montreal\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_100096\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"E*TRADE\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username or Card number\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_38\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"ScotiaBank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"credit_details\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_31\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Union Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_108809\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Victoria's Secret Credit\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_107252\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Sears Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Account Number\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_120013\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"America First Credit Union\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_120000\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Golden 1 Credit Union\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Sign-in ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_111968\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"TCF Bank (Illinois)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Enter User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_114016\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"First Tennessee Bank - Personal\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User Name\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_108768\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Vanguard\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Enter Your Online ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_111972\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Arvest Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_100074\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Randolph Brooks Federal Credit Union\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_100523\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American Education Services\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"USER NAME\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"PASSWORD\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_107889\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Target Guest Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Username\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_105483\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Michigan State University Federal Credit Union\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Email\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": false,\n      \"institution_id\": \"ins_101327\",\n      \"mfa\": [],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"CARMax - MyCarMax\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Login ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_110670\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"First PREMIER Bank - Personal\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\",\n        \"identity\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_100798\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"BMO Retirement Services\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User Name\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_100075\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Merrick Bank - Credit Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Personal ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_102625\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Edward Jones - Credit Card\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"User ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Password\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_102626\",\n      \"mfa\": [\n        \"code\",\n        \"list\",\n        \"questions\",\n        \"selections\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Edward Jones - U.S. Clients Access\",\n      \"products\": [\n        \"assets\",\n        \"balance\",\n        \"transactions\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123287\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"1880 Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123180\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"1st Bank in Hominy\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123002\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"1st Capital Bank (California)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123005\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"1st State Bank of Mason City\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123009\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"AccessBank Texas\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123010\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Affinity Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123408\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Alabama Credit Union\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123011\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Alton Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123013\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Amerasia Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123015\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American Bank \\u0026 Trust (Covington, Louisiana)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123014\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American Bank \\u0026 Trust (Kentucky)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123016\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American Bank \\u0026 Trust Company (Opelousas, Louisiana)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123017\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American Bank and Trust Co. (Tulsa, Oklahoma)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123019\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American Exchange Bank (Elmwood, Nebraska)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123020\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American Exchange Bank (Lindsay, Oklahoma)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123022\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American State Bank of Grygla\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123025\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"American Trust and Savings Bank (Lowden, Iowa)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123012\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Amistad Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123430\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Anahuac National Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123024\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Andes State Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123023\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Ashton State Bank (Nebraska)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123062\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Ballston Spa National Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123029\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Banesco USA\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123386\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"BANK (Iowa)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123026\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Abbeville \\u0026 Trust Company\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123431\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Bluffs\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123032\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Cadiz \\u0026 Trust Co.\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123031\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Cairo and Moberly\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123030\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Chestnut\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123033\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Commerce (Wellington, Kansas)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123441\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Dade\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123034\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Denton\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123036\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Eufaula\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123035\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Evergreen\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123376\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Farmington\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123051\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Gleason\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123038\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Glen Ullin\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123039\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Hamilton\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123040\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Hazelton\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123044\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Lake Village\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123043\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Laverne\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123042\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Lindsay\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123053\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Maple Plain\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123046\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Montgomery (Illinois)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123047\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Monticello (Missouri)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123048\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Morton\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123052\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Moundville\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123045\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Mount Hope\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123050\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of New Jersey\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123440\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of New Madrid\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123049\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Newman Grove\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123056\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Prague\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123008\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Ruston\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123061\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Southern California\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123063\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Sunset and Trust Company\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123065\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Vici\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123066\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bank of Winnfield\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123057\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Basile State Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123037\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Blue Grass Savings Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123058\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bogota Savings Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123242\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bonneville Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123060\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Border State Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123054\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Boston Private\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123028\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Brighton Bank (Utah)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123059\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Bryant State Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123064\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"BTH Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123067\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Burling Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123027\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Burton State Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123095\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Caldwell Bank \\u0026 Trust Co.\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123104\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Campbell County Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123090\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Capital Bank of New Jersey\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123129\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Castroville State Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123173\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Catlin Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123247\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Centennial Bank (Texas)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123089\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"CenterBank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123084\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Central Bank Illinois\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123442\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Central State Bank (Illinois)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123409\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Central State Credit Union\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123378\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Century Bank of the Ozarks\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123075\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"CerescoBank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123078\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Chambers Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123125\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Chambers State Bank (Nebraska)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123380\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Chillicothe State Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123116\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Cissna Park State Bank\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123098\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank \\u0026 Trust (Alabama)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123099\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank \\u0026 Trust (Florida)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123097\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank \\u0026 Trust Co. (Vivian, Louisiana)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123085\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank (Abilene, Texas)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123092\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank (Alabama)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123077\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank (Amarillo, Texas)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123379\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank (Anamosa and Tipton, Iowa)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123082\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank of Edinburg\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123086\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Bank of Kansas\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123105\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens Community Bank (Georgia)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123111\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens National Bank of Albion\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123112\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens National Bank of Crosbyton\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123117\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens State Bank (Anton, Texas)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123120\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens State Bank (Corrigan, Texas)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123128\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens State Bank (East Texas)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    },\n    {\n      \"credentials\": [\n        {\n          \"label\": \"Access ID\",\n          \"name\": \"username\",\n          \"type\": \"text\"\n        },\n        {\n          \"label\": \"Passcode\",\n          \"name\": \"password\",\n          \"type\": \"password\"\n        }\n      ],\n      \"has_mfa\": true,\n      \"institution_id\": \"ins_123121\",\n      \"mfa\": [\n        \"questions\"\n      ],\n      \"mfa_code_type\": \"numeric\",\n      \"name\": \"Citizens State Bank (Finley, North Dakota)\",\n      \"products\": [\n        \"assets\",\n        \"auth\",\n        \"balance\",\n        \"transactions\",\n        \"income\"\n      ]\n    }\n  ],\n  \"request_id\": \"dWAMr\",\n  \"total\": 9638\n}"
						}
					]
				}
			],
			"description": "Plaid supports thousands of financial institutions, and we’re always working to add support for more. We have a couple `institution` endpoints that help you to search for institutions as well as to retrieve a complete list of institutions supported by Plaid",
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"id": "b55337f5-ec59-4bc9-bf8f-74aafd5c8271",
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"id": "cdfd7cac-198d-4640-b49d-576cae7c8a21",
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Categories",
			"item": [
				{
					"name": "Retrieve Categories",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{}"
						},
						"url": {
							"raw": "https://{{env_url}}/categories/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"categories",
								"get"
							]
						},
						"description": "This endpoint allows you to get to get detailed information on categories returned by Plaid. This endpoint does not require authentication."
					},
					"response": [
						{
							"name": "Retrieve Categories Example",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{}"
								},
								"url": {
									"raw": "https://{{env_url}}/categories/get",
									"protocol": "https",
									"host": [
										"{{env_url}}"
									],
									"path": [
										"categories",
										"get"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Connection",
									"value": "keep-alive",
									"name": "Connection",
									"description": "Options that are desired for the connection"
								},
								{
									"key": "Content-Encoding",
									"value": "gzip",
									"name": "Content-Encoding",
									"description": "The type of encoding used on the data."
								},
								{
									"key": "Content-Type",
									"value": "application/json",
									"name": "Content-Type",
									"description": "The mime type of this content"
								},
								{
									"key": "Date",
									"value": "Tue, 28 Aug 2018 23:00:54 GMT",
									"name": "Date",
									"description": "The date and time that the message was sent"
								},
								{
									"key": "Server",
									"value": "nginx",
									"name": "Server",
									"description": "A name for the server"
								},
								{
									"key": "Strict-Transport-Security",
									"value": "max-age=31536000; includeSubDomains; preload",
									"name": "Strict-Transport-Security",
									"description": "A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."
								},
								{
									"key": "Transfer-Encoding",
									"value": "chunked",
									"name": "Transfer-Encoding",
									"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
								},
								{
									"key": "Vary",
									"value": "Accept-Encoding",
									"name": "Vary",
									"description": "Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."
								},
								{
									"key": "X-Content-Type-Options",
									"value": "nosniff",
									"name": "X-Content-Type-Options",
									"description": "The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"
								},
								{
									"key": "X-Frame-Options",
									"value": "DENY",
									"name": "X-Frame-Options",
									"description": "Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"
								},
								{
									"key": "X-XSS-Protection",
									"value": "1; mode=block",
									"name": "X-XSS-Protection",
									"description": "Cross-site scripting (XSS) filter"
								}
							],
							"cookie": [],
							"body": "{\n  \"categories\": [\n    {\n      \"category_id\": \"10000000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Bank Fees\"\n      ]\n    },\n    {\n      \"category_id\": \"10001000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Bank Fees\",\n        \"Overdraft\"\n      ]\n    },\n    {\n      \"category_id\": \"10002000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Bank Fees\",\n        \"ATM\"\n      ]\n    },\n    {\n      \"category_id\": \"10003000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Bank Fees\",\n        \"Late Payment\"\n      ]\n    },\n    {\n      \"category_id\": \"10004000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Bank Fees\",\n        \"Fraud Dispute\"\n      ]\n    },\n    {\n      \"category_id\": \"10005000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Bank Fees\",\n        \"Foreign Transaction\"\n      ]\n    },\n    {\n      \"category_id\": \"10006000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Bank Fees\",\n        \"Wire Transfer\"\n      ]\n    },\n    {\n      \"category_id\": \"10007000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Bank Fees\",\n        \"Insufficient Funds\"\n      ]\n    },\n    {\n      \"category_id\": \"10008000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Bank Fees\",\n        \"Cash Advance\"\n      ]\n    },\n    {\n      \"category_id\": \"10009000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Bank Fees\",\n        \"Excess Activity\"\n      ]\n    },\n    {\n      \"category_id\": \"11000000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Cash Advance\"\n      ]\n    },\n    {\n      \"category_id\": \"12000000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\"\n      ]\n    },\n    {\n      \"category_id\": \"12001000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Animal Shelter\"\n      ]\n    },\n    {\n      \"category_id\": \"12002000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Assisted Living Services\"\n      ]\n    },\n    {\n      \"category_id\": \"12002001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Assisted Living Services\",\n        \"Facilities and Nursing Homes\"\n      ]\n    },\n    {\n      \"category_id\": \"12002002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Assisted Living Services\",\n        \"Caretakers\"\n      ]\n    },\n    {\n      \"category_id\": \"12003000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Cemetery\"\n      ]\n    },\n    {\n      \"category_id\": \"12004000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Courts\"\n      ]\n    },\n    {\n      \"category_id\": \"12005000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Day Care and Preschools\"\n      ]\n    },\n    {\n      \"category_id\": \"12006000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Disabled Persons Services\"\n      ]\n    },\n    {\n      \"category_id\": \"12007000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Drug and Alcohol Services\"\n      ]\n    },\n    {\n      \"category_id\": \"12008000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\"\n      ]\n    },\n    {\n      \"category_id\": \"12008001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Vocational Schools\"\n      ]\n    },\n    {\n      \"category_id\": \"12008002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Tutoring and Educational Services\"\n      ]\n    },\n    {\n      \"category_id\": \"12008003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Primary and Secondary Schools\"\n      ]\n    },\n    {\n      \"category_id\": \"12008004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Fraternities and Sororities\"\n      ]\n    },\n    {\n      \"category_id\": \"12008005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Driving Schools\"\n      ]\n    },\n    {\n      \"category_id\": \"12008006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Dance Schools\"\n      ]\n    },\n    {\n      \"category_id\": \"12008007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Culinary Lessons and Schools\"\n      ]\n    },\n    {\n      \"category_id\": \"12008008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Computer Training\"\n      ]\n    },\n    {\n      \"category_id\": \"12008009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Colleges and Universities\"\n      ]\n    },\n    {\n      \"category_id\": \"12008010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Art School\"\n      ]\n    },\n    {\n      \"category_id\": \"12008011\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Education\",\n        \"Adult Education\"\n      ]\n    },\n    {\n      \"category_id\": \"12009000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Government Departments and Agencies\"\n      ]\n    },\n    {\n      \"category_id\": \"12010000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Government Lobbyists\"\n      ]\n    },\n    {\n      \"category_id\": \"12011000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Housing Assistance and Shelters\"\n      ]\n    },\n    {\n      \"category_id\": \"12012000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Law Enforcement\"\n      ]\n    },\n    {\n      \"category_id\": \"12012001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Law Enforcement\",\n        \"Police Stations\"\n      ]\n    },\n    {\n      \"category_id\": \"12012002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Law Enforcement\",\n        \"Fire Stations\"\n      ]\n    },\n    {\n      \"category_id\": \"12012003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Law Enforcement\",\n        \"Correctional Institutions\"\n      ]\n    },\n    {\n      \"category_id\": \"12013000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Libraries\"\n      ]\n    },\n    {\n      \"category_id\": \"12014000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Military\"\n      ]\n    },\n    {\n      \"category_id\": \"12015000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Organizations and Associations\"\n      ]\n    },\n    {\n      \"category_id\": \"12015001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Organizations and Associations\",\n        \"Youth Organizations\"\n      ]\n    },\n    {\n      \"category_id\": \"12015002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Organizations and Associations\",\n        \"Environmental\"\n      ]\n    },\n    {\n      \"category_id\": \"12015003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Organizations and Associations\",\n        \"Charities and Non-Profits\"\n      ]\n    },\n    {\n      \"category_id\": \"12016000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Post Offices\"\n      ]\n    },\n    {\n      \"category_id\": \"12017000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Public and Social Services\"\n      ]\n    },\n    {\n      \"category_id\": \"12018000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Religious\"\n      ]\n    },\n    {\n      \"category_id\": \"12018001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Religious\",\n        \"Temple\"\n      ]\n    },\n    {\n      \"category_id\": \"12018002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Religious\",\n        \"Synagogues\"\n      ]\n    },\n    {\n      \"category_id\": \"12018003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Religious\",\n        \"Mosques\"\n      ]\n    },\n    {\n      \"category_id\": \"12018004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Religious\",\n        \"Churches\"\n      ]\n    },\n    {\n      \"category_id\": \"12019000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Senior Citizen Services\"\n      ]\n    },\n    {\n      \"category_id\": \"12019001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Community\",\n        \"Senior Citizen Services\",\n        \"Retirement\"\n      ]\n    },\n    {\n      \"category_id\": \"13000000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\"\n      ]\n    },\n    {\n      \"category_id\": \"13001000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Bar\"\n      ]\n    },\n    {\n      \"category_id\": \"13001001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Bar\",\n        \"Wine Bar\"\n      ]\n    },\n    {\n      \"category_id\": \"13001002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Bar\",\n        \"Sports Bar\"\n      ]\n    },\n    {\n      \"category_id\": \"13001003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Bar\",\n        \"Hotel Lounge\"\n      ]\n    },\n    {\n      \"category_id\": \"13002000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Breweries\"\n      ]\n    },\n    {\n      \"category_id\": \"13003000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Internet Cafes\"\n      ]\n    },\n    {\n      \"category_id\": \"13004000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Nightlife\"\n      ]\n    },\n    {\n      \"category_id\": \"13004001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Nightlife\",\n        \"Strip Club\"\n      ]\n    },\n    {\n      \"category_id\": \"13004002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Nightlife\",\n        \"Night Clubs\"\n      ]\n    },\n    {\n      \"category_id\": \"13004003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Nightlife\",\n        \"Karaoke\"\n      ]\n    },\n    {\n      \"category_id\": \"13004004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Nightlife\",\n        \"Jazz and Blues Cafe\"\n      ]\n    },\n    {\n      \"category_id\": \"13004005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Nightlife\",\n        \"Hookah Lounges\"\n      ]\n    },\n    {\n      \"category_id\": \"13004006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Nightlife\",\n        \"Adult Entertainment\"\n      ]\n    },\n    {\n      \"category_id\": \"13005000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\"\n      ]\n    },\n    {\n      \"category_id\": \"13005001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Winery\"\n      ]\n    },\n    {\n      \"category_id\": \"13005002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Vegan and Vegetarian\"\n      ]\n    },\n    {\n      \"category_id\": \"13005003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Turkish\"\n      ]\n    },\n    {\n      \"category_id\": \"13005004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Thai\"\n      ]\n    },\n    {\n      \"category_id\": \"13005005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Swiss\"\n      ]\n    },\n    {\n      \"category_id\": \"13005006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Sushi\"\n      ]\n    },\n    {\n      \"category_id\": \"13005007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Steakhouses\"\n      ]\n    },\n    {\n      \"category_id\": \"13005008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Spanish\"\n      ]\n    },\n    {\n      \"category_id\": \"13005009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Seafood\"\n      ]\n    },\n    {\n      \"category_id\": \"13005010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Scandinavian\"\n      ]\n    },\n    {\n      \"category_id\": \"13005011\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Portuguese\"\n      ]\n    },\n    {\n      \"category_id\": \"13005012\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Pizza\"\n      ]\n    },\n    {\n      \"category_id\": \"13005013\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Moroccan\"\n      ]\n    },\n    {\n      \"category_id\": \"13005014\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Middle Eastern\"\n      ]\n    },\n    {\n      \"category_id\": \"13005015\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Mexican\"\n      ]\n    },\n    {\n      \"category_id\": \"13005016\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Mediterranean\"\n      ]\n    },\n    {\n      \"category_id\": \"13005017\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Latin American\"\n      ]\n    },\n    {\n      \"category_id\": \"13005018\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Korean\"\n      ]\n    },\n    {\n      \"category_id\": \"13005019\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Juice Bar\"\n      ]\n    },\n    {\n      \"category_id\": \"13005020\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Japanese\"\n      ]\n    },\n    {\n      \"category_id\": \"13005021\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Italian\"\n      ]\n    },\n    {\n      \"category_id\": \"13005022\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Indonesian\"\n      ]\n    },\n    {\n      \"category_id\": \"13005023\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Indian\"\n      ]\n    },\n    {\n      \"category_id\": \"13005024\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Ice Cream\"\n      ]\n    },\n    {\n      \"category_id\": \"13005025\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Greek\"\n      ]\n    },\n    {\n      \"category_id\": \"13005026\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"German\"\n      ]\n    },\n    {\n      \"category_id\": \"13005027\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Gastropub\"\n      ]\n    },\n    {\n      \"category_id\": \"13005028\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"French\"\n      ]\n    },\n    {\n      \"category_id\": \"13005029\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Food Truck\"\n      ]\n    },\n    {\n      \"category_id\": \"13005030\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Fish and Chips\"\n      ]\n    },\n    {\n      \"category_id\": \"13005031\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Filipino\"\n      ]\n    },\n    {\n      \"category_id\": \"13005032\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Fast Food\"\n      ]\n    },\n    {\n      \"category_id\": \"13005033\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Falafel\"\n      ]\n    },\n    {\n      \"category_id\": \"13005034\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Ethiopian\"\n      ]\n    },\n    {\n      \"category_id\": \"13005035\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Eastern European\"\n      ]\n    },\n    {\n      \"category_id\": \"13005036\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Donuts\"\n      ]\n    },\n    {\n      \"category_id\": \"13005037\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Distillery\"\n      ]\n    },\n    {\n      \"category_id\": \"13005038\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Diners\"\n      ]\n    },\n    {\n      \"category_id\": \"13005039\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Dessert\"\n      ]\n    },\n    {\n      \"category_id\": \"13005040\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Delis\"\n      ]\n    },\n    {\n      \"category_id\": \"13005041\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Cupcake Shop\"\n      ]\n    },\n    {\n      \"category_id\": \"13005042\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Cuban\"\n      ]\n    },\n    {\n      \"category_id\": \"13005043\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Coffee Shop\"\n      ]\n    },\n    {\n      \"category_id\": \"13005044\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Chinese\"\n      ]\n    },\n    {\n      \"category_id\": \"13005045\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Caribbean\"\n      ]\n    },\n    {\n      \"category_id\": \"13005046\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Cajun\"\n      ]\n    },\n    {\n      \"category_id\": \"13005047\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Cafe\"\n      ]\n    },\n    {\n      \"category_id\": \"13005048\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Burrito\"\n      ]\n    },\n    {\n      \"category_id\": \"13005049\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Burgers\"\n      ]\n    },\n    {\n      \"category_id\": \"13005050\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Breakfast Spot\"\n      ]\n    },\n    {\n      \"category_id\": \"13005051\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Brazilian\"\n      ]\n    },\n    {\n      \"category_id\": \"13005052\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Barbecue\"\n      ]\n    },\n    {\n      \"category_id\": \"13005053\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Bakery\"\n      ]\n    },\n    {\n      \"category_id\": \"13005054\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Bagel Shop\"\n      ]\n    },\n    {\n      \"category_id\": \"13005055\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Australian\"\n      ]\n    },\n    {\n      \"category_id\": \"13005056\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Asian\"\n      ]\n    },\n    {\n      \"category_id\": \"13005057\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"American\"\n      ]\n    },\n    {\n      \"category_id\": \"13005058\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"African\"\n      ]\n    },\n    {\n      \"category_id\": \"13005059\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Food and Drink\",\n        \"Restaurants\",\n        \"Afghan\"\n      ]\n    },\n    {\n      \"category_id\": \"14000000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\"\n      ]\n    },\n    {\n      \"category_id\": \"14001000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\"\n      ]\n    },\n    {\n      \"category_id\": \"14001001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Psychologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14001002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Pregnancy and Sexual Health\"\n      ]\n    },\n    {\n      \"category_id\": \"14001003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Podiatrists\"\n      ]\n    },\n    {\n      \"category_id\": \"14001004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Physical Therapy\"\n      ]\n    },\n    {\n      \"category_id\": \"14001005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Optometrists\"\n      ]\n    },\n    {\n      \"category_id\": \"14001006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Nutritionists\"\n      ]\n    },\n    {\n      \"category_id\": \"14001007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Nurses\"\n      ]\n    },\n    {\n      \"category_id\": \"14001008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Mental Health\"\n      ]\n    },\n    {\n      \"category_id\": \"14001009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Medical Supplies and Labs\"\n      ]\n    },\n    {\n      \"category_id\": \"14001010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Hospitals, Clinics and Medical Centers\"\n      ]\n    },\n    {\n      \"category_id\": \"14001011\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Emergency Services\"\n      ]\n    },\n    {\n      \"category_id\": \"14001012\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Dentists\"\n      ]\n    },\n    {\n      \"category_id\": \"14001013\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Counseling and Therapy\"\n      ]\n    },\n    {\n      \"category_id\": \"14001014\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Chiropractors\"\n      ]\n    },\n    {\n      \"category_id\": \"14001015\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Blood Banks and Centers\"\n      ]\n    },\n    {\n      \"category_id\": \"14001016\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Alternative Medicine\"\n      ]\n    },\n    {\n      \"category_id\": \"14001017\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Healthcare Services\",\n        \"Acupuncture\"\n      ]\n    },\n    {\n      \"category_id\": \"14002000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\"\n      ]\n    },\n    {\n      \"category_id\": \"14002001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Urologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Respiratory\"\n      ]\n    },\n    {\n      \"category_id\": \"14002003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Radiologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Psychiatrists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Plastic Surgeons\"\n      ]\n    },\n    {\n      \"category_id\": \"14002006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Pediatricians\"\n      ]\n    },\n    {\n      \"category_id\": \"14002007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Pathologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Orthopedic Surgeons\"\n      ]\n    },\n    {\n      \"category_id\": \"14002009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Ophthalmologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Oncologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002011\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Obstetricians and Gynecologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002012\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Neurologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002013\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Internal Medicine\"\n      ]\n    },\n    {\n      \"category_id\": \"14002014\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"General Surgery\"\n      ]\n    },\n    {\n      \"category_id\": \"14002015\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Gastroenterologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002016\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Family Medicine\"\n      ]\n    },\n    {\n      \"category_id\": \"14002017\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Ear, Nose and Throat\"\n      ]\n    },\n    {\n      \"category_id\": \"14002018\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Dermatologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002019\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Cardiologists\"\n      ]\n    },\n    {\n      \"category_id\": \"14002020\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Healthcare\",\n        \"Physicians\",\n        \"Anesthesiologists\"\n      ]\n    },\n    {\n      \"category_id\": \"15000000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Interest\"\n      ]\n    },\n    {\n      \"category_id\": \"15001000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Interest\",\n        \"Interest Earned\"\n      ]\n    },\n    {\n      \"category_id\": \"15002000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Interest\",\n        \"Interest Charged\"\n      ]\n    },\n    {\n      \"category_id\": \"16000000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Payment\"\n      ]\n    },\n    {\n      \"category_id\": \"16001000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Payment\",\n        \"Credit Card\"\n      ]\n    },\n    {\n      \"category_id\": \"16002000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Payment\",\n        \"Rent\"\n      ]\n    },\n    {\n      \"category_id\": \"16003000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Payment\",\n        \"Loan\"\n      ]\n    },\n    {\n      \"category_id\": \"17000000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\"\n      ]\n    },\n    {\n      \"category_id\": \"17001000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\"\n      ]\n    },\n    {\n      \"category_id\": \"17001001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Theatrical Productions\"\n      ]\n    },\n    {\n      \"category_id\": \"17001002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Symphony and Opera\"\n      ]\n    },\n    {\n      \"category_id\": \"17001003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Sports Venues\"\n      ]\n    },\n    {\n      \"category_id\": \"17001004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Social Clubs\"\n      ]\n    },\n    {\n      \"category_id\": \"17001005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Psychics and Astrologers\"\n      ]\n    },\n    {\n      \"category_id\": \"17001006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Party Centers\"\n      ]\n    },\n    {\n      \"category_id\": \"17001007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Music and Show Venues\"\n      ]\n    },\n    {\n      \"category_id\": \"17001008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Museums\"\n      ]\n    },\n    {\n      \"category_id\": \"17001009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Movie Theatres\"\n      ]\n    },\n    {\n      \"category_id\": \"17001010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Fairgrounds and Rodeos\"\n      ]\n    },\n    {\n      \"category_id\": \"17001011\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Entertainment\"\n      ]\n    },\n    {\n      \"category_id\": \"17001012\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Dance Halls and Saloons\"\n      ]\n    },\n    {\n      \"category_id\": \"17001013\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Circuses and Carnivals\"\n      ]\n    },\n    {\n      \"category_id\": \"17001014\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Casinos and Gaming\"\n      ]\n    },\n    {\n      \"category_id\": \"17001015\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Bowling\"\n      ]\n    },\n    {\n      \"category_id\": \"17001016\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Billiards and Pool\"\n      ]\n    },\n    {\n      \"category_id\": \"17001017\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Art Dealers and Galleries\"\n      ]\n    },\n    {\n      \"category_id\": \"17001018\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Arcades and Amusement Parks\"\n      ]\n    },\n    {\n      \"category_id\": \"17001019\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Arts and Entertainment\",\n        \"Aquarium\"\n      ]\n    },\n    {\n      \"category_id\": \"17002000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Athletic Fields\"\n      ]\n    },\n    {\n      \"category_id\": \"17003000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Baseball\"\n      ]\n    },\n    {\n      \"category_id\": \"17004000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Basketball\"\n      ]\n    },\n    {\n      \"category_id\": \"17005000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Batting Cages\"\n      ]\n    },\n    {\n      \"category_id\": \"17006000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Boating\"\n      ]\n    },\n    {\n      \"category_id\": \"17007000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Campgrounds and RV Parks\"\n      ]\n    },\n    {\n      \"category_id\": \"17008000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Canoes and Kayaks\"\n      ]\n    },\n    {\n      \"category_id\": \"17009000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Combat Sports\"\n      ]\n    },\n    {\n      \"category_id\": \"17010000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Cycling\"\n      ]\n    },\n    {\n      \"category_id\": \"17011000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Dance\"\n      ]\n    },\n    {\n      \"category_id\": \"17012000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Equestrian\"\n      ]\n    },\n    {\n      \"category_id\": \"17013000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Football\"\n      ]\n    },\n    {\n      \"category_id\": \"17014000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Go Carts\"\n      ]\n    },\n    {\n      \"category_id\": \"17015000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Golf\"\n      ]\n    },\n    {\n      \"category_id\": \"17016000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Gun Ranges\"\n      ]\n    },\n    {\n      \"category_id\": \"17017000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Gymnastics\"\n      ]\n    },\n    {\n      \"category_id\": \"17018000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Gyms and Fitness Centers\"\n      ]\n    },\n    {\n      \"category_id\": \"17019000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Hiking\"\n      ]\n    },\n    {\n      \"category_id\": \"17020000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Hockey\"\n      ]\n    },\n    {\n      \"category_id\": \"17021000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Hot Air Balloons\"\n      ]\n    },\n    {\n      \"category_id\": \"17022000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Hunting and Fishing\"\n      ]\n    },\n    {\n      \"category_id\": \"17023000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Landmarks\"\n      ]\n    },\n    {\n      \"category_id\": \"17023001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Landmarks\",\n        \"Monuments and Memorials\"\n      ]\n    },\n    {\n      \"category_id\": \"17023002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Landmarks\",\n        \"Historic Sites\"\n      ]\n    },\n    {\n      \"category_id\": \"17023003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Landmarks\",\n        \"Gardens\"\n      ]\n    },\n    {\n      \"category_id\": \"17023004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Landmarks\",\n        \"Buildings and Structures\"\n      ]\n    },\n    {\n      \"category_id\": \"17024000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Miniature Golf\"\n      ]\n    },\n    {\n      \"category_id\": \"17025000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Outdoors\"\n      ]\n    },\n    {\n      \"category_id\": \"17025001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Outdoors\",\n        \"Rivers\"\n      ]\n    },\n    {\n      \"category_id\": \"17025002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Outdoors\",\n        \"Mountains\"\n      ]\n    },\n    {\n      \"category_id\": \"17025003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Outdoors\",\n        \"Lakes\"\n      ]\n    },\n    {\n      \"category_id\": \"17025004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Outdoors\",\n        \"Forests\"\n      ]\n    },\n    {\n      \"category_id\": \"17025005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Outdoors\",\n        \"Beaches\"\n      ]\n    },\n    {\n      \"category_id\": \"17026000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Paintball\"\n      ]\n    },\n    {\n      \"category_id\": \"17027000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Parks\"\n      ]\n    },\n    {\n      \"category_id\": \"17027001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Parks\",\n        \"Playgrounds\"\n      ]\n    },\n    {\n      \"category_id\": \"17027002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Parks\",\n        \"Picnic Areas\"\n      ]\n    },\n    {\n      \"category_id\": \"17027003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Parks\",\n        \"Natural Parks\"\n      ]\n    },\n    {\n      \"category_id\": \"17028000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Personal Trainers\"\n      ]\n    },\n    {\n      \"category_id\": \"17029000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Race Tracks\"\n      ]\n    },\n    {\n      \"category_id\": \"17030000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Racquet Sports\"\n      ]\n    },\n    {\n      \"category_id\": \"17031000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Racquetball\"\n      ]\n    },\n    {\n      \"category_id\": \"17032000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Rafting\"\n      ]\n    },\n    {\n      \"category_id\": \"17033000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Recreation Centers\"\n      ]\n    },\n    {\n      \"category_id\": \"17034000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Rock Climbing\"\n      ]\n    },\n    {\n      \"category_id\": \"17035000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Running\"\n      ]\n    },\n    {\n      \"category_id\": \"17036000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Scuba Diving\"\n      ]\n    },\n    {\n      \"category_id\": \"17037000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Skating\"\n      ]\n    },\n    {\n      \"category_id\": \"17038000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Skydiving\"\n      ]\n    },\n    {\n      \"category_id\": \"17039000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Snow Sports\"\n      ]\n    },\n    {\n      \"category_id\": \"17040000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Soccer\"\n      ]\n    },\n    {\n      \"category_id\": \"17041000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Sports and Recreation Camps\"\n      ]\n    },\n    {\n      \"category_id\": \"17042000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Sports Clubs\"\n      ]\n    },\n    {\n      \"category_id\": \"17043000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Stadiums and Arenas\"\n      ]\n    },\n    {\n      \"category_id\": \"17044000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Swimming\"\n      ]\n    },\n    {\n      \"category_id\": \"17045000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Tennis\"\n      ]\n    },\n    {\n      \"category_id\": \"17046000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Water Sports\"\n      ]\n    },\n    {\n      \"category_id\": \"17047000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Yoga and Pilates\"\n      ]\n    },\n    {\n      \"category_id\": \"17048000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Recreation\",\n        \"Zoo\"\n      ]\n    },\n    {\n      \"category_id\": \"18000000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\"\n      ]\n    },\n    {\n      \"category_id\": \"18001000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\"\n      ]\n    },\n    {\n      \"category_id\": \"18001001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\",\n        \"Writing, Copywriting and Technical Writing\"\n      ]\n    },\n    {\n      \"category_id\": \"18001002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\",\n        \"Search Engine Marketing and Optimization\"\n      ]\n    },\n    {\n      \"category_id\": \"18001003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\",\n        \"Public Relations\"\n      ]\n    },\n    {\n      \"category_id\": \"18001004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\",\n        \"Promotional Items\"\n      ]\n    },\n    {\n      \"category_id\": \"18001005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\",\n        \"Print, TV, Radio and Outdoor Advertising\"\n      ]\n    },\n    {\n      \"category_id\": \"18001006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\",\n        \"Online Advertising\"\n      ]\n    },\n    {\n      \"category_id\": \"18001007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\",\n        \"Market Research and Consulting\"\n      ]\n    },\n    {\n      \"category_id\": \"18001008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\",\n        \"Direct Mail and Email Marketing Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18001009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\",\n        \"Creative Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18001010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Advertising and Marketing\",\n        \"Advertising Agencies and Media Buyers\"\n      ]\n    },\n    {\n      \"category_id\": \"18003000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Art Restoration\"\n      ]\n    },\n    {\n      \"category_id\": \"18004000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Audiovisual\"\n      ]\n    },\n    {\n      \"category_id\": \"18005000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automation and Control Systems\"\n      ]\n    },\n    {\n      \"category_id\": \"18006000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automotive\"\n      ]\n    },\n    {\n      \"category_id\": \"18006001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automotive\",\n        \"Towing\"\n      ]\n    },\n    {\n      \"category_id\": \"18006002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automotive\",\n        \"Motorcycle, Moped and Scooter Repair\"\n      ]\n    },\n    {\n      \"category_id\": \"18006003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automotive\",\n        \"Maintenance and Repair\"\n      ]\n    },\n    {\n      \"category_id\": \"18006004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automotive\",\n        \"Car Wash and Detail\"\n      ]\n    },\n    {\n      \"category_id\": \"18006005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automotive\",\n        \"Car Appraisers\"\n      ]\n    },\n    {\n      \"category_id\": \"18006006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automotive\",\n        \"Auto Transmission\"\n      ]\n    },\n    {\n      \"category_id\": \"18006007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automotive\",\n        \"Auto Tires\"\n      ]\n    },\n    {\n      \"category_id\": \"18006008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automotive\",\n        \"Auto Smog Check\"\n      ]\n    },\n    {\n      \"category_id\": \"18006009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Automotive\",\n        \"Auto Oil and Lube\"\n      ]\n    },\n    {\n      \"category_id\": \"18007000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Business and Strategy Consulting\"\n      ]\n    },\n    {\n      \"category_id\": \"18008000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Business Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18008001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Business Services\",\n        \"Printing and Publishing\"\n      ]\n    },\n    {\n      \"category_id\": \"18009000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Cable\"\n      ]\n    },\n    {\n      \"category_id\": \"18010000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Chemicals and Gasses\"\n      ]\n    },\n    {\n      \"category_id\": \"18011000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Cleaning\"\n      ]\n    },\n    {\n      \"category_id\": \"18012000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Computers\"\n      ]\n    },\n    {\n      \"category_id\": \"18012001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Computers\",\n        \"Maintenance and Repair\"\n      ]\n    },\n    {\n      \"category_id\": \"18012002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Computers\",\n        \"Software Development\"\n      ]\n    },\n    {\n      \"category_id\": \"18013000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\"\n      ]\n    },\n    {\n      \"category_id\": \"18013001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\",\n        \"Specialty\"\n      ]\n    },\n    {\n      \"category_id\": \"18013002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\",\n        \"Roofers\"\n      ]\n    },\n    {\n      \"category_id\": \"18013003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\",\n        \"Painting\"\n      ]\n    },\n    {\n      \"category_id\": \"18013004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\",\n        \"Masonry\"\n      ]\n    },\n    {\n      \"category_id\": \"18013005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\",\n        \"Infrastructure\"\n      ]\n    },\n    {\n      \"category_id\": \"18013006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\",\n        \"Heating, Ventilating and Air Conditioning\"\n      ]\n    },\n    {\n      \"category_id\": \"18013007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\",\n        \"Electricians\"\n      ]\n    },\n    {\n      \"category_id\": \"18013008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\",\n        \"Contractors\"\n      ]\n    },\n    {\n      \"category_id\": \"18013009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\",\n        \"Carpet and Flooring\"\n      ]\n    },\n    {\n      \"category_id\": \"18013010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Construction\",\n        \"Carpenters\"\n      ]\n    },\n    {\n      \"category_id\": \"18014000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Credit Counseling and Bankruptcy Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18015000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Dating and Escort\"\n      ]\n    },\n    {\n      \"category_id\": \"18016000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Employment Agencies\"\n      ]\n    },\n    {\n      \"category_id\": \"18017000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Engineering\"\n      ]\n    },\n    {\n      \"category_id\": \"18018000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Entertainment\"\n      ]\n    },\n    {\n      \"category_id\": \"18018001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Entertainment\",\n        \"Media\"\n      ]\n    },\n    {\n      \"category_id\": \"18019000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Events and Event Planning\"\n      ]\n    },\n    {\n      \"category_id\": \"18020000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\"\n      ]\n    },\n    {\n      \"category_id\": \"18020001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Taxes\"\n      ]\n    },\n    {\n      \"category_id\": \"18020002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Student Aid and Grants\"\n      ]\n    },\n    {\n      \"category_id\": \"18020003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Stock Brokers\"\n      ]\n    },\n    {\n      \"category_id\": \"18020004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Loans and Mortgages\"\n      ]\n    },\n    {\n      \"category_id\": \"18020005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Holding and Investment Offices\"\n      ]\n    },\n    {\n      \"category_id\": \"18020006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Fund Raising\"\n      ]\n    },\n    {\n      \"category_id\": \"18020007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Financial Planning and Investments\"\n      ]\n    },\n    {\n      \"category_id\": \"18020008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Credit Reporting\"\n      ]\n    },\n    {\n      \"category_id\": \"18020009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Collections\"\n      ]\n    },\n    {\n      \"category_id\": \"18020010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Check Cashing\"\n      ]\n    },\n    {\n      \"category_id\": \"18020011\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Business Brokers and Franchises\"\n      ]\n    },\n    {\n      \"category_id\": \"18020012\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Banking and Finance\"\n      ]\n    },\n    {\n      \"category_id\": \"18020013\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"ATMs\"\n      ]\n    },\n    {\n      \"category_id\": \"18020014\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Financial\",\n        \"Accounting and Bookkeeping\"\n      ]\n    },\n    {\n      \"category_id\": \"18021000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Food and Beverage\"\n      ]\n    },\n    {\n      \"category_id\": \"18021001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Food and Beverage\",\n        \"Distribution\"\n      ]\n    },\n    {\n      \"category_id\": \"18021002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Food and Beverage\",\n        \"Catering\"\n      ]\n    },\n    {\n      \"category_id\": \"18022000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Funeral Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18023000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Geological\"\n      ]\n    },\n    {\n      \"category_id\": \"18024000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\"\n      ]\n    },\n    {\n      \"category_id\": \"18024001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Upholstery\"\n      ]\n    },\n    {\n      \"category_id\": \"18024002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Tree Service\"\n      ]\n    },\n    {\n      \"category_id\": \"18024003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Swimming Pool Maintenance and Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18024004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Storage\"\n      ]\n    },\n    {\n      \"category_id\": \"18024005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Roofers\"\n      ]\n    },\n    {\n      \"category_id\": \"18024006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Pools and Spas\"\n      ]\n    },\n    {\n      \"category_id\": \"18024007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Plumbing\"\n      ]\n    },\n    {\n      \"category_id\": \"18024008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Pest Control\"\n      ]\n    },\n    {\n      \"category_id\": \"18024009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Painting\"\n      ]\n    },\n    {\n      \"category_id\": \"18024010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Movers\"\n      ]\n    },\n    {\n      \"category_id\": \"18024011\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Mobile Homes\"\n      ]\n    },\n    {\n      \"category_id\": \"18024012\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Lighting Fixtures\"\n      ]\n    },\n    {\n      \"category_id\": \"18024013\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Landscaping and Gardeners\"\n      ]\n    },\n    {\n      \"category_id\": \"18024014\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Kitchens\"\n      ]\n    },\n    {\n      \"category_id\": \"18024015\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Interior Design\"\n      ]\n    },\n    {\n      \"category_id\": \"18024016\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Housewares\"\n      ]\n    },\n    {\n      \"category_id\": \"18024017\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Home Inspection Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18024018\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Home Appliances\"\n      ]\n    },\n    {\n      \"category_id\": \"18024019\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Heating, Ventilation and Air Conditioning\"\n      ]\n    },\n    {\n      \"category_id\": \"18024020\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Hardware and Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18024021\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Fences, Fireplaces and Garage Doors\"\n      ]\n    },\n    {\n      \"category_id\": \"18024022\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Electricians\"\n      ]\n    },\n    {\n      \"category_id\": \"18024023\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Doors and Windows\"\n      ]\n    },\n    {\n      \"category_id\": \"18024024\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Contractors\"\n      ]\n    },\n    {\n      \"category_id\": \"18024025\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Carpet and Flooring\"\n      ]\n    },\n    {\n      \"category_id\": \"18024026\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Carpenters\"\n      ]\n    },\n    {\n      \"category_id\": \"18024027\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Home Improvement\",\n        \"Architects\"\n      ]\n    },\n    {\n      \"category_id\": \"18025000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Household\"\n      ]\n    },\n    {\n      \"category_id\": \"18026000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Human Resources\"\n      ]\n    },\n    {\n      \"category_id\": \"18027000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Immigration\"\n      ]\n    },\n    {\n      \"category_id\": \"18028000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Import and Export\"\n      ]\n    },\n    {\n      \"category_id\": \"18029000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Industrial Machinery and Vehicles\"\n      ]\n    },\n    {\n      \"category_id\": \"18030000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Insurance\"\n      ]\n    },\n    {\n      \"category_id\": \"18031000\",\n      \"group\": \"digital\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Internet Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18032000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Leather\"\n      ]\n    },\n    {\n      \"category_id\": \"18033000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Legal\"\n      ]\n    },\n    {\n      \"category_id\": \"18034000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Logging and Sawmills\"\n      ]\n    },\n    {\n      \"category_id\": \"18035000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Machine Shops\"\n      ]\n    },\n    {\n      \"category_id\": \"18036000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Management\"\n      ]\n    },\n    {\n      \"category_id\": \"18037000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\"\n      ]\n    },\n    {\n      \"category_id\": \"18037001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Apparel and Fabric Products\"\n      ]\n    },\n    {\n      \"category_id\": \"18037002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Chemicals and Gasses\"\n      ]\n    },\n    {\n      \"category_id\": \"18037003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Computers and Office Machines\"\n      ]\n    },\n    {\n      \"category_id\": \"18037004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Electrical Equipment and Components\"\n      ]\n    },\n    {\n      \"category_id\": \"18037005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Food and Beverage\"\n      ]\n    },\n    {\n      \"category_id\": \"18037006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Furniture and Fixtures\"\n      ]\n    },\n    {\n      \"category_id\": \"18037007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Glass Products\"\n      ]\n    },\n    {\n      \"category_id\": \"18037008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Industrial Machinery and Equipment\"\n      ]\n    },\n    {\n      \"category_id\": \"18037009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Leather Goods\"\n      ]\n    },\n    {\n      \"category_id\": \"18037010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Metal Products\"\n      ]\n    },\n    {\n      \"category_id\": \"18037011\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Nonmetallic Mineral Products\"\n      ]\n    },\n    {\n      \"category_id\": \"18037012\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Paper Products\"\n      ]\n    },\n    {\n      \"category_id\": \"18037013\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Petroleum\"\n      ]\n    },\n    {\n      \"category_id\": \"18037014\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Plastic Products\"\n      ]\n    },\n    {\n      \"category_id\": \"18037015\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Rubber Products\"\n      ]\n    },\n    {\n      \"category_id\": \"18037016\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Service Instruments\"\n      ]\n    },\n    {\n      \"category_id\": \"18037017\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Textiles\"\n      ]\n    },\n    {\n      \"category_id\": \"18037018\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Tobacco\"\n      ]\n    },\n    {\n      \"category_id\": \"18037019\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Transportation Equipment\"\n      ]\n    },\n    {\n      \"category_id\": \"18037020\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Manufacturing\",\n        \"Wood Products\"\n      ]\n    },\n    {\n      \"category_id\": \"18038000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Media Production\"\n      ]\n    },\n    {\n      \"category_id\": \"18039000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Metals\"\n      ]\n    },\n    {\n      \"category_id\": \"18040000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Mining\"\n      ]\n    },\n    {\n      \"category_id\": \"18040001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Mining\",\n        \"Coal\"\n      ]\n    },\n    {\n      \"category_id\": \"18040002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Mining\",\n        \"Metal\"\n      ]\n    },\n    {\n      \"category_id\": \"18040003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Mining\",\n        \"Non-Metallic Minerals\"\n      ]\n    },\n    {\n      \"category_id\": \"18041000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"News Reporting\"\n      ]\n    },\n    {\n      \"category_id\": \"18042000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Oil and Gas\"\n      ]\n    },\n    {\n      \"category_id\": \"18043000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Packaging\"\n      ]\n    },\n    {\n      \"category_id\": \"18044000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Paper\"\n      ]\n    },\n    {\n      \"category_id\": \"18045000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\"\n      ]\n    },\n    {\n      \"category_id\": \"18045001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\",\n        \"Tattooing\"\n      ]\n    },\n    {\n      \"category_id\": \"18045002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\",\n        \"Tanning Salons\"\n      ]\n    },\n    {\n      \"category_id\": \"18045003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\",\n        \"Spas\"\n      ]\n    },\n    {\n      \"category_id\": \"18045004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\",\n        \"Skin Care\"\n      ]\n    },\n    {\n      \"category_id\": \"18045005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\",\n        \"Piercing\"\n      ]\n    },\n    {\n      \"category_id\": \"18045006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\",\n        \"Massage Clinics and Therapists\"\n      ]\n    },\n    {\n      \"category_id\": \"18045007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\",\n        \"Manicures and Pedicures\"\n      ]\n    },\n    {\n      \"category_id\": \"18045008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\",\n        \"Laundry and Garment Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18045009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\",\n        \"Hair Salons and Barbers\"\n      ]\n    },\n    {\n      \"category_id\": \"18045010\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Personal Care\",\n        \"Hair Removal\"\n      ]\n    },\n    {\n      \"category_id\": \"18046000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Petroleum\"\n      ]\n    },\n    {\n      \"category_id\": \"18047000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Photography\"\n      ]\n    },\n    {\n      \"category_id\": \"18048000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Plastics\"\n      ]\n    },\n    {\n      \"category_id\": \"18049000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Rail\"\n      ]\n    },\n    {\n      \"category_id\": \"18050000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\"\n      ]\n    },\n    {\n      \"category_id\": \"18050001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\",\n        \"Real Estate Development and Title Companies\"\n      ]\n    },\n    {\n      \"category_id\": \"18050002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\",\n        \"Real Estate Appraiser\"\n      ]\n    },\n    {\n      \"category_id\": \"18050003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\",\n        \"Real Estate Agents\"\n      ]\n    },\n    {\n      \"category_id\": \"18050004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\",\n        \"Property Management\"\n      ]\n    },\n    {\n      \"category_id\": \"18050005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\",\n        \"Corporate Housing\"\n      ]\n    },\n    {\n      \"category_id\": \"18050006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\",\n        \"Commercial Real Estate\"\n      ]\n    },\n    {\n      \"category_id\": \"18050007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\",\n        \"Building and Land Surveyors\"\n      ]\n    },\n    {\n      \"category_id\": \"18050008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\",\n        \"Boarding Houses\"\n      ]\n    },\n    {\n      \"category_id\": \"18050009\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\",\n        \"Apartments, Condos and Houses\"\n      ]\n    },\n    {\n      \"category_id\": \"18050010\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Real Estate\",\n        \"Rent\"\n      ]\n    },\n    {\n      \"category_id\": \"18051000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Refrigeration and Ice\"\n      ]\n    },\n    {\n      \"category_id\": \"18052000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Renewable Energy\"\n      ]\n    },\n    {\n      \"category_id\": \"18053000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Repair Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18054000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Research\"\n      ]\n    },\n    {\n      \"category_id\": \"18055000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Rubber\"\n      ]\n    },\n    {\n      \"category_id\": \"18056000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Scientific\"\n      ]\n    },\n    {\n      \"category_id\": \"18057000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Security and Safety\"\n      ]\n    },\n    {\n      \"category_id\": \"18058000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Shipping and Freight\"\n      ]\n    },\n    {\n      \"category_id\": \"18059000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Software Development\"\n      ]\n    },\n    {\n      \"category_id\": \"18060000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Storage\"\n      ]\n    },\n    {\n      \"category_id\": \"18061000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Subscription\"\n      ]\n    },\n    {\n      \"category_id\": \"18062000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Tailors\"\n      ]\n    },\n    {\n      \"category_id\": \"18063000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Telecommunication Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18064000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Textiles\"\n      ]\n    },\n    {\n      \"category_id\": \"18065000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Tourist Information and Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18066000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Transportation\"\n      ]\n    },\n    {\n      \"category_id\": \"18067000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Travel Agents and Tour Operators\"\n      ]\n    },\n    {\n      \"category_id\": \"18068000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Utilities\"\n      ]\n    },\n    {\n      \"category_id\": \"18068001\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Utilities\",\n        \"Water\"\n      ]\n    },\n    {\n      \"category_id\": \"18068002\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Utilities\",\n        \"Sanitary and Waste Management\"\n      ]\n    },\n    {\n      \"category_id\": \"18068003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Utilities\",\n        \"Heating, Ventilating, and Air Conditioning\"\n      ]\n    },\n    {\n      \"category_id\": \"18068004\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Utilities\",\n        \"Gas\"\n      ]\n    },\n    {\n      \"category_id\": \"18068005\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Utilities\",\n        \"Electric\"\n      ]\n    },\n    {\n      \"category_id\": \"18069000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Veterinarians\"\n      ]\n    },\n    {\n      \"category_id\": \"18070000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Water and Waste Management\"\n      ]\n    },\n    {\n      \"category_id\": \"18071000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Web Design and Development\"\n      ]\n    },\n    {\n      \"category_id\": \"18072000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Welding\"\n      ]\n    },\n    {\n      \"category_id\": \"18073000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Agriculture and Forestry\"\n      ]\n    },\n    {\n      \"category_id\": \"18073001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Agriculture and Forestry\",\n        \"Crop Production\"\n      ]\n    },\n    {\n      \"category_id\": \"18073002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Agriculture and Forestry\",\n        \"Forestry\"\n      ]\n    },\n    {\n      \"category_id\": \"18073003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Agriculture and Forestry\",\n        \"Livestock and Animals\"\n      ]\n    },\n    {\n      \"category_id\": \"18073004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Agriculture and Forestry\",\n        \"Services\"\n      ]\n    },\n    {\n      \"category_id\": \"18074000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Service\",\n        \"Art and Graphic Design\"\n      ]\n    },\n    {\n      \"category_id\": \"19000000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\"\n      ]\n    },\n    {\n      \"category_id\": \"19001000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Adult\"\n      ]\n    },\n    {\n      \"category_id\": \"19002000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Antiques\"\n      ]\n    },\n    {\n      \"category_id\": \"19003000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Arts and Crafts\"\n      ]\n    },\n    {\n      \"category_id\": \"19004000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Auctions\"\n      ]\n    },\n    {\n      \"category_id\": \"19005000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Automotive\"\n      ]\n    },\n    {\n      \"category_id\": \"19005001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Automotive\",\n        \"Used Car Dealers\"\n      ]\n    },\n    {\n      \"category_id\": \"19005002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Automotive\",\n        \"Salvage Yards\"\n      ]\n    },\n    {\n      \"category_id\": \"19005003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Automotive\",\n        \"RVs and Motor Homes\"\n      ]\n    },\n    {\n      \"category_id\": \"19005004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Automotive\",\n        \"Motorcycles, Mopeds and Scooters\"\n      ]\n    },\n    {\n      \"category_id\": \"19005005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Automotive\",\n        \"Classic and Antique Car\"\n      ]\n    },\n    {\n      \"category_id\": \"19005006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Automotive\",\n        \"Car Parts and Accessories\"\n      ]\n    },\n    {\n      \"category_id\": \"19005007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Automotive\",\n        \"Car Dealers and Leasing\"\n      ]\n    },\n    {\n      \"category_id\": \"19006000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Beauty Products\"\n      ]\n    },\n    {\n      \"category_id\": \"19007000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Bicycles\"\n      ]\n    },\n    {\n      \"category_id\": \"19008000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Boat Dealers\"\n      ]\n    },\n    {\n      \"category_id\": \"19009000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Bookstores\"\n      ]\n    },\n    {\n      \"category_id\": \"19010000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Cards and Stationery\"\n      ]\n    },\n    {\n      \"category_id\": \"19011000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Children\"\n      ]\n    },\n    {\n      \"category_id\": \"19012000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Clothing and Accessories\"\n      ]\n    },\n    {\n      \"category_id\": \"19012001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Clothing and Accessories\",\n        \"Women's Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19012002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Clothing and Accessories\",\n        \"Swimwear\"\n      ]\n    },\n    {\n      \"category_id\": \"19012003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Clothing and Accessories\",\n        \"Shoe Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19012004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Clothing and Accessories\",\n        \"Men's Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19012005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Clothing and Accessories\",\n        \"Lingerie Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19012006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Clothing and Accessories\",\n        \"Kids' Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19012007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Clothing and Accessories\",\n        \"Boutique\"\n      ]\n    },\n    {\n      \"category_id\": \"19012008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Clothing and Accessories\",\n        \"Accessories Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19013000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Computers and Electronics\"\n      ]\n    },\n    {\n      \"category_id\": \"19013001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Computers and Electronics\",\n        \"Video Games\"\n      ]\n    },\n    {\n      \"category_id\": \"19013002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Computers and Electronics\",\n        \"Mobile Phones\"\n      ]\n    },\n    {\n      \"category_id\": \"19013003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Computers and Electronics\",\n        \"Cameras\"\n      ]\n    },\n    {\n      \"category_id\": \"19014000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Construction Supplies\"\n      ]\n    },\n    {\n      \"category_id\": \"19015000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Convenience Stores\"\n      ]\n    },\n    {\n      \"category_id\": \"19016000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Costumes\"\n      ]\n    },\n    {\n      \"category_id\": \"19017000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Dance and Music\"\n      ]\n    },\n    {\n      \"category_id\": \"19018000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Department Stores\"\n      ]\n    },\n    {\n      \"category_id\": \"19019000\",\n      \"group\": \"digital\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Digital Purchase\"\n      ]\n    },\n    {\n      \"category_id\": \"19020000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Discount Stores\"\n      ]\n    },\n    {\n      \"category_id\": \"19021000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Electrical Equipment\"\n      ]\n    },\n    {\n      \"category_id\": \"19022000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Equipment Rental\"\n      ]\n    },\n    {\n      \"category_id\": \"19023000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Flea Markets\"\n      ]\n    },\n    {\n      \"category_id\": \"19024000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Florists\"\n      ]\n    },\n    {\n      \"category_id\": \"19025000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Food and Beverage Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19025001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Food and Beverage Store\",\n        \"Specialty\"\n      ]\n    },\n    {\n      \"category_id\": \"19025002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Food and Beverage Store\",\n        \"Health Food\"\n      ]\n    },\n    {\n      \"category_id\": \"19025003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Food and Beverage Store\",\n        \"Farmers Markets\"\n      ]\n    },\n    {\n      \"category_id\": \"19025004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Food and Beverage Store\",\n        \"Beer, Wine and Spirits\"\n      ]\n    },\n    {\n      \"category_id\": \"19026000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Fuel Dealer\"\n      ]\n    },\n    {\n      \"category_id\": \"19027000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Furniture and Home Decor\"\n      ]\n    },\n    {\n      \"category_id\": \"19028000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Gift and Novelty\"\n      ]\n    },\n    {\n      \"category_id\": \"19029000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Glasses and Optometrist\"\n      ]\n    },\n    {\n      \"category_id\": \"19030000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Hardware Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19031000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Hobby and Collectibles\"\n      ]\n    },\n    {\n      \"category_id\": \"19032000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Industrial Supplies\"\n      ]\n    },\n    {\n      \"category_id\": \"19033000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Jewelry and Watches\"\n      ]\n    },\n    {\n      \"category_id\": \"19034000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Luggage\"\n      ]\n    },\n    {\n      \"category_id\": \"19035000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Marine Supplies\"\n      ]\n    },\n    {\n      \"category_id\": \"19036000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Music, Video and DVD\"\n      ]\n    },\n    {\n      \"category_id\": \"19037000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Musical Instruments\"\n      ]\n    },\n    {\n      \"category_id\": \"19038000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Newsstands\"\n      ]\n    },\n    {\n      \"category_id\": \"19039000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Office Supplies\"\n      ]\n    },\n    {\n      \"category_id\": \"19040000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Outlet\"\n      ]\n    },\n    {\n      \"category_id\": \"19040001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Outlet\",\n        \"Women's Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19040002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Outlet\",\n        \"Swimwear\"\n      ]\n    },\n    {\n      \"category_id\": \"19040003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Outlet\",\n        \"Shoe Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19040004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Outlet\",\n        \"Men's Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19040005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Outlet\",\n        \"Lingerie Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19040006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Outlet\",\n        \"Kids' Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19040007\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Outlet\",\n        \"Boutique\"\n      ]\n    },\n    {\n      \"category_id\": \"19040008\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Outlet\",\n        \"Accessories Store\"\n      ]\n    },\n    {\n      \"category_id\": \"19041000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Pawn Shops\"\n      ]\n    },\n    {\n      \"category_id\": \"19042000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Pets\"\n      ]\n    },\n    {\n      \"category_id\": \"19043000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Pharmacies\"\n      ]\n    },\n    {\n      \"category_id\": \"19044000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Photos and Frames\"\n      ]\n    },\n    {\n      \"category_id\": \"19045000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Shopping Centers and Malls\"\n      ]\n    },\n    {\n      \"category_id\": \"19046000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Sporting Goods\"\n      ]\n    },\n    {\n      \"category_id\": \"19047000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Supermarkets and Groceries\"\n      ]\n    },\n    {\n      \"category_id\": \"19048000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Tobacco\"\n      ]\n    },\n    {\n      \"category_id\": \"19049000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Toys\"\n      ]\n    },\n    {\n      \"category_id\": \"19050000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Vintage and Thrift\"\n      ]\n    },\n    {\n      \"category_id\": \"19051000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Warehouses and Wholesale Stores\"\n      ]\n    },\n    {\n      \"category_id\": \"19052000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Wedding and Bridal\"\n      ]\n    },\n    {\n      \"category_id\": \"19053000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Wholesale\"\n      ]\n    },\n    {\n      \"category_id\": \"19054000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Shops\",\n        \"Lawn and Garden\"\n      ]\n    },\n    {\n      \"category_id\": \"20000000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Tax\"\n      ]\n    },\n    {\n      \"category_id\": \"20001000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Tax\",\n        \"Refund\"\n      ]\n    },\n    {\n      \"category_id\": \"20002000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Tax\",\n        \"Payment\"\n      ]\n    },\n    {\n      \"category_id\": \"21000000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\"\n      ]\n    },\n    {\n      \"category_id\": \"21001000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Internal Account Transfer\"\n      ]\n    },\n    {\n      \"category_id\": \"21002000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"ACH\"\n      ]\n    },\n    {\n      \"category_id\": \"21003000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Billpay\"\n      ]\n    },\n    {\n      \"category_id\": \"21004000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Check\"\n      ]\n    },\n    {\n      \"category_id\": \"21005000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Credit\"\n      ]\n    },\n    {\n      \"category_id\": \"21006000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Debit\"\n      ]\n    },\n    {\n      \"category_id\": \"21007000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Deposit\"\n      ]\n    },\n    {\n      \"category_id\": \"21007001\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Deposit\",\n        \"Check\"\n      ]\n    },\n    {\n      \"category_id\": \"21007002\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Deposit\",\n        \"ATM\"\n      ]\n    },\n    {\n      \"category_id\": \"21008000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Keep the Change Savings Program\"\n      ]\n    },\n    {\n      \"category_id\": \"21009000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Payroll\"\n      ]\n    },\n    {\n      \"category_id\": \"21009001\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Payroll\",\n        \"Benefits\"\n      ]\n    },\n    {\n      \"category_id\": \"21010000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\"\n      ]\n    },\n    {\n      \"category_id\": \"21010001\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"Venmo\"\n      ]\n    },\n    {\n      \"category_id\": \"21010002\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"Square Cash\"\n      ]\n    },\n    {\n      \"category_id\": \"21010003\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"Square\"\n      ]\n    },\n    {\n      \"category_id\": \"21010004\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"PayPal\"\n      ]\n    },\n    {\n      \"category_id\": \"21010005\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"Dwolla\"\n      ]\n    },\n    {\n      \"category_id\": \"21010006\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"Coinbase\"\n      ]\n    },\n    {\n      \"category_id\": \"21010007\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"Chase QuickPay\"\n      ]\n    },\n    {\n      \"category_id\": \"21010008\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"Acorns\"\n      ]\n    },\n    {\n      \"category_id\": \"21010009\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"Digit\"\n      ]\n    },\n    {\n      \"category_id\": \"21010010\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"Betterment\"\n      ]\n    },\n    {\n      \"category_id\": \"21010011\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Third Party\",\n        \"Plaid\"\n      ]\n    },\n    {\n      \"category_id\": \"21011000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Wire\"\n      ]\n    },\n    {\n      \"category_id\": \"21012000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Withdrawal\"\n      ]\n    },\n    {\n      \"category_id\": \"21012001\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Withdrawal\",\n        \"Check\"\n      ]\n    },\n    {\n      \"category_id\": \"21012002\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Withdrawal\",\n        \"ATM\"\n      ]\n    },\n    {\n      \"category_id\": \"21013000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Transfer\",\n        \"Save As You Go\"\n      ]\n    },\n    {\n      \"category_id\": \"22000000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\"\n      ]\n    },\n    {\n      \"category_id\": \"22001000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Airlines and Aviation Services\"\n      ]\n    },\n    {\n      \"category_id\": \"22002000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Airports\"\n      ]\n    },\n    {\n      \"category_id\": \"22003000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Boat\"\n      ]\n    },\n    {\n      \"category_id\": \"22004000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Bus Stations\"\n      ]\n    },\n    {\n      \"category_id\": \"22005000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Car and Truck Rentals\"\n      ]\n    },\n    {\n      \"category_id\": \"22006000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Car Service\"\n      ]\n    },\n    {\n      \"category_id\": \"22006001\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Car Service\",\n        \"Ride Share\"\n      ]\n    },\n    {\n      \"category_id\": \"22007000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Charter Buses\"\n      ]\n    },\n    {\n      \"category_id\": \"22008000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Cruises\"\n      ]\n    },\n    {\n      \"category_id\": \"22009000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Gas Stations\"\n      ]\n    },\n    {\n      \"category_id\": \"22010000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Heliports\"\n      ]\n    },\n    {\n      \"category_id\": \"22011000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Limos and Chauffeurs\"\n      ]\n    },\n    {\n      \"category_id\": \"22012000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Lodging\"\n      ]\n    },\n    {\n      \"category_id\": \"22012001\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Lodging\",\n        \"Resorts\"\n      ]\n    },\n    {\n      \"category_id\": \"22012002\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Lodging\",\n        \"Lodges and Vacation Rentals\"\n      ]\n    },\n    {\n      \"category_id\": \"22012003\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Lodging\",\n        \"Hotels and Motels\"\n      ]\n    },\n    {\n      \"category_id\": \"22012004\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Lodging\",\n        \"Hostels\"\n      ]\n    },\n    {\n      \"category_id\": \"22012005\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Lodging\",\n        \"Cottages and Cabins\"\n      ]\n    },\n    {\n      \"category_id\": \"22012006\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Lodging\",\n        \"Bed and Breakfasts\"\n      ]\n    },\n    {\n      \"category_id\": \"22013000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Parking\"\n      ]\n    },\n    {\n      \"category_id\": \"22014000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Public Transportation Services\"\n      ]\n    },\n    {\n      \"category_id\": \"22015000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Rail\"\n      ]\n    },\n    {\n      \"category_id\": \"22016000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Taxi\"\n      ]\n    },\n    {\n      \"category_id\": \"22017000\",\n      \"group\": \"special\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Tolls and Fees\"\n      ]\n    },\n    {\n      \"category_id\": \"22018000\",\n      \"group\": \"place\",\n      \"hierarchy\": [\n        \"Travel\",\n        \"Transportation Centers\"\n      ]\n    }\n  ],\n  \"request_id\": \"bn8Uv\"\n}"
						}
					]
				}
			],
			"description": "Send a request to the `/categories/get` endpoint to get detailed information on categories returned by Plaid. This endpoint does not require authentication.",
			"protocolProfileBehavior": {}
		},
		{
			"name": "Webhooks",
			"item": [
				{
					"name": "Fire Webhook [Sandbox Only]",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"name": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"access_token\": \"ENTER_ACCESS_TOKEN_HERE\",\n\t\"webhook_code\": \"DEFAULT_UPDATE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/sandbox/item/fire_webhook",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"sandbox",
								"item",
								"fire_webhook"
							]
						},
						"description": "Fire sandbox webhook for item"
					},
					"response": []
				},
				{
					"name": "Get Webhook Verification Key",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"name": "Content-Type",
								"type": "text",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n\t\"key_id\": \"ENTER_KEY_ID_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/webhook_verification_key/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"webhook_verification_key",
								"get"
							]
						},
						"description": "Get Webhook Verification Key"
					},
					"response": []
				}
			],
			"protocolProfileBehavior": {}
		},
		{
			"name": "Payment Initiation (UK only)",
			"item": [
				{
					"name": "Create Payment Recipient",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"name\": \"Wonder Wallet\",\n  \"iban\": \"GB29NWBK60161331926819\",\n  \"address\": {\n    \"street\": [\n      \"96 Guild Street\",\n      \"9th Floor\"\n    ],\n    \"city\": \"London\",\n    \"postal_code\": \"SE14 8JW\",\n    \"country\": \"GB\"\n  }\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/payment_initiation/recipient/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"payment_initiation",
								"recipient",
								"create"
							]
						},
						"description": "In the sandbox environment, you can use the `/payment_initiation/recipient/create` endpoint to generate recipients. Programmatic recipient creation in the development and production environments can be done after approval by our compliance team.\n\nThe endpoint is idempotent: if a developer has already made a request with the same payment details, Plaid will return the same recipient_id. Recipients are scoped per environment."
					},
					"response": []
				},
				{
					"name": "Create Payment",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"recipient_id\": \"ENTER_RECIPIENT_ID_HERE\",\n  \"reference\": \"Test Funding\",\n  \"amount\": {\n    \"currency\": \"GBP\",\n    \"value\": 100.00\n  }\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/payment_initiation/payment/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"payment_initiation",
								"payment",
								"create"
							]
						},
						"description": "Create and configure a payment by specifying a `recipient_id`, `reference`, `amount`, and `currency` to create a Plaid payment resource. The Plaid API returns a `payment_id` to identify the created payment."
					},
					"response": []
				},
				{
					"name": "Create Link Token - Payment Initiation",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"client_id\": \"{{client_id}}\",\n\t\"secret\": \"{{secret_key}}\",\n  \"client_name\": \"Insert Client name here\",\n  \"country_codes\": [\"GB\"],\n  \"language\": \"en\",\n  \"user\": {\n    \"client_user_id\": \"unique_user_id\"\n  },\n  \"products\": [\"payment_initiation\"],\n  \"payment_initiation\": {\n    \"payment_id\": \"INSERT_PAYMENT_ID_HERE\"\n  }\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/link/token/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"link",
								"token",
								"create"
							]
						},
						"description": "Creates a link token with options. The `payment_id` from `Create Payment` is passed with the creation of the link token. The link token can then be used to initialize Plaid Link."
					},
					"response": []
				},
				{
					"name": "Create Payment Token",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"payment_id\": \"ENTER_PAYMENT_ID_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/payment_initiation/payment/token/create",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"payment_initiation",
								"payment",
								"token",
								"create"
							]
						},
						"description": "In order to actually initiate a Payment, you must use the `payment_id` returned from `payment_initiation/payment/create` and create a `payment_token`.\n\nThe `payment_token` will allow for at most one payment initiation. If this attempt fails, the end user aborts the flow, or the token expires, the developer will need to create a new payment token. Creating a new payment token does not require end user input."
					},
					"response": []
				},
				{
					"name": "Get Payment",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"payment_id\": \"ENTER_PAYMENT_ID_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/payment_initiation/payment/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"payment_initiation",
								"payment",
								"get"
							]
						},
						"description": "The endpoint `payment_initiation/payment/get` takes a `payment_id` and returns all of the payment details for a previously created payment."
					},
					"response": []
				},
				{
					"name": "List Payments",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"count\": 5\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/payment_initiation/payment/list",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"payment_initiation",
								"payment",
								"list"
							]
						},
						"description": "The endpoint `payment_initiation/payment/get` list payment details for all of your previously created payments.\n\nThis endpoint accepts `count` and `cursor` as optional parameters in order to support pagination. `count` limits how many payments are returned and can be set between 0 and 200. `cursor` should be a string in RFC 3339 format (i.e. `\"2019-12-06T22:35:49Z\"`). Only payments created before the `cursor` will be returned."
					},
					"response": []
				},
				{
					"name": "Get Payment Recipient",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\",\n  \"recipient_id\": \"ENTER_RECIPIENT_ID_HERE\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/payment_initiation/recipient/get",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"payment_initiation",
								"recipient",
								"get"
							]
						},
						"description": "The `/payment_initiation/recipient/get` endpoint allows you to retrieve all of the details for a recipient that you have created."
					},
					"response": []
				},
				{
					"name": "List Payment Recipients",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"client_id\": \"{{client_id}}\",\n  \"secret\": \"{{secret_key}}\"\n}"
						},
						"url": {
							"raw": "https://{{env_url}}/payment_initiation/recipient/list",
							"protocol": "https",
							"host": [
								"{{env_url}}"
							],
							"path": [
								"payment_initiation",
								"recipient",
								"list"
							]
						},
						"description": "The `/payment_initiation/recipient/list` endpoint allows you to retrieve details for all recipients that you have created."
					},
					"response": []
				}
			],
			"description": "The UK Payment Initiation API enables payment transfers within your app. Plaid supports both domestic payments denominated in pound sterling (typically via the Faster Payments network, although this is up to the institution) and international payments denominated in euro (typically via SEPA Credit Transfer). Each time a client wants to receive a payment, the end user must authorize the payment in Link before the payment can be initiated.\n\n**Note:** The revised EU Directive on Payment Services (\"PSD2\") regulations require strong customer authentication (\"SCA\") for each payment order.",
			"protocolProfileBehavior": {}
		}
	],
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"id": "faebc267-9360-4ab0-bc39-d2e555318ba1",
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"id": "2f52ad07-879c-4585-989d-e1c06a422227",
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"id": "dea9d5e1-4e1c-447e-91cf-b4b8e5ea7890",
			"key": "origin",
			"value": "https://sandbox.plaid.com (Sandbox)",
			"type": "string"
		}
	],
	"protocolProfileBehavior": {}
}