{
	"info": {
		"_postman_id": "24d7b8c1-8c15-4a31-a09a-2342421b0a2c",
		"name": "Belvo API",
		"description": "# Introduction\nWelcome the Belvo's API Documentation. You will find here all the necessary information to connect to Belvo and start retrieving financial information from your end-users. \n\n## Bank connectivity simplified\nPowering the next generation of financial services in Latin America.\n\n\n### 🚀 Instant-access API\nSeamlessly connect to your users’ bank accounts and cards and retrieve account information, transaction details, owner's identity and much more.\n\n\n### 🌴 Full coverage\nIntegrate hundreds of banks across Latin America so you can concentrate on scaling your business.\n\n\n### 🔐 Next-gen security\nFull encryption built in to ensure your users’ data will always be safe and never be compromised.\n\n## For developers, by developers.\nConnecting to banks can be a tedious process. With Belvo it’s just a few lines of code.\n\n\n```python\nfrom pprint import pprint\nfrom belvo.client import Client\n\n\nclient = Client(url='https://api.belvo.co', 'demo', 'demo123')\nlink = client.Links.create(\n    institution='Banamex', username='fake-user', password='fake-password')\n\nfor account in client.Accounts.get(link=link):\n    pprint(account)\n```\n\n## Glossary\nIt is important to start by defining some terms as you will need to be familiar with when interacting with Belvo. Your end-users finances can be held in different financial institutions, and inside each insitution, they might have several accounts. This is why it is important to look at the way we structure the information that you can access.\n\n  ### Secret Key\n  A `Secret Key` is a pair of `id` and `secret` needed to authenticate to Belvo's API. You need to create a `Secret Key` before making API calls.\n  When you register a `Secret Key` the piar `id/secret` will be sent over email.\n  ### Institution\n  An `Institution` is an entity that Belvo can access information from. It can be a bank (Banamex retail banking, HSBC corporate banking) or other type of institutions such as the \"Servicio de Administración Tributaria\" (SAT) in Mexico.\n  ### Link\n  A `Link` is a set of credentials associated to a end-user access to an `Institution`. An example would be the username and password used to login to an online banking platform.\n  You will need to register a `Link` before accessing information from that specific end-user like Account information or Transaction details.\n  ### Account\n  An `Account` is the representation of a bank account inside a financial institution. An end-user can have several `Accounts` inside each `Link`. For example, one `Link` can have on checking account, several credit cards and even loan or investment accounts.\n  ### Transaction\n  A `Transaction` contains the detailed information of each movement inside an `Account`\n  ### Owner\n  An `Owner` represents the person who has access to a `Link` and is the owner of all the `Accounts` inside the `Link`\n\n___\nLook at the follwing example: Ana, one of your end-users, is a client of three different `Institutions` (Banamex, HSBC and BBVA).\nShe also has three different `Accounts` at BBVA: one checking account, a credit card and an investment account.\n\n![alt text](user_diagram.png \"User diagram\")\n\n## Starting Guide\nBefore you start using Belvo's API, it's important to understand the process you need to follow to get setup and ready.\n### Register at Belvo\nThe first step is to create a user through our [registration page]. \n\n[registration page]: https://api.belvo.co/clients/signup/?next=%2Fadmin%2Flogin%2F%3Fnext%3D%2Fadmin%2F\n\n![alt text](signup_belvo.png)\n\nOnce you have registered, you will receive an email from us. You will need to confirm your email address to complete the registration process.\n\n### The Dashboard\nAfter confirming your email address you will automatically be redirected to Belvo's dashboard.\nHere you will be able to see all the information you have already accessed: links, accounts, transactions and owners.\nYou will also be see the Institutions that you can access via Belvo's API.\n\n![alt text](belvo_dashboard.png)\n\nYou will also see the Secret Key link under the Users section, and you will need to create a new one to be able to Authenticate to the API and start accessing data.\n\n### Creating a Secret Key\nNavigate to the Secret Key section and click on ADD SECRET KEY.\nYou will see a menu that allows you to choose your client and give an alias to the Secret Key. \nChoose your username from the dropdown list and add the alias that you want and click on SAVE.\n\n![alt text](add_secret_key.png)\n\nYou will receive an email with an `id` and a `secret`. These are the two values that you will need to access Belvo's API. Now you are all set and can start using our API!!  \n\n\nContact Support:\n Name: Get in touch\n Email: hello@belvo.co",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "30722243"
	},
	"item": [
		{
			"name": "Accounts",
			"item": [
				{
					"name": "Retrieve",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"link\": \"<uuid>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/accounts/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"accounts",
								""
							]
						}
					},
					"response": [
						{
							"name": "Bad request error.",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/accounts/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"accounts",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Created",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/accounts/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"accounts",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "[\n {\n  \"type\": \"<string>\",\n  \"name\": \"<string>\",\n  \"category\": \"ullamco eiusmod\",\n  \"collected_at\": \"<dateTime>\",\n  \"bank_product_id\": \"<string>\",\n  \"currency\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"number\": \"<string>\",\n  \"balance_current\": \"<string>\",\n  \"balance_available\": \"<string>\",\n  \"link\": \"<string>\",\n  \"internal_identification\": \"<string>\",\n  \"public_identification_name\": \"<string>\",\n  \"public_identification_value\": \"<string>\",\n  \"institution\": {\n   \"name\": \"<string>\",\n   \"type\": \"in minim ad\"\n  }\n },\n {\n  \"type\": \"<string>\",\n  \"name\": \"<string>\",\n  \"category\": \"amet quis irure nostru\",\n  \"collected_at\": \"<dateTime>\",\n  \"bank_product_id\": \"<string>\",\n  \"currency\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"number\": \"<string>\",\n  \"balance_current\": \"<string>\",\n  \"balance_available\": \"<string>\",\n  \"link\": \"<string>\",\n  \"internal_identification\": \"<string>\",\n  \"public_identification_name\": \"<string>\",\n  \"public_identification_value\": \"<string>\",\n  \"institution\": {\n   \"name\": \"<string>\",\n   \"type\": \"ullamco sit Duis\"\n  }\n }\n]"
						},
						{
							"name": "MFA Token Required",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/accounts/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"accounts",
										""
									]
								}
							},
							"status": "Precondition Required",
							"code": 428,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\",\n \"session\": \"<uuid>\",\n \"expiry\": \"<integer>\"\n}"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/accounts/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"accounts",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						}
					]
				},
				{
					"name": "Resume",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/accounts/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"accounts",
								""
							]
						},
						"description": "Used to resume a session that was paused because a MFA token was required by the institution."
					},
					"response": [
						{
							"name": "Bad request error.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/accounts/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"accounts",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/accounts/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"accounts",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Created",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/accounts/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"accounts",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"type\": \"<string>\",\n \"name\": \"<string>\",\n \"category\": \"in et elit ut\",\n \"collected_at\": \"<dateTime>\",\n \"bank_product_id\": \"<string>\",\n \"currency\": \"<string>\",\n \"id\": \"<uuid>\",\n \"number\": \"<string>\",\n \"balance_current\": \"<string>\",\n \"balance_available\": \"<string>\",\n \"link\": \"<string>\",\n \"internal_identification\": \"<string>\",\n \"public_identification_name\": \"<string>\",\n \"public_identification_value\": \"<string>\",\n \"institution\": {\n  \"name\": \"<string>\",\n  \"type\": \"pariatur minim et non\"\n }\n}"
						}
					]
				},
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/accounts/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"accounts",
								""
							],
							"query": [
								{
									"key": "page",
									"value": "<integer>",
									"description": "A page number within the paginated result set.",
									"disabled": true
								}
							]
						}
					},
					"response": [
						{
							"name": "Ok",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/accounts/?page=<integer>",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"accounts",
										""
									],
									"query": [
										{
											"key": "page",
											"value": "<integer>"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"count\": \"<integer>\",\n \"next\": \"<string>\",\n \"previous\": \"<string>\",\n \"results\": [\n  {\n   \"type\": \"<string>\",\n   \"name\": \"<string>\",\n   \"category\": \"eiusmod amet\",\n   \"collected_at\": \"<dateTime>\",\n   \"bank_product_id\": \"<string>\",\n   \"currency\": \"<string>\",\n   \"id\": \"<uuid>\",\n   \"number\": \"<string>\",\n   \"balance_current\": \"<string>\",\n   \"balance_available\": \"<string>\",\n   \"link\": \"<string>\",\n   \"internal_identification\": \"<string>\",\n   \"public_identification_name\": \"<string>\",\n   \"public_identification_value\": \"<string>\",\n   \"institution\": {\n    \"name\": \"<string>\",\n    \"type\": \"dolore magna irure\"\n   }\n  },\n  {\n   \"type\": \"<string>\",\n   \"name\": \"<string>\",\n   \"category\": \"sed ullamco ipsum labore\",\n   \"collected_at\": \"<dateTime>\",\n   \"bank_product_id\": \"<string>\",\n   \"currency\": \"<string>\",\n   \"id\": \"<uuid>\",\n   \"number\": \"<string>\",\n   \"balance_current\": \"<string>\",\n   \"balance_available\": \"<string>\",\n   \"link\": \"<string>\",\n   \"internal_identification\": \"<string>\",\n   \"public_identification_name\": \"<string>\",\n   \"public_identification_value\": \"<string>\",\n   \"institution\": {\n    \"name\": \"<string>\",\n    \"type\": \"tempor cillum\"\n   }\n  }\n ]\n}"
						}
					]
				},
				{
					"name": "Detail",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/accounts/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"accounts",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<string>",
									"description": "The `id` of the Account you want to see in detail"
								}
							]
						}
					},
					"response": [
						{
							"name": "Ok",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/accounts/<string>/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"accounts",
										"<string>",
										""
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"type\": \"<string>\",\n \"name\": \"<string>\",\n \"category\": \"commodo quis\",\n \"collected_at\": \"<dateTime>\",\n \"bank_product_id\": \"<string>\",\n \"currency\": \"<string>\",\n \"id\": \"<uuid>\",\n \"number\": \"<string>\",\n \"balance_current\": \"<string>\",\n \"balance_available\": \"<string>\",\n \"link\": \"<string>\",\n \"internal_identification\": \"<string>\",\n \"public_identification_name\": \"<string>\",\n \"public_identification_value\": \"<string>\",\n \"institution\": {\n  \"name\": \"<string>\",\n  \"type\": \"dolore Duis do\"\n }\n}"
						}
					]
				},
				{
					"name": "Destroy",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/accounts/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"accounts",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<string>",
									"description": "The `id` of the Account you want to delete"
								}
							]
						}
					},
					"response": [
						{
							"name": "No content",
							"originalRequest": {
								"method": "DELETE",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/accounts/<string>/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"accounts",
										"<string>",
										""
									]
								}
							},
							"status": "No Content",
							"code": 204,
							"_postman_previewlanguage": "text",
							"header": [
								{
									"key": "Content-Type",
									"value": "text/plain"
								}
							],
							"cookie": [],
							"body": ""
						}
					]
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Balances",
			"item": [
				{
					"name": "Register",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"link\": \"<uuid>\",\n    \"date_from\": \"<yyyy-mm-dd>\",\n    \"date_to\": \"<yyyy-mm-dd>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/balances/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"balances",
								""
							]
						}
					},
					"response": [
						{
							"name": "OK",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"date_from\": \"<yyyy-mm-dd>\",\n    \"date_to\": \"<yyyy-mm-dd>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/balances/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"balances",
										""
									]
								}
							},
							"status": "OK",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json",
									"description": "",
									"type": "text"
								}
							],
							"cookie": [],
							"body": "[\n    {\n        \"id\": \"<uuid>\",\n        \"account\": {\n            \"name\": \"<string>\",\n            \"category\": \"<string>\",\n            \"currency\": \"<string>\",\n            \"id\": \"<uuid>\"\n        },\n        \"collected_at\": \"<dateTime>\",\n        \"value_date\": \"<dateTime>\",\n        \"current_balance\": \"<number>\"\n    }\n]"
						},
						{
							"name": "Bad Request error",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"date_from\": \"<yyyy-mm-dd>\",\n    \"date_to\": \"<yyyy-mm-dd>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/balances/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"balances",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json",
									"description": "",
									"type": "text"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"date_from\": \"<yyyy-mm-dd>\",\n    \"date_to\": \"<yyyy-mm-dd>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/balances/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"balances",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json",
									"description": "",
									"type": "text"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "MFA Token Required",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"date_from\": \"<yyyy-mm-dd>\",\n    \"date_to\": \"<yyyy-mm-dd>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/balances/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"balances",
										""
									]
								}
							},
							"status": "Precondition Required",
							"code": 428,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json",
									"description": "",
									"type": "text"
								}
							],
							"cookie": [],
							"body": "{\n    \"detail\": \"<string>\",\n    \"session\": \"<uuid>\",\n    \"expiry\": \"<number>\",\n    \"link\": \"<uuid>\"\n}"
						}
					]
				},
				{
					"name": "Resume",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/balances/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"balances",
								""
							]
						}
					},
					"response": [
						{
							"name": "Bad Request error",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/balances/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"balances",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json",
									"description": "",
									"type": "text"
								}
							],
							"cookie": [],
							"body": "{\n    \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/balances/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"balances",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json",
									"description": "",
									"type": "text"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Created",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/balances/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"balances",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json",
									"description": "",
									"type": "text"
								}
							],
							"cookie": [],
							"body": "[\n    {\n        \"id\": \"<uuid>\",\n        \"account\": {\n            \"name\": \"<string>\",\n            \"category\": \"<string>\",\n            \"currency\": \"<string>\",\n            \"id\": \"<uuid>\"\n        },\n        \"collected_at\": \"<dateTime>\",\n        \"value_date\": \"<dateTime>\",\n        \"current_balance\": \"<number>\"\n    }\n]"
						}
					]
				},
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/api/balances/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"balances",
								""
							]
						}
					},
					"response": [
						{
							"name": "OK",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{baseUrl}}/api/balances/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"balances",
										""
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json",
									"description": "",
									"type": "text"
								}
							],
							"cookie": [],
							"body": "{\n    \"count\": \"<integer>\",\n    \"next\": \"<string>\",\n    \"previous\": \"<string>\",\n    \"results\": [\n        {\n            \"id\": \"<uuid>\",\n            \"account\": {\n                \"name\": \"<string>\",\n                \"category\": \"<string>\",\n                \"currency\": \"<string>\",\n                \"id\": \"<uuid>\"\n            },\n            \"collected_at\": \"<dateTime>\",\n            \"value_date\": \"<dateTime>\",\n            \"current_balance\": \"<number>\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "Detail",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/api/balances/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"balances",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<uuid>",
									"description": "The `id` of the Balance you want to get details from"
								}
							]
						}
					},
					"response": [
						{
							"name": "OK",
							"originalRequest": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{baseUrl}}/api/balances/:id/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"balances",
										":id",
										""
									],
									"variable": [
										{
											"key": "id",
											"value": "<uuid>",
											"description": "The `id` of the Balance you want to get details from"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json",
									"description": "",
									"type": "text"
								}
							],
							"cookie": [],
							"body": "{\n    \"id\": \"<uuid>\",\n    \"account\": {\n        \"name\": \"<string>\",\n        \"category\": \"<string>\",\n        \"currency\": \"<string>\",\n        \"id\": \"<uuid>\"\n    },\n    \"collected_at\": \"<dateTime>\",\n    \"value_date\": \"<dateTime>\",\n    \"current_balance\": \"<number>\"\n}"
						}
					]
				},
				{
					"name": "Destroy",
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{baseUrl}}/api/balances/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"balances",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<uuid>",
									"description": "The `id` of the Balance you want to get details from"
								}
							]
						}
					},
					"response": [
						{
							"name": "No content",
							"originalRequest": {
								"method": "DELETE",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"type": "text"
									}
								],
								"url": {
									"raw": "{{baseUrl}}/api/balances/:id/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"balances",
										":id",
										""
									],
									"variable": [
										{
											"key": "id",
											"value": "<uuid>",
											"description": "The `id` of the Balance you want to get details from"
										}
									]
								}
							},
							"status": "No Content",
							"code": 204,
							"_postman_previewlanguage": "Text",
							"header": [],
							"cookie": [],
							"body": ""
						}
					]
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Incomes",
			"item": [
				{
					"name": "Retrieve",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"link\": \"<uuid>\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseUrl}}/api/incomes/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"incomes",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Resume",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"session\": \"<uuid>\",\n  \"token\": \"<string>\",\n  \"link\": \"<uuid>\"\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{baseUrl}}/api/incomes/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"incomes",
								""
							]
						}
					},
					"response": []
				}
			],
			"description": "The `Incomes` endpoints allow you to retrieve income insights for a specific link."
		},
		{
			"name": "Institutions",
			"item": [
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/institutions/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"institutions",
								""
							],
							"query": [
								{
									"key": "page",
									"value": "<integer>",
									"description": "A page number within the paginated result set.",
									"disabled": true
								}
							]
						}
					},
					"response": [
						{
							"name": "Ok",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/institutions/?page=<integer>",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"institutions",
										""
									],
									"query": [
										{
											"key": "page",
											"value": "<integer>"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "[\n {\n  \"name\": \"<string>\",\n  \"type\": \"ut irure cupidatat\"\n },\n {\n  \"name\": \"<string>\",\n  \"type\": \"magna pariatur veniam minim\"\n }\n]"
						}
					]
				}
			]
		},
		{
			"name": "Invoices",
			"item": [
				{
					"name": "Retrieve",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"link\": \"<uuid>\",\n    \"date_from\": \"<yyyy-mm-dd>\",\n    \"date_to\": \"<yyyy-mm-dd>\",\n    \"type\": \"<string>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/invoices/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"invoices",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/invoices/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"invoices",
								""
							],
							"query": [
								{
									"key": "page",
									"value": "<integer>",
									"description": "A page number within the paginated result set.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Detail",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/invoices/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"invoices",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Destroy",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/invoices/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"invoices",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<uuid>",
									"description": "The `id` of the Invoice you want to delete"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Links",
			"item": [
				{
					"name": "Register",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"institution\": \"<string>\",\n    \"username\": \"<string>\",\n    \"password\": \"<string>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/links/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"links",
								""
							]
						}
					},
					"response": [
						{
							"name": "Created",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"institution\": \"<string>\",\n    \"username\": \"<string>\",\n    \"password\": \"<string>\",\n    \"token\": \"<string>\",\n    \"secret\": \"<string>\",\n    \"access_mode\": \"est proident in\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/links/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"institution\": \"<string>\",\n \"id\": \"<uuid>\",\n \"access_mode\": \"amet in\",\n \"last_accessed_at\": \"<dateTime>\"\n}"
						},
						{
							"name": "Bad request error.",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"institution\": \"<string>\",\n    \"username\": \"<string>\",\n    \"password\": \"<string>\",\n    \"token\": \"<string>\",\n    \"secret\": \"<string>\",\n    \"access_mode\": \"est proident in\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/links/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "MFA Token Required",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"institution\": \"<string>\",\n    \"username\": \"<string>\",\n    \"password\": \"<string>\",\n    \"token\": \"<string>\",\n    \"secret\": \"<string>\",\n    \"access_mode\": \"est proident in\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/links/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									]
								}
							},
							"status": "Precondition Required",
							"code": 428,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\",\n \"session\": \"<uuid>\",\n \"expiry\": \"<integer>\"\n}"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"institution\": \"<string>\",\n    \"username\": \"<string>\",\n    \"password\": \"<string>\",\n    \"token\": \"<string>\",\n    \"secret\": \"<string>\",\n    \"access_mode\": \"est proident in\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/links/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						}
					]
				},
				{
					"name": "Update",
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"name": "Content-Type",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"password\": \"<string>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/links/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"links",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "",
									"description": "The `id` of the Link you want to get details from"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Resume",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/links/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"links",
								""
							]
						},
						"description": "Used to resume a session that was paused because a MFA token was required by the institution."
					},
					"response": [
						{
							"name": "Created",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/links/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"institution\": \"<string>\",\n \"id\": \"<uuid>\",\n \"access_mode\": \"dolor\",\n \"last_accessed_at\": \"<dateTime>\"\n}"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/links/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Bad request error.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/links/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						}
					]
				},
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/links/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"links",
								""
							],
							"query": [
								{
									"key": "page",
									"value": "<integer>",
									"description": "A page number within the paginated result set.",
									"disabled": true
								}
							]
						}
					},
					"response": [
						{
							"name": "Ok",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/links/?page=<integer>",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									],
									"query": [
										{
											"key": "page",
											"value": "<integer>"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"count\": \"<integer>\",\n \"next\": \"<string>\",\n \"previous\": \"<string>\",\n \"results\": [\n  {\n   \"institution\": \"<string>\",\n   \"id\": \"<uuid>\",\n   \"access_mode\": \"velit mollit dolo\",\n   \"last_accessed_at\": \"<dateTime>\"\n  },\n  {\n   \"institution\": \"<string>\",\n   \"id\": \"<uuid>\",\n   \"access_mode\": \"volupt\",\n   \"last_accessed_at\": \"<dateTime>\"\n  }\n ]\n}"
						}
					]
				},
				{
					"name": "Detail",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/links/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"links",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<uuid>",
									"description": "The `id` of the Link you want to get details from"
								}
							]
						}
					},
					"response": [
						{
							"name": "Ok",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/links/<string>/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										"<string>",
										""
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"institution\": \"<string>\",\n \"id\": \"<uuid>\",\n \"access_mode\": \"enim ex\",\n \"last_accessed_at\": \"<dateTime>\"\n}"
						}
					]
				},
				{
					"name": "Destroy",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/links/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"links",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<uuid>",
									"description": "The `id` of the Link you want to delete"
								}
							]
						}
					},
					"response": [
						{
							"name": "No content",
							"originalRequest": {
								"method": "DELETE",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/links/<string>/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										"<string>",
										""
									]
								}
							},
							"status": "No Content",
							"code": 204,
							"_postman_previewlanguage": "text",
							"header": [
								{
									"key": "Content-Type",
									"value": "text/plain"
								}
							],
							"cookie": [],
							"body": ""
						}
					]
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Owners",
			"item": [
				{
					"name": "Retrieve",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"link\": \"<uuid>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/owners/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"owners",
								""
							]
						}
					},
					"response": [
						{
							"name": "Bad request error.",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/owners/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"owners",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Ok",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/owners/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"owners",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "[\n {\n  \"display_name\": \"<string>\",\n  \"collected_at\": \"<dateTime>\",\n  \"id\": \"<uuid>\",\n  \"first_name\": \"<string>\",\n  \"last_name\": \"<string>\",\n  \"second_last_name\": \"<string>\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<email>\"\n },\n {\n  \"display_name\": \"<string>\",\n  \"collected_at\": \"<dateTime>\",\n  \"id\": \"<uuid>\",\n  \"first_name\": \"<string>\",\n  \"last_name\": \"<string>\",\n  \"second_last_name\": \"<string>\",\n  \"phone_number\": \"<string>\",\n  \"email\": \"<email>\"\n }\n]"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/owners/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"owners",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "MFA Token Required",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/owners/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"owners",
										""
									]
								}
							},
							"status": "Precondition Required",
							"code": 428,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\",\n \"session\": \"<uuid>\",\n \"expiry\": \"<integer>\"\n}"
						}
					]
				},
				{
					"name": "Resume",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/owners/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"owners",
								""
							]
						},
						"description": "Used to resume a session that was paused because a MFA token was required by the institution."
					},
					"response": [
						{
							"name": "Created",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/owners/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"owners",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"display_name\": \"<string>\",\n \"collected_at\": \"<dateTime>\",\n \"id\": \"<uuid>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"second_last_name\": \"<string>\",\n \"phone_number\": \"<string>\",\n \"email\": \"<email>\"\n}"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/owners/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"owners",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Bad request error.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/owners/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"owners",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						}
					]
				},
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/owners/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"owners",
								""
							],
							"query": [
								{
									"key": "page",
									"value": "<integer>",
									"description": "A page number within the paginated result set.",
									"disabled": true
								}
							]
						}
					},
					"response": [
						{
							"name": "Ok",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/owners/?page=<integer>",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"owners",
										""
									],
									"query": [
										{
											"key": "page",
											"value": "<integer>"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"count\": \"<integer>\",\n \"next\": \"<string>\",\n \"previous\": \"<string>\",\n \"results\": [\n  {\n   \"display_name\": \"<string>\",\n   \"collected_at\": \"<dateTime>\",\n   \"id\": \"<uuid>\",\n   \"first_name\": \"<string>\",\n   \"last_name\": \"<string>\",\n   \"second_last_name\": \"<string>\",\n   \"phone_number\": \"<string>\",\n   \"email\": \"<email>\"\n  },\n  {\n   \"display_name\": \"<string>\",\n   \"collected_at\": \"<dateTime>\",\n   \"id\": \"<uuid>\",\n   \"first_name\": \"<string>\",\n   \"last_name\": \"<string>\",\n   \"second_last_name\": \"<string>\",\n   \"phone_number\": \"<string>\",\n   \"email\": \"<email>\"\n  }\n ]\n}"
						}
					]
				},
				{
					"name": "Detail",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/owners/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"owners",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<uuid>",
									"description": "The `id` of the Owner you want to get details from"
								}
							]
						}
					},
					"response": [
						{
							"name": "Ok",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/owners/<string>/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"owners",
										"<string>",
										""
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"display_name\": \"<string>\",\n \"collected_at\": \"<dateTime>\",\n \"id\": \"<uuid>\",\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"second_last_name\": \"<string>\",\n \"phone_number\": \"<string>\",\n \"email\": \"<email>\"\n}"
						}
					]
				},
				{
					"name": "Destroy",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/owners/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"owners",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<uuid>",
									"description": "The `id` of the Owner you want to delete"
								}
							]
						}
					},
					"response": [
						{
							"name": "No content",
							"originalRequest": {
								"method": "DELETE",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/owners/<string>/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"owners",
										"<string>",
										""
									]
								}
							},
							"status": "No Content",
							"code": 204,
							"_postman_previewlanguage": "text",
							"header": [
								{
									"key": "Content-Type",
									"value": "text/plain"
								}
							],
							"cookie": [],
							"body": ""
						}
					]
				}
			]
		},
		{
			"name": "Statements",
			"item": [
				{
					"name": "Retrieve",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"name": "Content-Type",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"link\": \"<uuid>\",\n    \"account\": \"<uuid>\",\n    \"year\": \"<yyyy>\",\n    \"month\": \"<mm>\",\n    \"attach_pdf\": \"<boolean>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/statements/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"statements",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Resume",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\",\n    \"account\": \"<uuid>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/statements/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"statements",
								""
							]
						},
						"description": "Used to resume a session that was paused because a MFA token was required by the institution."
					},
					"response": [
						{
							"name": "Created",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/links/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"institution\": \"<string>\",\n \"id\": \"<uuid>\",\n \"access_mode\": \"dolor\",\n \"last_accessed_at\": \"<dateTime>\"\n}"
						},
						{
							"name": "Bad request error.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/links/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/links/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"links",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						}
					]
				},
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/statements/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"statements",
								""
							],
							"query": [
								{
									"key": "page",
									"value": "<integer>",
									"description": "A page number within the paginated result set.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Detail",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/statements/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"statements",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Destroy",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/statements/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"statements",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Tax Returns",
			"item": [
				{
					"name": "Retrieve",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"name": "Content-Type",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"link\": \"<uuid>\",\n    \"year_from\": \"<yyyy>\",\n    \"year_to\": \"<yyyy>\",\n    \"attach_pdf\": \"<boolean>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/tax-returns/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-returns",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/tax-returns/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-returns",
								""
							],
							"query": [
								{
									"key": "page",
									"value": "<integer>",
									"description": "A page number within the paginated result set.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Detail",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/tax-returns/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-returns",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Destroy",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/tax-returns/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-returns",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Tax Status",
			"item": [
				{
					"name": "Retrieve",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"name": "Content-Type",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"link\": \"<uuid>\",\n    \"attach_pdf\": \"<boolean>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/tax-status/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-status",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/tax-status/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-status",
								""
							],
							"query": [
								{
									"key": "page",
									"value": "<integer>",
									"description": "A page number within the paginated result set.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Detail",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/tax-status/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-status",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Destroy",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/tax-status/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-status",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Tax Compliance Status",
			"item": [
				{
					"name": "Retrieve",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json",
								"name": "Content-Type",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"link\": \"<uuid>\",\n    \"attach_pdf\": \"<boolean>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/tax-compliance-status/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-compliance-status",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/tax-compliance-status/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-compliance-status",
								""
							],
							"query": [
								{
									"key": "page",
									"value": "<integer>",
									"description": "A page number within the paginated result set.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Detail",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/tax-compliance-status/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-compliance-status",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Destroy",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/tax-compliance-status/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"tax-compliance-status",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Transactions",
			"item": [
				{
					"name": "Retrieve",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"link\": \"<uuid>\",\n    \"date_from\": \"<yyyy-mm-dd>\",\n    \"date_to\": \"<yyyy-mm-dd>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/transactions/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"transactions",
								""
							]
						},
						"description": "__Note:__ When creating transactions, it is important to understand that the available transaction data ranges depend on each institution. It you try to access older information than what we can access, we will return all the data we can read within that data range. For example, if you request transactions for the last year and we can only access the last 6 months, we will return the information corresponding to these 6 months of data."
					},
					"response": [
						{
							"name": "Ok",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\",\n    \"account\": \"<uuid>\",\n    \"date_from\": \"<date>\",\n    \"date_to\": \"<date>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/transactions/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"transactions",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "[\n {\n  \"collected_at\": \"<dateTime>\",\n  \"value_date\": \"<dateTime>\",\n  \"amount\": \"<number>\",\n  \"currency\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"accounting_date\": \"<dateTime>\",\n  \"balance\": \"<number>\",\n  \"reference\": \"<string>\",\n  \"type\": \"consequat in\",\n  \"status\": \"anim tempor in dolor\",\n  \"account\": {\n   \"type\": \"<string>\",\n   \"name\": \"<string>\",\n   \"category\": \"dolore esse \",\n   \"collected_at\": \"<dateTime>\",\n   \"bank_product_id\": \"<string>\",\n   \"currency\": \"<string>\",\n   \"id\": \"<uuid>\",\n   \"number\": \"<string>\",\n   \"balance_current\": \"<string>\",\n   \"balance_available\": \"<string>\",\n   \"link\": \"<string>\",\n   \"internal_identification\": \"<string>\",\n   \"public_identification_name\": \"<string>\",\n   \"public_identification_value\": \"<string>\",\n   \"institution\": {\n    \"name\": \"<string>\",\n    \"type\": \"officia tempor consectetur dolore nisi\"\n   }\n  }\n },\n {\n  \"collected_at\": \"<dateTime>\",\n  \"value_date\": \"<dateTime>\",\n  \"amount\": \"<number>\",\n  \"currency\": \"<string>\",\n  \"description\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"accounting_date\": \"<dateTime>\",\n  \"balance\": \"<number>\",\n  \"reference\": \"<string>\",\n  \"type\": \"veniam officia i\",\n  \"status\": \"dolor\",\n  \"account\": {\n   \"type\": \"<string>\",\n   \"name\": \"<string>\",\n   \"category\": \"in esse irure\",\n   \"collected_at\": \"<dateTime>\",\n   \"bank_product_id\": \"<string>\",\n   \"currency\": \"<string>\",\n   \"id\": \"<uuid>\",\n   \"number\": \"<string>\",\n   \"balance_current\": \"<string>\",\n   \"balance_available\": \"<string>\",\n   \"link\": \"<string>\",\n   \"internal_identification\": \"<string>\",\n   \"public_identification_name\": \"<string>\",\n   \"public_identification_value\": \"<string>\",\n   \"institution\": {\n    \"name\": \"<string>\",\n    \"type\": \"ut tempor aliquip\"\n   }\n  }\n }\n]"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\",\n    \"account\": \"<uuid>\",\n    \"date_from\": \"<date>\",\n    \"date_to\": \"<date>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/transactions/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"transactions",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Bad request error.",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\",\n    \"account\": \"<uuid>\",\n    \"date_from\": \"<date>\",\n    \"date_to\": \"<date>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/transactions/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"transactions",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "MFA Token Required",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"link\": \"<uuid>\",\n    \"secret\": \"<string>\",\n    \"token\": \"<string>\",\n    \"account\": \"<uuid>\",\n    \"date_from\": \"<date>\",\n    \"date_to\": \"<date>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/transactions/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"transactions",
										""
									]
								}
							},
							"status": "Precondition Required",
							"code": 428,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\",\n \"session\": \"<uuid>\",\n \"expiry\": \"<integer>\"\n}"
						}
					]
				},
				{
					"name": "Resume",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/api/transactions/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"transactions",
								""
							]
						},
						"description": "Used to resume a session that was paused because a MFA token was required by the institution."
					},
					"response": [
						{
							"name": "Created",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/transactions/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"transactions",
										""
									]
								}
							},
							"status": "Created",
							"code": 201,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"collected_at\": \"<dateTime>\",\n \"value_date\": \"<dateTime>\",\n \"amount\": \"<number>\",\n \"currency\": \"<string>\",\n \"description\": \"<string>\",\n \"id\": \"<uuid>\",\n \"accounting_date\": \"<dateTime>\",\n \"balance\": \"<number>\",\n \"reference\": \"<string>\",\n \"type\": \"enim do in mollit irure\",\n \"status\": \"adipisicing nulla\",\n \"account\": {\n  \"type\": \"<string>\",\n  \"name\": \"<string>\",\n  \"category\": \"pariatur commodo dolore culpa aliqua\",\n  \"collected_at\": \"<dateTime>\",\n  \"bank_product_id\": \"<string>\",\n  \"currency\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"number\": \"<string>\",\n  \"balance_current\": \"<string>\",\n  \"balance_available\": \"<string>\",\n  \"link\": \"<string>\",\n  \"internal_identification\": \"<string>\",\n  \"public_identification_name\": \"<string>\",\n  \"public_identification_value\": \"<string>\",\n  \"institution\": {\n   \"name\": \"<string>\",\n   \"type\": \"officia est ut\"\n  }\n }\n}"
						},
						{
							"name": "Bad request error.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/transactions/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"transactions",
										""
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						},
						{
							"name": "Connection error received when consuming internal services.",
							"originalRequest": {
								"method": "PATCH",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"session\": \"<uuid>\",\n    \"token\": \"<string>\",\n    \"link\": \"<uuid>\"\n}"
								},
								"url": {
									"raw": "{{baseUrl}}/api/transactions/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"transactions",
										""
									]
								}
							},
							"status": "Service Unavailable",
							"code": 503,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"detail\": \"<string>\"\n}"
						}
					]
				},
				{
					"name": "List",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/transactions/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"transactions",
								""
							],
							"query": [
								{
									"key": "page",
									"value": "<integer>",
									"description": "A page number within the paginated result set.",
									"disabled": true
								}
							]
						}
					},
					"response": [
						{
							"name": "Ok",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/transactions/?page=<integer>",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"transactions",
										""
									],
									"query": [
										{
											"key": "page",
											"value": "<integer>"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"count\": \"<integer>\",\n \"next\": \"<string>\",\n \"previous\": \"<string>\",\n \"results\": [\n  {\n   \"collected_at\": \"<dateTime>\",\n   \"value_date\": \"<dateTime>\",\n   \"amount\": \"<number>\",\n   \"currency\": \"<string>\",\n   \"description\": \"<string>\",\n   \"id\": \"<uuid>\",\n   \"accounting_date\": \"<dateTime>\",\n   \"balance\": \"<number>\",\n   \"reference\": \"<string>\",\n   \"type\": \"ut aliquip in\",\n   \"status\": \"anim aute\",\n   \"account\": {\n    \"type\": \"<string>\",\n    \"name\": \"<string>\",\n    \"category\": \"est do\",\n    \"collected_at\": \"<dateTime>\",\n    \"bank_product_id\": \"<string>\",\n    \"currency\": \"<string>\",\n    \"id\": \"<uuid>\",\n    \"number\": \"<string>\",\n    \"balance_current\": \"<string>\",\n    \"balance_available\": \"<string>\",\n    \"link\": \"<string>\",\n    \"internal_identification\": \"<string>\",\n    \"public_identification_name\": \"<string>\",\n    \"public_identification_value\": \"<string>\",\n    \"institution\": {\n     \"name\": \"<string>\",\n     \"type\": \"laborum do pariatur nulla\"\n    }\n   }\n  },\n  {\n   \"collected_at\": \"<dateTime>\",\n   \"value_date\": \"<dateTime>\",\n   \"amount\": \"<number>\",\n   \"currency\": \"<string>\",\n   \"description\": \"<string>\",\n   \"id\": \"<uuid>\",\n   \"accounting_date\": \"<dateTime>\",\n   \"balance\": \"<number>\",\n   \"reference\": \"<string>\",\n   \"type\": \"fugiat enim cillum Lorem quis\",\n   \"status\": \"reprehenderit culpa temp\",\n   \"account\": {\n    \"type\": \"<string>\",\n    \"name\": \"<string>\",\n    \"category\": \"dolore ea officia\",\n    \"collected_at\": \"<dateTime>\",\n    \"bank_product_id\": \"<string>\",\n    \"currency\": \"<string>\",\n    \"id\": \"<uuid>\",\n    \"number\": \"<string>\",\n    \"balance_current\": \"<string>\",\n    \"balance_available\": \"<string>\",\n    \"link\": \"<string>\",\n    \"internal_identification\": \"<string>\",\n    \"public_identification_name\": \"<string>\",\n    \"public_identification_value\": \"<string>\",\n    \"institution\": {\n     \"name\": \"<string>\",\n     \"type\": \"id non \"\n    }\n   }\n  }\n ]\n}"
						}
					]
				},
				{
					"name": "Detail",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/transactions/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"transactions",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<uuid>",
									"description": "The `id` of the Transaction you want to get details from"
								}
							]
						}
					},
					"response": [
						{
							"name": "Ok",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/transactions/<string>/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"transactions",
										"<string>",
										""
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Content-Type",
									"value": "application/json"
								}
							],
							"cookie": [],
							"body": "{\n \"collected_at\": \"<dateTime>\",\n \"value_date\": \"<dateTime>\",\n \"amount\": \"<number>\",\n \"currency\": \"<string>\",\n \"description\": \"<string>\",\n \"id\": \"<uuid>\",\n \"accounting_date\": \"<dateTime>\",\n \"balance\": \"<number>\",\n \"reference\": \"<string>\",\n \"type\": \"amet velit\",\n \"status\": \"\",\n \"account\": {\n  \"type\": \"<string>\",\n  \"name\": \"<string>\",\n  \"category\": \"nostrud\",\n  \"collected_at\": \"<dateTime>\",\n  \"bank_product_id\": \"<string>\",\n  \"currency\": \"<string>\",\n  \"id\": \"<uuid>\",\n  \"number\": \"<string>\",\n  \"balance_current\": \"<string>\",\n  \"balance_available\": \"<string>\",\n  \"link\": \"<string>\",\n  \"internal_identification\": \"<string>\",\n  \"public_identification_name\": \"<string>\",\n  \"public_identification_value\": \"<string>\",\n  \"institution\": {\n   \"name\": \"<string>\",\n   \"type\": \"ea e\"\n  }\n }\n}"
						}
					]
				},
				{
					"name": "Destroy",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/api/transactions/:id/",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"api",
								"transactions",
								":id",
								""
							],
							"variable": [
								{
									"key": "id",
									"value": "<uuid>",
									"description": "The `id` of the Transaction you want to delete"
								}
							]
						}
					},
					"response": [
						{
							"name": "No content",
							"originalRequest": {
								"method": "DELETE",
								"header": [],
								"url": {
									"raw": "{{baseUrl}}/api/transactions/<string>/",
									"host": [
										"{{baseUrl}}"
									],
									"path": [
										"api",
										"transactions",
										"<string>",
										""
									]
								}
							},
							"status": "No Content",
							"code": 204,
							"_postman_previewlanguage": "text",
							"header": [
								{
									"key": "Content-Type",
									"value": "text/plain"
								}
							],
							"cookie": [],
							"body": ""
						}
					]
				}
			]
		},
		{
			"name": "New Request",
			"request": {
				"method": "GET",
				"header": []
			},
			"response": []
		}
	],
	"auth": {
		"type": "basic",
		"basic": [
			{
				"key": "password",
				"value": "{{secretPassword}}",
				"type": "string"
			},
			{
				"key": "username",
				"value": "{{secretId}}",
				"type": "string"
			}
		]
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"key": "baseUrl",
			"value": "https://api.belvo.co"
		},
		{
			"key": "secretId",
			"value": ""
		},
		{
			"key": "secretPassword",
			"value": ""
		}
	]
}