{
	"info": {
		"_postman_id": "fe770e71-f909-465c-8359-c0551e4139bd",
		"name": "Unit API",
		"description": "Edit the variables with your API Token and API Server.\n\nYou can create an API token in Unit Dashboard.\n",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "23220404",
		"_collection_link": "https://unit-finance.postman.co/workspace/Team-Workspace~548c45ca-0f9a-4b13-8067-11fdc48a0a89/collection/23220404-fe770e71-f909-465c-8359-c0551e4139bd?action=share&source=collection_link&creator=23220404"
	},
	"item": [
		{
			"name": "Accounts",
			"item": [
				{
					"name": "Create Joint Deposit Account",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"depositAccount\",\n        \"attributes\": {\n            \"depositProduct\": \"checking\",\n            \"tags\": {\n                \"purpose\": \"tax\",\n                \"trackUserId\": \"userId_fe6885b5815463b26f65e71095832bdd916890f7\"\n            }\n        },\n        \"relationships\": {\n            \"customers\": {\n                \"data\": [\n                    {\n                        \"type\": \"customer\",\n                        \"id\": \"10000\"\n                    },\n                    {\n                        \"type\": \"customer\",\n                        \"id\": \"10001\"\n                    },\n                    {\n                        \"type\": \"customer\",\n                        \"id\": \"10002\"\n                    }\n                ]\n            }\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts"
							]
						},
						"description": "Remove 'balance' and 'hold' from the request"
					},
					"response": []
				},
				{
					"name": "Create Deposit Account",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"depositAccount\",\n        \"attributes\": {\n            \"depositProduct\": \"checking\",\n            \"tags\": {\n                \"purpose\": \"checking\"\n            }\n        },\n        \"relationships\": {\n            \"customer\": {\n            \t\"data\": {\n                \t\"type\": \"customer\",\n                \t\"id\": \"10000\"\n            \t}\n            }\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts"
							]
						},
						"description": "Remove 'balance' and 'hold' from the request"
					},
					"response": []
				},
				{
					"name": "Add Account Owner",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"depositAccount\",\n        \"attributes\": {\n            \"depositProduct\": \"checking\",\n            \"tags\": {\n                \"purpose\": \"tax\",\n                \"trackUserId\": \"userId_fe6885b5815463b26f65e71095832bdd916890f7\"\n            }\n        },\n        \"relationships\": {\n            \"customers\": {\n                \"data\": [\n                    {\n                        \"type\": \"customer\",\n                        \"id\": \"10000\"\n                    },\n                    {\n                        \"type\": \"customer\",\n                        \"id\": \"10001\"\n                    },\n                    {\n                        \"type\": \"customer\",\n                        \"id\": \"10002\"\n                    }\n                ]\n            }\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts"
							]
						},
						"description": "Remove 'balance' and 'hold' from the request"
					},
					"response": []
				},
				{
					"name": "Remove Account Owner",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": [\n    {\n      \"type\": \"customer\",\n      \"id\": \"10001\"\n    }\n  ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts/10124/relationships/customers",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10124",
								"relationships",
								"customers"
							]
						},
						"description": "Remove 'balance' and 'hold' from the request"
					},
					"response": []
				},
				{
					"name": "Update Account",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"depositAccount\",\n        \"attributes\": {\n            \"tags\": {\n                \"hide\": \"true\"\n            }\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts/23327",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"23327"
							]
						},
						"description": "Remove 'balance' and 'hold' from the request"
					},
					"response": []
				},
				{
					"name": "Get all by Customer Id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/accounts?filter[customerId]=499935",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts"
							],
							"query": [
								{
									"key": "filter[customerId]",
									"value": "499935"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/accounts",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/accounts/610732",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"610732"
							]
						}
					},
					"response": []
				},
				{
					"name": "Org Account By Negative Balance",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true,
						"disabledSystemHeaders": {}
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "X-Forwarded-For",
								"value": "Me",
								"type": "text",
								"disabled": true
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/accounts/actions/negative-balance?days=10",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"actions",
								"negative-balance"
							],
							"query": [
								{
									"key": "days",
									"value": "10"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Close",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"accountClose\",\n        \"attributes\": {\n            \"reason\": \"Fraud\",\n            \"fraudReason\": \"CardActivity\",\n            \"reasonText\": \"This is the reason for the card activity fraud\"\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts/10008/close",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10008",
								"close"
							]
						}
					},
					"response": []
				},
				{
					"name": "Reopen",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"url": {
							"raw": "{{server_url}}/accounts/11953/reopen",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"11953",
								"reopen"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Limits",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/accounts/10001/limits",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10001",
								"limits"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Deposit Products",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/accounts/10001/deposit-products",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10001",
								"deposit-products"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get credit Account Repayment Information",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/accounts/10072/repayment-information",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10072",
								"repayment-information"
							]
						}
					},
					"response": []
				},
				{
					"name": "Freeze",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"accountFreeze\",\n        \"attributes\": {\n            \"reason\": \"Other\",\n            \"reasonText\": \"Per customer's request\"\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts/10000/freeze",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10000",
								"freeze"
							]
						}
					},
					"response": []
				},
				{
					"name": "Unfreeze",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts/10000/unfreeze",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10000",
								"unfreeze"
							]
						}
					},
					"response": []
				},
				{
					"name": "Enter Daca",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts/10000/enter-daca",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10000",
								"enter-daca"
							]
						}
					},
					"response": []
				},
				{
					"name": "Activate Daca",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts/10000/activate-daca",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10000",
								"activate-daca"
							]
						}
					},
					"response": []
				},
				{
					"name": "Deactivate Daca",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts/10000/deactivate-daca",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10000",
								"deactivate-daca"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add Owners",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": [\n    {\n      \"type\": \"customer\",\n      \"id\": \"10001\"\n    },\n    {\n      \"type\": \"customer\",\n      \"id\": \"10002\"\n    }\n  ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts/10000/relationships/customers",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10000",
								"relationships",
								"customers"
							]
						}
					},
					"response": []
				},
				{
					"name": "Remove Owners",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": [\n    {\n      \"type\": \"customer\",\n      \"id\": \"10001\"\n    },\n    {\n      \"type\": \"customer\",\n      \"id\": \"10002\"\n    }\n  ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/accounts/10000/relationships/customers",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"10000",
								"relationships",
								"customers"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Account End Of Day",
			"item": [
				{
					"name": "Filter by",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/account-end-of-day/?page[limit]=10&page[offset]=0&filter[customerId]=10000&filter[accountId]=30317&filter[since]=2020-10-11&filter[until]=2021-10-13",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"account-end-of-day",
								""
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10"
								},
								{
									"key": "page[offset]",
									"value": "0"
								},
								{
									"key": "filter[customerId]",
									"value": "10000"
								},
								{
									"key": "filter[accountId]",
									"value": "30317"
								},
								{
									"key": "filter[since]",
									"value": "2020-10-11"
								},
								{
									"key": "filter[until]",
									"value": "2021-10-13"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "API Tokens",
			"item": [
				{
					"name": "Create API Token",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"apiToken\",\n        \"attributes\": {\n            \"description\": \"aaaaa\",\n            \"scope\": \"customers applications\",\n            \"expiration\": \"2023-07-01T13:47:17.000Z\",\n            \"sourceIp\": \"192.168.1.1,192.168.1.2\",\n            \"resources\": [\n                {\n                    \"type\": \"card\",\n                    \"ids\": [\n                        \"1\",\n                        \"2\"\n                    ]\n                },\n                {\n                    \"type\": \"account\",\n                    \"ids\": [\n                        \"444\"\n                    ]\n                }\n            ]\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/users/1/api-tokens",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"users",
								"1",
								"api-tokens"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/users/2/api-tokens",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"users",
								"2",
								"api-tokens"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all Copy",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/users/2/api-tokens",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"users",
								"2",
								"api-tokens"
							]
						}
					},
					"response": []
				},
				{
					"name": "Revoke",
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/users/2/api-tokens/22",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"users",
								"2",
								"api-tokens",
								"22"
							]
						},
						"description": "Remove 'balance' and 'hold' from the request"
					},
					"response": []
				},
				{
					"name": "Identity",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{orgToken}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/identity",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"identity"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Applications",
			"item": [
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/applications?page[limit]=10&page[offset]=0&include=org",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications"
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10"
								},
								{
									"key": "page[offset]",
									"value": "0"
								},
								{
									"key": "include",
									"value": "org"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/applications/10517",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications",
								"10517"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Documents",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/applications/8",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications",
								"8"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Trust Application",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"trustApplication\",\n        \"attributes\": {\n            \"tags\": {\n                \"by\": \"Richard Hendricks\",\n                \"id\": \"23033b64-38f8-4dbc-91a1-313ff0156d02\"\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/applications/167357",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications",
								"167357"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Business Application Copy",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"businessApplication\",\n        \"attributes\": {\n            \"tags\": {\n                \"by\": \"Richard Hendricks\",\n                \"id\": \"23033b64-38f8-4dbc-91a1-313ff0156d02\"\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/applications/167357",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications",
								"167357"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Individual Application",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"individualApplication\",\n        \"attributes\": {\n            \"tags\": {\n                \"by\": \"Richard Hendricks\",\n                \"id\": \"23033b64-38f8-4dbc-91a1-313ff0156d02\"\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/applications/167358",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications",
								"167358"
							]
						}
					},
					"response": []
				},
				{
					"name": "Cancel Application",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"applicationCancel\",\n        \"attributes\": {\n            \"reason\": \"by customer\"\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/applications/10075/cancel",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications",
								"10075",
								"cancel"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Business Application",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "\n{\n  \"data\": {\n    \"type\": \"businessApplication\",\n    \"attributes\": {\n      \"name\": \"Pied Piper\",\n      \"address\": {\n        \"street\": \"5230 Newell Rd\",\n        \"city\": \"Palo Alto\",\n        \"state\": \"CA\",\n        \"postalCode\": \"94303\",\n        \"country\": \"US\"\n      },\n      \"phone\": {\n        \"countryCode\": \"1\",\n        \"number\": \"5555555555\"\n      },\n      \"stateOfIncorporation\": \"DE\",\n      \"ein\": \"123456789\",\n      \"entityType\": \"Corporation\",\n      \"ip\": \"127.0.0.2\",\n      \"annualRevenue\": \"Between500kAnd1m\",\n      \"numberOfEmployees\": \"Between50And100\",\n      \"cashFlow\": \"Predictable\",\n      \"yearOfIncorporation\": \"2014\",\n      \"countriesOfOperation\": [\n        \"US\",\n        \"CA\"\n      ],\n      \"stockSymbol\": \"PPI\",\n      \"businessVertical\": \"TechnologyMediaOrTelecom\",\n      \"website\": \"https://www.piedpiper.com\",\n      \"contact\": {\n        \"fullName\": {\n          \"first\": \"Richard\",\n          \"last\": \"Hendricks\"\n        },\n        \"email\": \"richard@piedpiper.com\",\n        \"phone\": {\n          \"countryCode\": \"1\",\n          \"number\": \"5555555555\"\n        }\n      },\n      \"officer\": {\n        \"fullName\": {\n          \"first\": \"Richard\",\n          \"last\": \"Hendricks\"\n        },\n        \"dateOfBirth\": \"2001-08-10\",\n        \"title\": \"CEO\",\n        \"ssn\": \"721074426\",\n        \"email\": \"richard@piedpiper.com\",\n        \"phone\": {\n          \"countryCode\": \"1\",\n          \"number\": \"5555555555\"\n        },\n        \"address\": {\n          \"street\": \"5230 Newell Rd\",\n          \"city\": \"Palo Alto\",\n          \"state\": \"CA\",\n          \"postalCode\": \"94303\",\n          \"country\": \"US\"\n        },\n        \"occupation\": \"ArchitectOrEngineer\",\n        \"annualIncome\": \"Between50kAnd100k\",\n        \"sourceOfIncome\": \"EmploymentOrPayrollIncome\"\n      },\n      \"beneficialOwners\": [\n        {\n          \"fullName\": {\n            \"first\": \"Richard\",\n            \"last\": \"Hendricks\"\n          },\n          \"dateOfBirth\": \"2001-08-10\",\n          \"ssn\": \"123456789\",\n          \"email\": \"richard@piedpiper.com\",\n          \"percentage\": 75,\n          \"phone\": {\n            \"countryCode\": \"1\",\n            \"number\": \"5555555555\"\n          },\n          \"address\": {\n            \"street\": \"5230 Newell Rd\",\n            \"city\": \"Palo Alto\",\n            \"state\": \"CA\",\n            \"postalCode\": \"94303\",\n            \"country\": \"US\"\n          },\n          \"occupation\": \"ArchitectOrEngineer\",\n          \"annualIncome\": \"Between50kAnd100k\",\n          \"sourceOfIncome\": \"EmploymentOrPayrollIncome\"\n        }\n      ],\n      \"tags\": {\n        \"userId\": \"2ab1f266-04b9-41fb-b728-cd1962bca52c\"\n      },\n      \"idempotencyKey\": \"3a1a33be-4e12-4603-9ed0-820922389fb8\"\n    }\n  }\n}"
						},
						"url": {
							"raw": "{{server_url}}/applications",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications"
							]
						}
					},
					"response": [
						{
							"name": "Create Business",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/vnd.api+json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"data\": {\n        \"type\": \"businessOnboarding\",\n        \"attributes\": {\n            \"name\": \"Pied Piper\",\n            \"address\": {\n                \"street\": \"5230 Newell Rd\",\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94303\",\n                \"country\": \"US\"\n            },\n            \"phone\": {\n            \t\"countryCode\": \"1\",\n            \t\"number\": \"15555555\"\n            },\n            \"dateOfIncorporation\": \"2008-01-02\",\n            \"stateOfIncorporation\": \"DE\",\n            \"ein\": \"123456789\",\n            \"entityType\": \"Corporation\",\n            \"purpose\": \"New Internet\",\n            \"officer\": {\n            \t\"fullName\": {\n                    \"first\": \"Richard\",\n                    \"last\": \"Hendricks\"\n                },\t\n                \"dateOfBirth\": \"2001-08-10\",\n                \"ssn\": \"123456789\",\n                \"nationality\": \"US\",\n                \"email\": \"richard@piedpiper.com\",\n                \"phone\": {\n                \t\"countryCode\": \"1\",\n                \t\"number\": \"5555555\"\n                },\n                \"address\": {\n\t                \"street\": \"5230 Newell Rd\",\n\t                \"city\": \"Palo Alto\",\n\t                \"state\": \"CA\",\n\t                \"postalCode\": \"94303\",\n\t                \"country\": \"US\"\n            \t}\n            },\n            \"beneficialOwners\": [\n            \t{\n\t            \t\"fullName\": {\n\t                    \"first\": \"Richard\",\n\t                    \"last\": \"Hendricks\"\n\t                },\t\n\t                \"dateOfBirth\": \"2001-08-10\",\n\t                \"ssn\": \"123456789\",\n\t                \"nationality\": \"US\",\n\t                \"email\": \"richard@piedpiper.com\",\n\t                \"phone\": {\n\t                \t\"countryCode\": \"1\",\n\t                \t\"number\": \"5555555\"\n\t                },\n\t                \"address\": {\n\t\t                \"street\": \"5230 Newell Rd\",\n\t\t                \"city\": \"Palo Alto\",\n\t\t                \"state\": \"CA\",\n\t\t                \"postalCode\": \"94303\",\n\t\t                \"country\": \"US\"\n\t            \t}\n            \t}\n        \t],\n            \"authorizedUsers\": [\n                {\n                    \"fullName\": {\n                        \"first\": \"Richard\",\n                        \"last\": \"Hendricks\"\n                    },\n                    \"username\":\"richard\",\n                    \"email\": \"richard@piedpiper.com\",\n                    \"phone\": {\n                    \t\"countryCode\": \"1\",\n                    \t\"number\": \"5555555\"\n                    }\n                }\n            ]\n        }\n    }\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{server_url}}/onboarding",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"onboarding"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [],
							"cookie": [],
							"body": "{\n    \"data\": {\n        \"type\": \"businessOnboarding\",\n        \"id\": 50,\n        \"attributes\": {\n            \"createdAt\": \"2020-01-13T16:01:19.346Z\",\n            \"name\": \"Pied Piper\",\n            \"dba\": null,\n            \"address\": {\n                \"street\": \"5230 Newell Rd\",\n                \"street2\": null,\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94303\",\n                \"country\": \"US\"\n            },\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"15555555\"\n            },\n            \"dateOfIncorporation\": \"2008-01-02\",\n            \"stateOfIncorporation\": \"DE\",\n            \"ein\": \"123456789\",\n            \"entityType\": \"Corporation\",\n            \"officer\": {\n                \"fullName\": {\n                    \"first\": \"Richard\",\n                    \"last\": \"Hendricks\"\n                },\n                \"nationality\": \"US\",\n                \"ssn\": \"123456789\",\n                \"passport\": null,\n                \"address\": {\n                    \"street\": \"5230 Newell Rd\",\n                    \"street2\": null,\n                    \"city\": \"Palo Alto\",\n                    \"state\": \"CA\",\n                    \"postalCode\": \"94303\",\n                    \"country\": \"US\"\n                },\n                \"dateOfBirth\": \"2001-08-10\",\n                \"email\": \"richard@piedpiper.com\",\n                \"phone\": {\n                    \"countryCode\": \"1\",\n                    \"number\": \"5555555\"\n                },\n                \"status\": \"Approved\"\n            },\n            \"beneficialOwners\": [\n                {\n                    \"id\": 1,\n                    \"fullName\": {\n                        \"first\": \"Richard\",\n                        \"last\": \"Hendricks\"\n                    },\n                    \"ssn\": \"123456789\",\n                    \"passport\": null,\n                    \"address\": {\n                        \"street\": \"5230 Newell Rd\",\n                        \"street2\": null,\n                        \"city\": \"Palo Alto\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94303\",\n                        \"country\": \"US\"\n                    },\n                    \"dateOfBirth\": \"2001-08-10\",\n                    \"nationality\": \"US\",\n                    \"phone\": {\n                        \"countryCode\": \"1\",\n                        \"number\": \"5555555\"\n                    },\n                    \"email\": \"richard@piedpiper.com\",\n                    \"status\": \"Approved\"\n                }\n            ],\n            \"authorizedUsers\": [\n                {\n                    \"fullName\": {\n                        \"first\": \"Richard\",\n                        \"last\": \"Hendricks\"\n                    },\n                    \"username\": \"richard\",\n                    \"email\": \"richard@piedpiper.com\",\n                    \"phone\": {\n                        \"countryCode\": \"1\",\n                        \"number\": \"5555555\"\n                    }\n                }\n            ],\n            \"purpose\": \"New Internet\",\n            \"status\": \"AwaitingDocuments\"\n        },\n        \"relationships\": {\n            \"org\": {\n                \"type\": \"org\",\n                \"id\": 1\n            },\n            \"documents\": [\n                {\n                    \"type\": \"document\",\n                    \"id\": 1,\n                    \"attributes\": {\n                        \"documentType\": \"CertificateOfIncorporation\",\n                        \"status\": \"Required\",\n                        \"name\": \"Pied Piper\",\n                        \"dateOfIncorporation\": \"2008-01-02\"\n                    }\n                },\n                {\n                    \"type\": \"document\",\n                    \"id\": 2,\n                    \"attributes\": {\n                        \"documentType\": \"UtilityBill\",\n                        \"status\": \"Required\",\n                        \"name\": \"Richard Hendricks\",\n                        \"address\": {\n                            \"street\": \"5230 Newell Rd\",\n                            \"street2\": null,\n                            \"city\": \"Palo Alto\",\n                            \"state\": \"CA\",\n                            \"postalCode\": \"94303\",\n                            \"country\": \"US\"\n                        }\n                    }\n                },\n                {\n                    \"type\": \"document\",\n                    \"id\": 3,\n                    \"attributes\": {\n                        \"documentType\": \"DriverLicense\",\n                        \"status\": \"Required\",\n                        \"name\": \"Richard Hendricks\"\n                    }\n                }\n            ]\n        }\n    }\n}"
						},
						{
							"name": "Create Business Application",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/vnd.api+json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"data\": {\n        \"attributes\": {\n            \"address\": {\n                \"city\": \"city\",\n                \"country\": \"US\",\n                \"postalCode\": \"83401\",\n                \"state\": \"UT\",\n                \"street\": \"1234 Fake Street\"\n            },\n            \"annualRevenue\": \"UpTo250k\",\n            \"beneficialOwners\": [\n                {\n                    \"address\": {\n                        \"city\": \"city\",\n                        \"country\": \"US\",\n                        \"postalCode\": \"83401\",\n                        \"state\": \"UT\",\n                        \"street\": \"1234 Owner Street\"\n                    },\n                    \"dateOfBirth\": \"2023-07-10\",\n                    \"email\": \"wjlon@cigky.fake\",\n                    \"fullName\": {\n                        \"first\": \"owner-first\",\n                        \"last\": \"owner-last\"\n                    },\n                    \"nationality\": \"US\",\n                    \"passport\": \"owner-passport\",\n                    \"percentage\": 60,\n                    \"phone\": {\n                        \"countryCode\": \"1\",\n                        \"number\": \"9119119111\"\n                    },\n                    \"ssn\": \"000000006\"\n                }\n            ],\n            \"businessVertical\": \"AgricultureForestryFishingOrHunting\",\n            \"cashFlow\": \"Predictable\",\n            \"contact\": {\n                \"email\": \"wjlon@cigky.fake\",\n                \"fullName\": {\n                    \"first\": \"bc-first\",\n                    \"last\": \"bc-last\"\n                },\n                \"phone\": {\n                    \"countryCode\": \"1\",\n                    \"number\": \"9119119111\"\n                }\n            },\n            \"countriesOfOperation\": [],\n            \"dba\": \"Test Inc\",\n            \"ein\": \"123456789\",\n            \"entityType\": \"LLC\",\n            \"industry\": \"Retail\",\n            \"ip\": \"127.0.0.1\",\n            \"name\": \"TestingCompany Inc\",\n            \"numberOfEmployees\": \"Between10And50\",\n            \"officer\": {\n                \"address\": {\n                    \"city\": \"city\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"83401\",\n                    \"state\": \"UT\",\n                    \"street\": \"1234 Contact Street\"\n                },\n                \"annualIncome\": \"Over250k\",\n                \"dateOfBirth\": \"2023-07-10\",\n                \"email\": \"wjlon@cigky.fake\",\n                \"fullName\": {\n                    \"first\": \"officer-first\",\n                    \"last\": \"officer-last\"\n                },\n                \"nationality\": \"US\",\n                \"occupation\": \"ExecutiveOrManager\",\n                \"passport\": \"officer-passport\",\n                \"phone\": {\n                    \"countryCode\": \"1\",\n                    \"number\": \"9119119111\"\n                },\n                \"sourceOfIncome\": \"EmploymentOrPayrollIncome\",\n                \"ssn\": \"000000001\",\n                \"title\": \"COO\"\n            },\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"9119119111\"\n            },\n            \"stateOfIncorporation\": \"CA\",\n            \"website\": \"http://website.com\",\n            \"yearOfIncorporation\": \"0\"\n        },\n        \"type\": \"businessApplication\"\n    }\n}"
								},
								"url": {
									"raw": "{{server_url}}/applications",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"applications"
									]
								}
							},
							"status": "Bad Request",
							"code": 400,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Tue, 11 Jul 2023 22:03:36 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/vnd.api+json; charset=utf-8"
								},
								{
									"key": "Content-Length",
									"value": "301"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "X-Powered-By",
									"value": "Express"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								},
								{
									"key": "ETag",
									"value": "W/\"12d-3S11EG0g8f0gn6PcuFGseb44YTk\""
								}
							],
							"cookie": [],
							"body": "{\n    \"errors\": [\n        {\n            \"title\": \"should be equal to constant\",\n            \"status\": \"400\",\n            \"source\": {\n                \"pointer\": \"/data/type\"\n            },\n            \"detail\": \"Field value 'individualApplication' is allowed\"\n        },\n        {\n            \"title\": \"should be equal to constant\",\n            \"status\": \"400\",\n            \"source\": {\n                \"pointer\": \"/data/type\"\n            },\n            \"detail\": \"Field value 'trustApplication' is allowed\"\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "Create Trust Application",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"trustApplication\",\n    \"attributes\": {\n      \"name\": \"Trust me Inc.\",\n      \"stateOfIncorporation\": \"CA\",\n      \"revocability\": \"Revocable\",\n      \"sourceOfFunds\": \"Salary\",\n      \"taxId\": \"123456789\",\n      \"trustees\": [\n        {\n          \"fullName\": {\n            \"first\": \"Richard\",\n            \"last\": \"Hendricks\"\n          },\n          \"dateOfBirth\": \"2000-01-01\",\n          \"ssn\": \"000000002\",\n          \"email\": \"richard@piedpiper.com\",\n          \"phone\": {\n            \"countryCode\": \"1\",\n            \"number\": \"2025550108\"\n          },\n          \"address\": {\n            \"street\": \"5230 Newell Rd\",\n            \"city\": \"Palo Alto\",\n            \"state\": \"CA\",\n            \"postalCode\": \"94303\",\n            \"country\": \"US\"\n          }\n        }\n      ],\n      \"contact\": {\n        \"fullName\": {\n          \"first\": \"Jared\",\n          \"last\": \"Dunn\"\n        },\n        \"email\": \"jared@piedpiper.com\",\n        \"phone\": {\n          \"countryCode\": \"1\",\n          \"number\": \"2025550108\"\n        },\n        \"address\": {\n          \"street\": \"5230 Newell Rd\",\n          \"city\": \"Palo Alto\",\n          \"state\": \"CA\",\n          \"postalCode\": \"94303\",\n          \"country\": \"US\"\n        }\n      },\n      \"grantor\": {\n        \"fullName\": {\n          \"first\": \"Laurie\",\n          \"last\": \"Bream\"\n        },\n        \"dateOfBirth\": \"2000-01-01\",\n        \"ssn\": \"000000003\",\n        \"email\": \"laurie@raviga.com\",\n        \"phone\": {\n          \"countryCode\": \"1\",\n          \"number\": \"2025550108\"\n        },\n        \"address\": {\n          \"street\": \"950 Allerton Street\",\n          \"city\": \"Redwood City\",\n          \"state\": \"CA\",\n          \"postalCode\": \"94063\",\n          \"country\": \"US\"\n        }\n      },\n      \"tags\": {\n        \"test\": \"test1\"\n      },\n      \"beneficiaries\": [\n        {\n          \"fullName\": {\n            \"first\": \"Dinesh\",\n            \"last\": \"Chugtai\"\n          },\n          \"dateOfBirth\": \"2000-01-01\"\n        },\n        {\n          \"fullName\": {\n            \"first\": \"Gilfoyle\",\n            \"last\": \"Unknown\"\n          },\n          \"dateOfBirth\": \"2000-01-01\"\n        }\n      ]\n    }\n  }\n}"
						},
						"url": {
							"raw": "{{server_url}}/applications",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications"
							]
						}
					},
					"response": [
						{
							"name": "Create Business",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/vnd.api+json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"data\": {\n        \"type\": \"businessOnboarding\",\n        \"attributes\": {\n            \"name\": \"Pied Piper\",\n            \"address\": {\n                \"street\": \"5230 Newell Rd\",\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94303\",\n                \"country\": \"US\"\n            },\n            \"phone\": {\n            \t\"countryCode\": \"1\",\n            \t\"number\": \"15555555\"\n            },\n            \"dateOfIncorporation\": \"2008-01-02\",\n            \"stateOfIncorporation\": \"DE\",\n            \"ein\": \"123456789\",\n            \"entityType\": \"Corporation\",\n            \"purpose\": \"New Internet\",\n            \"officer\": {\n            \t\"fullName\": {\n                    \"first\": \"Richard\",\n                    \"last\": \"Hendricks\"\n                },\t\n                \"dateOfBirth\": \"2001-08-10\",\n                \"ssn\": \"123456789\",\n                \"nationality\": \"US\",\n                \"email\": \"richard@piedpiper.com\",\n                \"phone\": {\n                \t\"countryCode\": \"1\",\n                \t\"number\": \"5555555\"\n                },\n                \"address\": {\n\t                \"street\": \"5230 Newell Rd\",\n\t                \"city\": \"Palo Alto\",\n\t                \"state\": \"CA\",\n\t                \"postalCode\": \"94303\",\n\t                \"country\": \"US\"\n            \t}\n            },\n            \"beneficialOwners\": [\n            \t{\n\t            \t\"fullName\": {\n\t                    \"first\": \"Richard\",\n\t                    \"last\": \"Hendricks\"\n\t                },\t\n\t                \"dateOfBirth\": \"2001-08-10\",\n\t                \"ssn\": \"123456789\",\n\t                \"nationality\": \"US\",\n\t                \"email\": \"richard@piedpiper.com\",\n\t                \"phone\": {\n\t                \t\"countryCode\": \"1\",\n\t                \t\"number\": \"5555555\"\n\t                },\n\t                \"address\": {\n\t\t                \"street\": \"5230 Newell Rd\",\n\t\t                \"city\": \"Palo Alto\",\n\t\t                \"state\": \"CA\",\n\t\t                \"postalCode\": \"94303\",\n\t\t                \"country\": \"US\"\n\t            \t}\n            \t}\n        \t],\n            \"authorizedUsers\": [\n                {\n                    \"fullName\": {\n                        \"first\": \"Richard\",\n                        \"last\": \"Hendricks\"\n                    },\n                    \"username\":\"richard\",\n                    \"email\": \"richard@piedpiper.com\",\n                    \"phone\": {\n                    \t\"countryCode\": \"1\",\n                    \t\"number\": \"5555555\"\n                    }\n                }\n            ]\n        }\n    }\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{server_url}}/onboarding",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"onboarding"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [],
							"cookie": [],
							"body": "{\n    \"data\": {\n        \"type\": \"businessOnboarding\",\n        \"id\": 50,\n        \"attributes\": {\n            \"createdAt\": \"2020-01-13T16:01:19.346Z\",\n            \"name\": \"Pied Piper\",\n            \"dba\": null,\n            \"address\": {\n                \"street\": \"5230 Newell Rd\",\n                \"street2\": null,\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94303\",\n                \"country\": \"US\"\n            },\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"15555555\"\n            },\n            \"dateOfIncorporation\": \"2008-01-02\",\n            \"stateOfIncorporation\": \"DE\",\n            \"ein\": \"123456789\",\n            \"entityType\": \"Corporation\",\n            \"officer\": {\n                \"fullName\": {\n                    \"first\": \"Richard\",\n                    \"last\": \"Hendricks\"\n                },\n                \"nationality\": \"US\",\n                \"ssn\": \"123456789\",\n                \"passport\": null,\n                \"address\": {\n                    \"street\": \"5230 Newell Rd\",\n                    \"street2\": null,\n                    \"city\": \"Palo Alto\",\n                    \"state\": \"CA\",\n                    \"postalCode\": \"94303\",\n                    \"country\": \"US\"\n                },\n                \"dateOfBirth\": \"2001-08-10\",\n                \"email\": \"richard@piedpiper.com\",\n                \"phone\": {\n                    \"countryCode\": \"1\",\n                    \"number\": \"5555555\"\n                },\n                \"status\": \"Approved\"\n            },\n            \"beneficialOwners\": [\n                {\n                    \"id\": 1,\n                    \"fullName\": {\n                        \"first\": \"Richard\",\n                        \"last\": \"Hendricks\"\n                    },\n                    \"ssn\": \"123456789\",\n                    \"passport\": null,\n                    \"address\": {\n                        \"street\": \"5230 Newell Rd\",\n                        \"street2\": null,\n                        \"city\": \"Palo Alto\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"94303\",\n                        \"country\": \"US\"\n                    },\n                    \"dateOfBirth\": \"2001-08-10\",\n                    \"nationality\": \"US\",\n                    \"phone\": {\n                        \"countryCode\": \"1\",\n                        \"number\": \"5555555\"\n                    },\n                    \"email\": \"richard@piedpiper.com\",\n                    \"status\": \"Approved\"\n                }\n            ],\n            \"authorizedUsers\": [\n                {\n                    \"fullName\": {\n                        \"first\": \"Richard\",\n                        \"last\": \"Hendricks\"\n                    },\n                    \"username\": \"richard\",\n                    \"email\": \"richard@piedpiper.com\",\n                    \"phone\": {\n                        \"countryCode\": \"1\",\n                        \"number\": \"5555555\"\n                    }\n                }\n            ],\n            \"purpose\": \"New Internet\",\n            \"status\": \"AwaitingDocuments\"\n        },\n        \"relationships\": {\n            \"org\": {\n                \"type\": \"org\",\n                \"id\": 1\n            },\n            \"documents\": [\n                {\n                    \"type\": \"document\",\n                    \"id\": 1,\n                    \"attributes\": {\n                        \"documentType\": \"CertificateOfIncorporation\",\n                        \"status\": \"Required\",\n                        \"name\": \"Pied Piper\",\n                        \"dateOfIncorporation\": \"2008-01-02\"\n                    }\n                },\n                {\n                    \"type\": \"document\",\n                    \"id\": 2,\n                    \"attributes\": {\n                        \"documentType\": \"UtilityBill\",\n                        \"status\": \"Required\",\n                        \"name\": \"Richard Hendricks\",\n                        \"address\": {\n                            \"street\": \"5230 Newell Rd\",\n                            \"street2\": null,\n                            \"city\": \"Palo Alto\",\n                            \"state\": \"CA\",\n                            \"postalCode\": \"94303\",\n                            \"country\": \"US\"\n                        }\n                    }\n                },\n                {\n                    \"type\": \"document\",\n                    \"id\": 3,\n                    \"attributes\": {\n                        \"documentType\": \"DriverLicense\",\n                        \"status\": \"Required\",\n                        \"name\": \"Richard Hendricks\"\n                    }\n                }\n            ]\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "Upload Document Back",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.expect(pm.response.code).to.be.oneOf([200,204]);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "file",
							"file": {
								"src": "/Users/somdoron/Downloads/profile pic.jpeg"
							}
						},
						"url": {
							"raw": "{{server_url}}/applications/5/documents/2/back",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications",
								"5",
								"documents",
								"2",
								"back"
							]
						}
					},
					"response": []
				},
				{
					"name": "Upload Document",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200 or 204\", function () {",
									"    pm.expect(pm.response.code).to.be.oneOf([200,204]);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "file",
							"file": {
								"src": "/Users/somdoron/Downloads/profile pic.jpeg"
							}
						},
						"url": {
							"raw": "{{server_url}}/applications/5/documents/2",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications",
								"5",
								"documents",
								"2"
							]
						}
					},
					"response": []
				},
				{
					"name": "Verify Document",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200 or 204\", function () {",
									"    pm.expect(pm.response.code).to.be.oneOf([200,204]);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "\n {\n     \"data\": {\n        \"type\": \"selfieVerification\",\n        \"attributes\":{\n            \"jobId\": \"abcd\"\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/applications/5/documents/2/verify",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications",
								"5",
								"documents",
								"2",
								"verify"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Individual",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"individualApplication\",\n        \"attributes\": {\n            \"ssn\": \"721074426\",\n            \"fullName\": {\n                \"first\": \"Peter\",\n                \"last\": \"Parker\"\n            },\n            \"dateOfBirth\": \"2001-08-10\",\n            \"address\": {\n                \"street\": \"20 Ingram St\",\n                \"city\": \"Forest Hills\",\n                \"state\": \"NY\",\n                \"postalCode\": \"11375\",\n                \"country\": \"US\"\n            },\n            \"email\": \"peter@oscorp.com\",\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"5555555555\"\n            },\n            \"ip\": \"127.0.0.2\",\n            \"occupation\": \"ArchitectOrEngineer\",\n            \"annualIncome\": \"Between50kAnd100k\",\n            \"sourceOfIncome\": \"EmploymentOrPayrollIncome\",\n            \"soleProprietorship\": true,\n            \"businessVertical\": \"EducationalServices\"\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/applications",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"applications"
							]
						}
					},
					"response": [
						{
							"name": "Create Consumer",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/vnd.api+json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"data\": {\n        \"type\": \"consumerOnboarding\",\n        \"attributes\": {\n    \t\t\"ssn\": \"721074426\",\n        \t\"fullName\": {\n                \"first\": \"Peter\",\n                \"last\": \"Parker\"\n            },\n            \"dateOfBirth\": \"2001-08-10\",\n            \"nationality\": \"US\",\n            \"address\": {\n                \"street\": \"20 Ingram St\",\n                \"city\": \"Forest Hills\",\n                \"state\": \"NY\",\n                \"postalCode\": \"11375\",\n                \"country\": \"US\"\n            },\n            \"email\": \"peter@oscorp.com\",\n            \"phone\": {\n            \t\"countryCode\": \"1\",\n            \t\"number\": \"15555555\"\n            }\n        }\n    }\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{server_url}}/onboarding",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"onboarding"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [],
							"cookie": [],
							"body": "{\n    \"data\": {\n        \"type\": \"consumerBoarding\",\n        \"id\": 53,\n        \"attributes\": {\n            \"createdAt\": \"2020-01-14T14:05:04.718Z\",\n            \"fullName\": {\n                \"first\": \"Peter\",\n                \"last\": \"Parker\"\n            },\n            \"nationality\": \"US\",\n            \"ssn\": \"721074426\",\n            \"address\": {\n                \"street\": \"20 Ingram St\",\n                \"street2\": null,\n                \"city\": \"Forest Hills\",\n                \"state\": \"NY\",\n                \"postalCode\": \"11375\",\n                \"country\": \"US\"\n            },\n            \"dateOfBirth\": \"2001-08-10\",\n            \"email\": \"peter@oscorp.com\",\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"15555555\"\n            },\n            \"status\": \"AwaitingDocuments\"\n        },\n        \"relationships\": {\n            \"org\": {\n                \"type\": \"org\",\n                \"id\": 1\n            },\n            \"documents\": [\n                {\n                    \"type\": \"document\",\n                    \"id\": 1,\n                    \"attributes\": {\n                        \"documentType\": \"UtilityBill\",\n                        \"status\": \"Required\",\n                        \"name\": \"Peter Parker\",\n                        \"address\": {\n                            \"street\": \"20 Ingram St\",\n                            \"street2\": null,\n                            \"city\": \"Forest Hills\",\n                            \"state\": \"NY\",\n                            \"postalCode\": \"11375\",\n                            \"country\": \"US\"\n                        }\n                    }\n                },\n                {\n                    \"type\": \"document\",\n                    \"id\": 2,\n                    \"attributes\": {\n                        \"documentType\": \"DriverLicense\",\n                        \"status\": \"Required\",\n                        \"name\": \"Peter Parker\",\n                        \"dateOfBirth\": \"2001-08-10\"\n                    }\n                }\n            ]\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "Download Document",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/sandbox/applications/247622/documents/42682/download",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"applications",
								"247622",
								"documents",
								"42682",
								"download"
							]
						}
					},
					"response": []
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Atm Locations",
			"item": [
				{
					"name": "Find by postal code",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/atm-locations?filter[postalCode]=12345",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"atm-locations"
							],
							"query": [
								{
									"key": "filter[postalCode]",
									"value": "12345"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Find by coordinates",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/atm-locations?filter[coordinates]={\"longitude\": \"-71.935242\", \"latitude\": \"40.730610\"}&filter[searchRadius]=30",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"atm-locations"
							],
							"query": [
								{
									"key": "filter[coordinates]",
									"value": "{\"longitude\": \"-71.935242\", \"latitude\": \"40.730610\"}"
								},
								{
									"key": "filter[searchRadius]",
									"value": "30"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Find by address",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/atm-locations?filter[address]={\"street\":\"333 7TH AVE\", \"city\": \"NEW YORK\", \"state\": \"NY\", \"postalCode\": \"\", \"country\": \"US\"}",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"atm-locations"
							],
							"query": [
								{
									"key": "filter[address]",
									"value": "{\"street\":\"333 7TH AVE\", \"city\": \"NEW YORK\", \"state\": \"NY\", \"postalCode\": \"\", \"country\": \"US\"}"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Application Forms",
			"item": [
				{
					"name": "Create",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"applicationForm\",\n        \"attributes\": {\n            \"requireIdVerification\": {\n                \"beneficialOwners\": true\n            },\n            \"settingsOverride\": {\n                \"redirectUrl\": \"http://www.shahaf.com\",\n                \"privacyPolicyUrl\": \"http://365scores.com\"\n            },\n            \"applicantDetails\": {\n                \"applicationType\": \"Business\",\n                \"beneficialOwners\": [\n                    {\n                        \"address\": {\n                            \"city\": \"San Francisco\",\n                            \"country\": \"US\",\n                            \"postalCode\": \"94117\",\n                            \"state\": \"CA\",\n                            \"street\": \"417A Haight Street\"\n                        },\n                        \"dateOfBirth\": \"1901-01-01\",\n                        \"email\": \"peter+dev+testing+card+application+start+point@trykarat.com\",\n                        \"fullName\": {\n                            \"first\": \"Peter\",\n                            \"last\": \"Seger\"\n                        },\n                        \"phone\": {\n                            \"countryCode\": \"1\",\n                            \"number\": \"5035446599\"\n                        },\n                        \"ssn\": \"000000000\"\n                    },\n                    {\n                        \"address\": {\n                            \"city\": \"San Francisco\",\n                            \"country\": \"US\",\n                            \"postalCode\": \"94117\",\n                            \"state\": \"CA\",\n                            \"street\": \"417A Haight Street\"\n                        },\n                        \"dateOfBirth\": \"1901-01-01\",\n                        \"email\": \"paul@trykarat.com\",\n                        \"fullName\": {\n                            \"first\": \"Paul\",\n                            \"last\": \"Seger\"\n                        },\n                        \"phone\": {\n                            \"countryCode\": \"1\",\n                            \"number\": \"5035446599\"\n                        },\n                        \"ssn\": \"000000000\"\n                    }\n                ],\n                \"contact\": {\n                    \"email\": \"peter+dev+testing+card+application+start+point@trykarat.com\",\n                    \"fullName\": {\n                        \"first\": \"Peter\",\n                        \"last\": \"Seger\"\n                    },\n                    \"phone\": {\n                        \"countryCode\": \"1\",\n                        \"number\": \"5035446599\"\n                    }\n                },\n                \"dateOfBirth\": \"1901-01-01\",\n                \"ein\": \"533323433\",\n                \"email\": \"peter+dev+testing+card+application+start+point@trykarat.com\",\n                \"fullName\": {\n                    \"first\": \"Peter\",\n                    \"last\": \"Seger\"\n                },\n                \"name\": \"Tester McTestFace\",\n                \"phone\": {\n                    \"countryCode\": \"1\",\n                    \"number\": \"5035446599\"\n                },\n                \"ssn\": \"000000000\"\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/application-forms",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"application-forms"
							]
						}
					},
					"response": [
						{
							"name": "Create Consumer",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/vnd.api+json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"data\": {\n        \"type\": \"consumerOnboarding\",\n        \"attributes\": {\n    \t\t\"ssn\": \"721074426\",\n        \t\"fullName\": {\n                \"first\": \"Peter\",\n                \"last\": \"Parker\"\n            },\n            \"dateOfBirth\": \"2001-08-10\",\n            \"nationality\": \"US\",\n            \"address\": {\n                \"street\": \"20 Ingram St\",\n                \"city\": \"Forest Hills\",\n                \"state\": \"NY\",\n                \"postalCode\": \"11375\",\n                \"country\": \"US\"\n            },\n            \"email\": \"peter@oscorp.com\",\n            \"phone\": {\n            \t\"countryCode\": \"1\",\n            \t\"number\": \"15555555\"\n            }\n        }\n    }\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{server_url}}/onboarding",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"onboarding"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [],
							"cookie": [],
							"body": "{\n    \"data\": {\n        \"type\": \"consumerBoarding\",\n        \"id\": 53,\n        \"attributes\": {\n            \"createdAt\": \"2020-01-14T14:05:04.718Z\",\n            \"fullName\": {\n                \"first\": \"Peter\",\n                \"last\": \"Parker\"\n            },\n            \"nationality\": \"US\",\n            \"ssn\": \"721074426\",\n            \"address\": {\n                \"street\": \"20 Ingram St\",\n                \"street2\": null,\n                \"city\": \"Forest Hills\",\n                \"state\": \"NY\",\n                \"postalCode\": \"11375\",\n                \"country\": \"US\"\n            },\n            \"dateOfBirth\": \"2001-08-10\",\n            \"email\": \"peter@oscorp.com\",\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"15555555\"\n            },\n            \"status\": \"AwaitingDocuments\"\n        },\n        \"relationships\": {\n            \"org\": {\n                \"type\": \"org\",\n                \"id\": 1\n            },\n            \"documents\": [\n                {\n                    \"type\": \"document\",\n                    \"id\": 1,\n                    \"attributes\": {\n                        \"documentType\": \"UtilityBill\",\n                        \"status\": \"Required\",\n                        \"name\": \"Peter Parker\",\n                        \"address\": {\n                            \"street\": \"20 Ingram St\",\n                            \"street2\": null,\n                            \"city\": \"Forest Hills\",\n                            \"state\": \"NY\",\n                            \"postalCode\": \"11375\",\n                            \"country\": \"US\"\n                        }\n                    }\n                },\n                {\n                    \"type\": \"document\",\n                    \"id\": 2,\n                    \"attributes\": {\n                        \"documentType\": \"DriverLicense\",\n                        \"status\": \"Required\",\n                        \"name\": \"Peter Parker\",\n                        \"dateOfBirth\": \"2001-08-10\"\n                    }\n                }\n            ]\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "Get by Id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/application-forms/21",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"application-forms",
								"21"
							]
						}
					},
					"response": [
						{
							"name": "Create Consumer",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/vnd.api+json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"data\": {\n        \"type\": \"consumerOnboarding\",\n        \"attributes\": {\n    \t\t\"ssn\": \"721074426\",\n        \t\"fullName\": {\n                \"first\": \"Peter\",\n                \"last\": \"Parker\"\n            },\n            \"dateOfBirth\": \"2001-08-10\",\n            \"nationality\": \"US\",\n            \"address\": {\n                \"street\": \"20 Ingram St\",\n                \"city\": \"Forest Hills\",\n                \"state\": \"NY\",\n                \"postalCode\": \"11375\",\n                \"country\": \"US\"\n            },\n            \"email\": \"peter@oscorp.com\",\n            \"phone\": {\n            \t\"countryCode\": \"1\",\n            \t\"number\": \"15555555\"\n            }\n        }\n    }\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{server_url}}/onboarding",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"onboarding"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [],
							"cookie": [],
							"body": "{\n    \"data\": {\n        \"type\": \"consumerBoarding\",\n        \"id\": 53,\n        \"attributes\": {\n            \"createdAt\": \"2020-01-14T14:05:04.718Z\",\n            \"fullName\": {\n                \"first\": \"Peter\",\n                \"last\": \"Parker\"\n            },\n            \"nationality\": \"US\",\n            \"ssn\": \"721074426\",\n            \"address\": {\n                \"street\": \"20 Ingram St\",\n                \"street2\": null,\n                \"city\": \"Forest Hills\",\n                \"state\": \"NY\",\n                \"postalCode\": \"11375\",\n                \"country\": \"US\"\n            },\n            \"dateOfBirth\": \"2001-08-10\",\n            \"email\": \"peter@oscorp.com\",\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"15555555\"\n            },\n            \"status\": \"AwaitingDocuments\"\n        },\n        \"relationships\": {\n            \"org\": {\n                \"type\": \"org\",\n                \"id\": 1\n            },\n            \"documents\": [\n                {\n                    \"type\": \"document\",\n                    \"id\": 1,\n                    \"attributes\": {\n                        \"documentType\": \"UtilityBill\",\n                        \"status\": \"Required\",\n                        \"name\": \"Peter Parker\",\n                        \"address\": {\n                            \"street\": \"20 Ingram St\",\n                            \"street2\": null,\n                            \"city\": \"Forest Hills\",\n                            \"state\": \"NY\",\n                            \"postalCode\": \"11375\",\n                            \"country\": \"US\"\n                        }\n                    }\n                },\n                {\n                    \"type\": \"document\",\n                    \"id\": 2,\n                    \"attributes\": {\n                        \"documentType\": \"DriverLicense\",\n                        \"status\": \"Required\",\n                        \"name\": \"Peter Parker\",\n                        \"dateOfBirth\": \"2001-08-10\"\n                    }\n                }\n            ]\n        }\n    }\n}"
						}
					]
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/application-forms?page[limit]=20&page[offset]=10",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"application-forms"
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "20"
								},
								{
									"key": "page[offset]",
									"value": "10"
								}
							]
						}
					},
					"response": [
						{
							"name": "Create Consumer",
							"originalRequest": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/vnd.api+json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"data\": {\n        \"type\": \"consumerOnboarding\",\n        \"attributes\": {\n    \t\t\"ssn\": \"721074426\",\n        \t\"fullName\": {\n                \"first\": \"Peter\",\n                \"last\": \"Parker\"\n            },\n            \"dateOfBirth\": \"2001-08-10\",\n            \"nationality\": \"US\",\n            \"address\": {\n                \"street\": \"20 Ingram St\",\n                \"city\": \"Forest Hills\",\n                \"state\": \"NY\",\n                \"postalCode\": \"11375\",\n                \"country\": \"US\"\n            },\n            \"email\": \"peter@oscorp.com\",\n            \"phone\": {\n            \t\"countryCode\": \"1\",\n            \t\"number\": \"15555555\"\n            }\n        }\n    }\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{server_url}}/onboarding",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"onboarding"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [],
							"cookie": [],
							"body": "{\n    \"data\": {\n        \"type\": \"consumerBoarding\",\n        \"id\": 53,\n        \"attributes\": {\n            \"createdAt\": \"2020-01-14T14:05:04.718Z\",\n            \"fullName\": {\n                \"first\": \"Peter\",\n                \"last\": \"Parker\"\n            },\n            \"nationality\": \"US\",\n            \"ssn\": \"721074426\",\n            \"address\": {\n                \"street\": \"20 Ingram St\",\n                \"street2\": null,\n                \"city\": \"Forest Hills\",\n                \"state\": \"NY\",\n                \"postalCode\": \"11375\",\n                \"country\": \"US\"\n            },\n            \"dateOfBirth\": \"2001-08-10\",\n            \"email\": \"peter@oscorp.com\",\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"15555555\"\n            },\n            \"status\": \"AwaitingDocuments\"\n        },\n        \"relationships\": {\n            \"org\": {\n                \"type\": \"org\",\n                \"id\": 1\n            },\n            \"documents\": [\n                {\n                    \"type\": \"document\",\n                    \"id\": 1,\n                    \"attributes\": {\n                        \"documentType\": \"UtilityBill\",\n                        \"status\": \"Required\",\n                        \"name\": \"Peter Parker\",\n                        \"address\": {\n                            \"street\": \"20 Ingram St\",\n                            \"street2\": null,\n                            \"city\": \"Forest Hills\",\n                            \"state\": \"NY\",\n                            \"postalCode\": \"11375\",\n                            \"country\": \"US\"\n                        }\n                    }\n                },\n                {\n                    \"type\": \"document\",\n                    \"id\": 2,\n                    \"attributes\": {\n                        \"documentType\": \"DriverLicense\",\n                        \"status\": \"Required\",\n                        \"name\": \"Peter Parker\",\n                        \"dateOfBirth\": \"2001-08-10\"\n                    }\n                }\n            ]\n        }\n    }\n}"
						}
					]
				}
			]
		},
		{
			"name": "Authorizations",
			"item": [
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/authorizations/?page[limit]=10&page[offset]=0",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"authorizations",
								""
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10"
								},
								{
									"key": "page[offset]",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/authorizations/96",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"authorizations",
								"96"
							]
						}
					},
					"response": []
				},
				{
					"name": "Siesense",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/authorizations/96",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"authorizations",
								"96"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all by Customer Id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/authorizations/?filter[customerId]=10000",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"authorizations",
								""
							],
							"query": [
								{
									"key": "filter[customerId]",
									"value": "10000"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all by Account Id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/authorizations/?filter[accountId]=10001",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"authorizations",
								""
							],
							"query": [
								{
									"key": "filter[accountId]",
									"value": "10001"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Authorization Requests",
			"item": [
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/authorization-requests",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"authorization-requests"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/authorization-requests/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"authorization-requests",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Approve",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"approveAuthorizationRequest\",\n        \"attributes\": {\n            \"amount\": 100,\n            \"tags\": {\n                \"test\": \"webhook-tag\",\n                \"key\": \"another-tag\",\n                \"number\": \"111\"\n            }\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/authorization-requests/68/approve",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"authorization-requests",
								"68",
								"approve"
							]
						}
					},
					"response": []
				},
				{
					"name": "Decline",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"declineAuthorizationRequest\",\n        \"attributes\": {\n            \"reason\": \"InsufficientFunds\"\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/authorization-requests/5/decline",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"authorization-requests",
								"5",
								"decline"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "BatchRelease",
			"item": [
				{
					"name": "Batch Release",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n \t\"data\":[\n         {\n\t\t\"type\":\"batchRelease\",\n\t\t\"attributes\": {\n            \"senderName\": \"Richard Hendricks\",\n            \"senderAccountNumber\": \"123456798\",\n            \"amount\": 3000,\n            \"description\": \"BATCH PYMT\",\n            \"senderAddress\": {\n                \"street\": \"5230 Newell Rd\",\n                \"street2\": null,\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94303\",\n                \"country\": \"US\"\n            }\n\t\t},\n\t\t\"relationships\": {\n            \"batchAccount\": {\n                \"data\": {\n                    \"type\": \"batchAccount\",\n                    \"id\": \"10096\"\n                }\n\t\t\t},\n\t\t\t\"receiver\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10097\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n    {\n\t\t\"type\":\"batchRelease\",\n\t\t\"attributes\": {\n            \"senderName\": \"Richard Hendricks\",\n            \"senderAccountNumber\": \"123456798\",\n            \"amount\": 2000,\n            \"description\": \"BATCH PYMT\",\n            \"senderAddress\": {\n                \"street\": \"5230 Newell Rd\",\n                \"street2\": null,\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94303\",\n                \"country\": \"US\"\n            }\n\t\t},\n\t\t\"relationships\": {\n            \"batchAccount\": {\n                \"data\": {\n                    \"type\": \"batchAccount\",\n                    \"id\": \"10096\"\n                }\n\t\t\t},\n\t\t\t\"receiver\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10017\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}]  \n}"
						},
						"url": {
							"raw": "{{server_url}}/batch-release",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"batch-release"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Cards",
			"item": [
				{
					"name": "Create Individual Debit Card",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"individualDebitCard\",\n        \"attributes\": {\n            \"shippingAddress\": {\n                \"street\": \"5230 Newell Rd\",\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94303\",\n                \"country\": \"US\"\n            }\n        },\n        \"relationships\": {\n            \"account\": {\n                \"data\": {\n                    \"type\": \"depositAccount\",\n                    \"id\": \"475891\"\n                }\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/cards",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Individual Debit Card",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"individualDebitCard\",\n        \"attributes\": {\n            \"shippingAddress\": {\n                \"street\": \"52351 Newell Rd\",\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94304\",\n                \"country\": \"US\"\n            },\n            \"limits\": {\n                \"dailyWithdrawal\": 1000,\n                \"dailyPurchase\": 2000,\n                \"monthlyWithdrawal\": 5000,\n                \"monthlyPurchase\": 7000\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/cards/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Individual Virtual Debit Card",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"individualVirtualDebitCard\",\n            \"limits\": {\n                \"dailyWithdrawal\": 1000,\n                \"dailyPurchase\": 2000,\n                \"monthlyWithdrawal\": 5000,\n                \"monthlyPurchase\": 7000\n            }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/cards/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Individual Virtual Debit Card",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"individualVirtualDebitCard\",\n        \"attributes\": {\n            \"limits\": {\n                \"dailyWithdrawal\": 1000,\n                \"dailyPurchase\": 2000,\n                \"monthlyWithdrawal\": 5000,\n                \"monthlyPurchase\": 7000\n            }\n        },\n        \"relationships\": {\n            \"account\": {\n                \"data\": {\n                    \"type\": \"depositAccount\",\n                    \"id\": \"1330943\"\n                }\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/cards",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Business Debit Card",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"businessDebitCard\",\n\t\t\"attributes\": {\n\t\t\t\"shippingAddress\": {\n                \"street\": \"5230 Newell Rd\",\n                \"street2\": null,\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94303\",\n                \"country\": \"US\"\n            },\n\t\t    \"fullName\": {\n                \"first\": \"Richard\",\n                \"last\": \"Hendricks\"\n            },\n            \"ssn\": \"123456789\",\n            \"address\": {\n                \"street\": \"5230 Newell Rd\",\n                \"street2\": null,\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94303\",\n                \"country\": \"US\"\n            },\n            \"dateOfBirth\": \"2001-08-10\",\n            \"email\": \"richard@piedpiper.com\",\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"5555555555\"\n            }\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10000\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/cards",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Business Debit Card",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"businessDebitCard\",\n\t\t\"attributes\": {\n\t\t\t\"shippingAddress\": {\n                \"street\": \"5230 Newell Rd\",\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94301\",\n                \"country\": \"US\"\n            },\n            \"address\": {\n                \"street\": \"5231 Newell Rd\",\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94301\",\n                \"country\": \"US\"\n            },\n            \"email\": \"richard2@piedpiper.com\",\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"5555555566\"\n            }\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/cards/94",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"94"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Business Virtual Debit Card",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"businessVirtualDebitCard\",\n\t\t\"attributes\": {\n            \"address\": {\n                \"street\": \"5231 Newell Rd\",\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94301\",\n                \"country\": \"US\"\n            },\n            \"email\": \"richard2@piedpiper.com\",\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"5555555566\"\n            }\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/cards/49",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"49"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Business Virtual Debit Card",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"businessVirtualDebitCard\",\n\t\t\"attributes\": {\n\t\t     \"address\": {\n                \"street\": \"13800 Northeast 12th Avenue\",\n                \"street2\": \"418\",\n                \"city\": \"North Miami\",\n                \"state\": \"FL\",\n                \"postalCode\": \"33161\",\n                \"country\": \"US\"\n            },\n            \"fullName\": {\n                \"first\": \"Michaelle\",\n                \"last\": \"Charlostin\"\n            },\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"7866421454\"\n            },\n            \"email\": \"kpsparis@gmail.com\",\n            \"dateOfBirth\": \"1987-08-16\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"611742\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/cards",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards"
							]
						}
					},
					"response": []
				},
				{
					"name": "Report Lost",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/cards/41/report-lost",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"41",
								"report-lost"
							]
						}
					},
					"response": []
				},
				{
					"name": "Report Stolen",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/cards/41/report-stolen",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"41",
								"report-stolen"
							]
						}
					},
					"response": []
				},
				{
					"name": "Freeze",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/cards/41/freeze",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"41",
								"freeze"
							]
						}
					},
					"response": []
				},
				{
					"name": "Unfreeze",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/cards/41/unfreeze",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"41",
								"unfreeze"
							]
						}
					},
					"response": []
				},
				{
					"name": "Close",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/cards/41/close",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"41",
								"close"
							]
						}
					},
					"response": []
				},
				{
					"name": "Replace",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"replaceCard\",\n\t\t\"attributes\": {\n\t\t\t\"shippingAddress\": {\n                \"street\": \"5230 Newell Rd\",\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94303\",\n                \"country\": \"US\"\n            }\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/cards/12/replace",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"12",
								"replace"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/cards/?page[limit]=10&filter[accountId]=83229",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								""
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10"
								},
								{
									"key": "page[offset]",
									"value": "0",
									"disabled": true
								},
								{
									"key": "filter[accountId]",
									"value": "83229"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get PIN status",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/cards/5/secure-data/pin/status",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"5",
								"secure-data",
								"pin",
								"status"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/cards/536744",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"536744"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Limits",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/cards/1685271/limits",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								"1685271",
								"limits"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Customer Cards",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/cards/?filter[customerId]=3",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"cards",
								""
							],
							"query": [
								{
									"key": "filter[customerId]",
									"value": "3"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Check Payments",
			"item": [
				{
					"name": "Get",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/check-payments/10002",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-payments",
								"10002"
							]
						}
					},
					"response": []
				},
				{
					"name": "Cancel",
					"request": {
						"method": "POST",
						"header": [],
						"url": {
							"raw": "{{server_url}}/check-payments/10002/cancel",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-payments",
								"10002",
								"cancel"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get All",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/check-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-payments"
							],
							"query": [
								{
									"key": "filter[status][0]",
									"value": "Rejected",
									"disabled": true
								},
								{
									"key": "filter[rewardedTransactionId]",
									"value": "7",
									"disabled": true
								},
								{
									"key": "filter[receivingAccountId]",
									"value": "10000",
									"disabled": true
								},
								{
									"key": "filter[customerId]",
									"value": "10000",
									"disabled": true
								},
								{
									"key": "filter[cardId]",
									"value": "1234",
									"disabled": true
								},
								{
									"key": "filter[until]",
									"value": "2022-03-31T11:31:26.850Z",
									"disabled": true
								},
								{
									"key": "filter[since]",
									"value": "2022-03-31T14:42:48.943Z",
									"disabled": true
								},
								{
									"key": "filter[tags]",
									"value": "{\"customer_type\":\"vip\"}",
									"disabled": true
								},
								{
									"key": "sort",
									"value": "-createdAt",
									"disabled": true
								},
								{
									"key": "include",
									"value": "customer,account",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Approve",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{unit_token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/check-payments/130/approve",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-payments",
								"130",
								"approve"
							]
						}
					},
					"response": []
				},
				{
					"name": "Return",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"checkPaymentReturn\",\n        \"attributes\": {\n            \"returnReason\": \"Altered/Fictitious\"\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/check-payments/130/return",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-payments",
								"130",
								"return"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Check Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\":{\n  \"type\":\"checkPayment\",\n  \"attributes\": {\n   \"counterparty\": {\n                \"name\": \"Itzik Shpitzik\",\n                \"address\": {\n                    \"street\": \"20 Ingram St\",\n                    \"city\": \"Forest Hills\",\n                    \"state\": \"CA\",\n                    \"postalCode\": \"11375\",\n                    \"country\": \"US\"\n                }\n            },\n            \"amount\": 1000,\n            \"idempotencyKey\": \"23454833-33333\",\n            \"description\": \"TESTING TEST\",\n            \"memo\": \"this is a testing memo\"\n  },\n  \"relationships\": {\n   \"account\": {\n    \"data\": {\n     \"type\": \"depositAccount\",\n     \"id\": \"123456\"\n    }\n   },\n            \"customer\": {\n                \"data\": {\n                    \"type\": \"customer\",\n                    \"id\": \"5678\"\n                }\n            }\n  }\n }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/check-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-payments"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Check Deposits",
			"item": [
				{
					"name": "Create Check Deposit",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"checkDeposit\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 50000,\n            \"description\": \"salary\"\t\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10000\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/check-deposits",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-deposits"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/check-deposits",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-deposits"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/check-deposits/10",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-deposits",
								"10"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\": \"checkDeposit\",\n\t\t\"attributes\": {\n            \"tags\": {\n                \"by\": null,\n                \"id\": \"23033b64-38f8-4dbc-91a1-313ff0156d02\"\n            }\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/check-deposits/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-deposits",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Confirm",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\": \"resubmitCheckDeposit\",\n\t\t\"attributes\": {\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/check-deposits/135/resubmit",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-deposits",
								"135",
								"resubmit"
							]
						}
					},
					"response": []
				},
				{
					"name": "Upload Front Image",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200 or 204\", function () {",
									"    pm.expect(pm.response.code).to.be.oneOf([200,204]);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "file",
							"file": {
								"src": "/Users/avshalom/Downloads/3mbImage.jpeg"
							}
						},
						"url": {
							"raw": "{{server_url}}/check-deposits/922/front",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-deposits",
								"922",
								"front"
							]
						}
					},
					"response": []
				},
				{
					"name": "Upload Back Image",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200 or 204\", function () {",
									"    pm.expect(pm.response.code).to.be.oneOf([200,204]);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "file",
							"file": {
								"src": "/Users/gaitamir/Documents/SmartPay/check images/back1.jpeg"
							}
						},
						"url": {
							"raw": "{{server_url}}/check-deposits/922/back",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-deposits",
								"922",
								"back"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Front Image",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/check-deposits/60/front",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-deposits",
								"60",
								"front"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Back Image",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/check-deposits/60/back",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"check-deposits",
								"60",
								"back"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Counterparties",
			"item": [
				{
					"name": "Create Counterparty - Bank details",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"achCounterparty\",\n        \"attributes\": {\n            \"name\": \"April Oniel\",\n            \"routingNumber\": \"812345678\",\n            \"accountNumber\": \"1000000001\",\n            \"accountType\": \"Checking\",\n            \"type\": \"Person\",\n            \"tags\" : {\n                \"key\" : \"value\"\n            }\n        },\n        \"relationships\": {\n            \"customer\": {\n                \"data\": {\n                    \"type\": \"customer\",\n                    \"id\": \"10000\"\n                }\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/counterparties",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"counterparties"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Counterparty - Processor token",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"achCounterparty\",\n        \"attributes\": {\n            \"plaidProcessorToken\": \"processor-sandbox-a245dc94-33bf-4d99-a4dd-f88890791784\",\n            \"type\": \"Person\",\n            \"permissions\": \"CreditOnly\"\n        },\n        \"relationships\": {\n            \"customer\": {\n                \"data\": {\n                    \"type\": \"customer\",\n                    \"id\": \"10000\"\n                }\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/counterparties",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"counterparties"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/counterparties/?page[limit]=10&page[offset]=0",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"counterparties",
								""
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10"
								},
								{
									"key": "page[offset]",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Counterparty",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/counterparties/?page[limit]=10&page[offset]=0",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"counterparties",
								""
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10"
								},
								{
									"key": "page[offset]",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Counterparty Balance",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/counterparties/2/balance",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"counterparties",
								"2",
								"balance"
							]
						}
					},
					"response": []
				},
				{
					"name": "Delete Counterparty",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "{{server_url}}/counterparties/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"counterparties",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Filter Counterparties",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/counterparties/?filter[customerId]=10000",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"counterparties",
								""
							],
							"query": [
								{
									"key": "filter[customerId]",
									"value": "10000"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Plaid Token",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"counterparty\",\n        \"attributes\": {\n            \"plaidProcessorToken\": \"processor-sandbox-b14ad1fd-3398-46a8-a316-5bf574fc2459\"\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/counterparties/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"counterparties",
								"1"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Customers",
			"item": [
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/customers",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/customers/1092170",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"1092170"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Individual Customer",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\": \"individualCustomer\",\n\t\t\"attributes\": {\n            \"passport\": \"543543543\",\n            \"nationality\": \"IL\"\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/customers/10001",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"10001"
							]
						}
					},
					"response": []
				},
				{
					"name": "Archive",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"archiveCustomer\",\n        \"attributes\": {\n            \"reason\": \"Inactive\"\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/customers/10008/archive",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"10008",
								"archive"
							]
						}
					},
					"response": []
				},
				{
					"name": "Archive Copy",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"archiveCustomer\",\n        \"attributes\": {\n            \"reason\": \"Inactive\"\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/customers/10008/archive",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"10008",
								"archive"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add Authorized Users",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"addAuthorizedUsers\",\n    \"attributes\": {\n      \"authorizedUsers\": [\n        {\n          \"fullName\": {\n            \"first\": \"Erlich\",\n            \"last\": \"Backman\"\n          },\n          \"email\": \"erlich@piedpiper.com\",\n          \"phone\": {\n            \"countryCode\": \"1\",\n            \"number\": \"1234567890\"\n          },\n          \"canConnectWithAuthVendor\": true\n        }\n      ]\n    }\n  }\n}"
						},
						"url": {
							"raw": "{{server_url}}/customers/10000/authorized-users",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"10000",
								"authorized-users"
							]
						}
					},
					"response": []
				},
				{
					"name": "Remove Authorized Users",
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\": {\n    \"type\": \"removeAuthorizedUsers\",\n    \"attributes\": {\n      \"authorizedUsersEmails\": [\n        \"erlich@piedpiper.com\"\n      ]\n    }\n  }\n}"
						},
						"url": {
							"raw": "{{server_url}}/customers/10000/authorized-users",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"10000",
								"authorized-users"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Business Customer",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\": \"individualCustomer\",\n\t\t\"attributes\": {\n            \"address\": {\n                \"street\": \"5230 Newell Rd\",\n                \"street2\": null,\n                \"city\": \"Palo Alto\",\n                \"state\": \"CA\",\n                \"postalCode\": \"94300\",\n                \"country\": \"US\"\n            },\n            \"email\": \"richard2@piedpiper.com\",\n            \"phone\": {\n                \"countryCode\": \"1\",\n                \"number\": \"1555555577\"\n            }\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/customers/284",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"284"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Trust Customer",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"trustCustomer\",\n    \"attributes\": {\n      \"contact\": {\n        \"fullName\": {\n          \"first\": \"Jone\",\n          \"last\": \"Doe\"\n        },\n        \"email\": \"jone.doe@unit-finance.com\",\n        \"phone\": {\n          \"countryCode\": \"1\",\n          \"number\": \"2025550108\"\n        },\n        \"address\": {\n          \"street\": \"5231 Newell Rd\",\n          \"street2\": null,\n          \"city\": \"Palo Alto\",\n          \"state\": \"CA\",\n          \"postalCode\": \"94301\",\n          \"country\": \"US\"\n        }\n      },\n      \"authorizedUsers\": [\n        {\n          \"fullName\": {\n            \"first\": \"Jared\",\n            \"last\": \"Dunn\"\n          },\n          \"email\": \"jared@piedpiper.com\",\n          \"phone\": {\n            \"countryCode\": \"1\",\n            \"number\": \"1555555590\"\n          }\n        }\n      ]\n    }\n  }\n}"
						},
						"url": {
							"raw": "{{server_url}}/customers/284",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"284"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Customer Bearer Token",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{orgToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"customerToken\",\n    \"attributes\": {\n      \"scope\": \"customers customer-token-write accounts-write accounts payments payments-create counterparties counterparties-create\",\n      \"verificationCode\": \"000001\",\n      \"verificationToken\": \"i8FWKLBjXEg3TdeK93G3K9PKLzhbT6CRhn/VKkTsm....\"\n    }\n  }\n}\n"
						},
						"url": {
							"raw": "{{server_url}}/customers/10224/token",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"10224",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Customer Bearer Token Using Upgradable Scope",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{orgToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"customerToken\",\n    \"attributes\": {\n      \"scope\": \"applications customers accounts cards transactions statements payments repayments counterparties authorizations rewards settlements linked-accounts authorization-requests check-deposits received-payments check-payments customer-token-write\",\n      \"upgradableScope\": \"cards-write cards-sensitive customers-write accounts-write cards-write cards-sensitive-write transactions-write payments-write repayments-write payments-write-counterparty payments-write-linked-account payments-write-ach-debit counterparties-write linked-accounts-write authorization-requests-write check-deposits-write received-payments-write\"\n    }\n  }\n}"
						},
						"url": {
							"raw": "{{server_url}}/customers/10224/token",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"10224",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Customer Bearer Token Using Jwt",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"customerToken\",\n\t\t\"attributes\": {\n            \"scope\": \"customers accounts payments payments-create counterparties counterparties-create\",\n            \"jwtToken\": \"{{jwtToken}}\"\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/customers/103997/token",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"103997",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Customer Bearer Token Verification",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"customerTokenVerification\",\n        \"attributes\": {\n            \"channel\": \"sms\"\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/customers/10000/token/verification",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"customers",
								"10000",
								"token",
								"verification"
							]
						}
					},
					"response": []
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Disputes",
			"item": [
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/disputes/?page[limit]=10&page[offset]=0",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"disputes",
								""
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10"
								},
								{
									"key": "page[offset]",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get by id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/disputes/49",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"disputes",
								"49"
							]
						}
					},
					"response": []
				},
				{
					"name": "Find",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/disputes/?page[limit]=10&page[offset]=0&filter[status]=InvestigationStarted",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"disputes",
								""
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10"
								},
								{
									"key": "page[offset]",
									"value": "0"
								},
								{
									"key": "filter[status]",
									"value": "InvestigationStarted"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Events",
			"item": [
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/events/?page[limit]=10&page[offset]=0",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"events",
								""
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10"
								},
								{
									"key": "page[offset]",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/events/79169",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"events",
								"79169"
							]
						}
					},
					"response": []
				},
				{
					"name": "Fire Event",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{}"
						},
						"url": {
							"raw": "{{server_url}}/events/279",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"events",
								"279"
							]
						},
						"description": "Remove 'balance' and 'hold' from the request"
					},
					"response": []
				}
			]
		},
		{
			"name": "Fees",
			"item": [
				{
					"name": "Fees",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n \t\"data\": {\n\t\t\"type\":\"fee\",\n\t\t\"attributes\": {\n            \"amount\": 1000,\n            \"description\": \"Monthly Subscription\"\n\t\t},\n\t\t\"relationships\": {           \n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10000\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/fees",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"fees"
							]
						}
					},
					"response": []
				},
				{
					"name": "Reverse Fees",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{orgToken}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n \t\"data\": {\n\t\t\"type\":\"feeReversal\",\n\t\t\"attributes\": {\n            \"description\": \"Monthly Subscription HTA newelwew\"\n\t\t},\n\t\t\"relationships\": {           \n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10005\"\n\t\t\t\t}\n\t\t\t},\n            \"transaction\": {\n                \"data\": {\n                    \"type\": \"transaction\",\n                    \"id\": \"47\"\n                }\n            }\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/fees/reverse",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"fees",
								"reverse"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Institutions",
			"item": [
				{
					"name": "Get By Routing Number",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/institutions/053285241",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"institutions",
								"053285241"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Partnerships",
			"item": [
				{
					"name": "Enable Card To Card Payment",
					"item": [
						{
							"name": "Astra",
							"request": {
								"method": "PATCH",
								"header": [
									{
										"key": "content-type",
										"value": "application/vnd.api+json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"data\": {\n        \"type\": \"astra\",\n        \"attributes\": {\n            \"token\": \"<TOKEN>\"\n        }\n    }\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{server_url}}/cards/214674/enableCardToCardPayment",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"cards",
										"214674",
										"enableCardToCardPayment"
									]
								}
							},
							"response": []
						},
						{
							"name": "Tabapay",
							"request": {
								"method": "PATCH",
								"header": [
									{
										"key": "content-type",
										"value": "application/vnd.api+json",
										"type": "text"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"data\": {\n        \"type\": \"tabapay\",\n        \"attributes\": {\n            \"clientId\": \"<CLIENT_ID>\",\n            \"token\": \"<TOKEN>\"\n        }\n    }\n}\n",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{server_url}}/cards/214674/enableCardToCardPayment",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"cards",
										"214674",
										"enableCardToCardPayment"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Patch Plaid Secret",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{orgToken}}",
									"type": "string"
								}
							]
						},
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							},
							{
								"key": "org-id",
								"value": "1",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"plaidSecrets\",\n\t\t\"attributes\": {\n\t\t\t\"clientId\": \"clientId\",\n\t\t\t\"secret\": \"secret\"\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/org-settings/plaid-secrets",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"org-settings",
								"plaid-secrets"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Payments",
			"item": [
				{
					"name": "Create ACH Payment - Inline counterparty",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"achPayment\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 100,\n\t\t\t\"direction\": \"Debit\",\n\t\t\t\"description\": \"Testing #3\",            \n            \"counterparty\": {\n                \"name\": \"Unit Finance Inc\",\n                \"routingNumber\": \"051409702\",\n                \"accountNumber\": \"1000000000\",\n                \"accountType\": \"Checking\"\n            }           \n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"337612\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create ACH Payment - Linked counterparty",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"achPayment\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 200,\n\t\t\t\"direction\": \"Credit\",\n\t\t\t\"description\": \"ACH PYMT\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"333616\"\n\t\t\t\t}\n\t\t\t},\n            \"counterparty\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"counterparty\",\n\t\t\t\t\t\"id\": \"506321\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create ACH Payment - Processor token",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"achPayment\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 200,\n\t\t\t\"direction\": \"Debit\",\n\t\t\t\"description\": \"ACH PYMT\",\n            \"verifyCounterpartyBalance\": true,\n            \"plaidProcessorToken\": \"processor-sandbox-a60b39ad-c998-454d-a424-9d6e37eb4671\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10000\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Book Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"bookPayment\",\n\t\t\"attributes\": {\n            \"amount\": 30000,\n            \"description\": \"La prosti de todo Nicaragua 😜😂\",\n            \"tags\": {\n                \"groupId\": \"af48419e-fb4d-4ceb-957c-d8212053c6e2\",\n                \"peerToPeer\": \"true\",\n                \"source\": \"peer-to-peer\",\n                \"notificationDescription\": \"La prosti de todo Nicaragua 😜😂\"\n            },\n            \"transactionSummaryOverride\": \"La prosti de todo Ncaagua XXXX | Ramon Emilio Mondragon Betancourt -\\u003e Fernando Josué  Perez Quintero\"\n        },\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10001\"\n\t\t\t\t}\n\t\t\t},\n            \"counterpartyAccount\": {\n                \"data\": {\n                    \"type\": \"depositAccount\",\n                    \"id\": \"10002\"\n                }\n            }\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Payments - Bulk",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\": [\n        {\n            \"type\":\"bookPayment\",\n            \"attributes\": {\n                \"amount\": 100,\n                \"direction\": \"Credit\",\n                \"description\": \"Book payment\",\n                \"idempotencyKey\": \"111\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"depositAccount\",\n                        \"id\": \"10000\"\n                    }\n                },\n                \"counterpartyAccount\": {\n                    \"data\": {\n                        \"type\": \"depositAccount\",\n                        \"id\": \"10001\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\":\"achPayment\",\n            \"attributes\": {\n                \"amount\": 200,\n                \"direction\": \"Debit\",\n                \"description\": \"ACH PYMT\",\n                \"counterparty\": {\n                    \"name\": \"April Oneil\",\n                    \"routingNumber\": \"812345678\",\n                    \"accountNumber\": \"1000000001\",\n                    \"accountType\": \"Checking\"\n                },\n                \"tags\": {\n                    \"by\": \"Reut\"\n                },\n                \"idempotencyKey\": \"222\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"depositAccount\",\n                        \"id\": \"10002\"\n                    }\n                }\n            }\n\t    },\n        {\n            \"type\": \"wirePayment\",\n            \"attributes\": {\n                \"amount\": 300,\n                \"direction\": \"Credit\",\n                \"description\": \"Wire payment\",\n                \"counterparty\": {\n                    \"name\": \"April Oneil\",\n                    \"routingNumber\": \"812345678\",\n                    \"accountNumber\": \"1000000001\",\n                    \"address\": {\n                        \"street\": \"20 Ingram St\",\n                        \"city\": \"Forest Hills\",\n                        \"state\": \"CA\",\n                        \"postalCode\": \"11375\",\n                        \"country\": \"US\"\n                    }\n                },\n                \"idempotencyKey\": \"333\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"depositAccount\",\n                        \"id\": \"10003\"\n                    }\n                }\n            }\n        }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payments/bulk",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments",
								"bulk"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Wire Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"wirePayment\",\n        \"attributes\": {\n            \"amount\": 100,\n            \"direction\": \"Credit\",\n            \"description\": \"Wire\",\n            \"counterparty\": {\n                \"name\": \"Unit Finance Inc\",\n                \"routingNumber\": \"021000021\",\n                \"accountNumber\": \"936\",\n                \"address\": {\n                    \"street\": \"550 Allerton Street\",\n                    \"city\": \"Redwood City\",\n                    \"state\": \"CA\",\n                    \"postalCode\": \"94063\",\n                    \"country\": \"US\"\n                }\n            }\n        },\n        \"relationships\": {\n            \"account\": {\n                \"data\": {\n                    \"type\": \"depositAccount\",\n                    \"id\": \"10054\"\n                }\n            }\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Bill Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"billPayment\",\n\t\t\"attributes\": {\n            \"billerId\": \"cac9255e-fdc7-4614-abeb-a699034ca5bc\",\n            \"accountNumber\": \"4008981111111111\",\n\t\t\t\"amount\": 220,\n\t\t\t\"description\": \"Utility Bill\",\n            \"idempotencyKey\": \"13\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10097\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Declined Incoming Payments",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/declined-incoming-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"declined-incoming-payments"
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10",
									"disabled": true
								},
								{
									"key": "filter[accountId]",
									"value": "762755",
									"disabled": true
								},
								{
									"key": "filter[customerId]",
									"value": null,
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all billers",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/payments/billpay/billers?name=verizon",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments",
								"billpay",
								"billers"
							],
							"query": [
								{
									"key": "name",
									"value": "verizon"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/payments/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Cancel ACH Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/payments/19/cancel",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments",
								"19",
								"cancel"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Payment",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\": \"achPayment\",\n\t\t\"attributes\": {\n            \"tags\": {\n                \"by\": null,\n                \"id\": \"23033b64-38f8-4dbc-91a1-313ff0156d02\"\n            },\n            \"clearingDaysOverride\": 3\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/payments/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payments",
								"1"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Received Payments",
			"item": [
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "1{{server_url}}/received-payments/1",
							"host": [
								"1{{server_url}}"
							],
							"path": [
								"received-payments",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get All",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/received-payments?filter[status][]=Pending",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"received-payments"
							],
							"query": [
								{
									"key": "filter[status][]",
									"value": "Pending"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Advance",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"url": {
							"raw": "{{server_url}}/received-payments/1/advance",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"received-payments",
								"1",
								"advance"
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\":{\n    \"type\": \"achReceivedPayment\",\n    \"attributes\": {\n      \"tags\": {\n        \"my_tags\": \"12345\"\n      }\n    }\n  }\n}"
						},
						"url": {
							"raw": "{{server_url}}/received-payments/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"received-payments",
								"1"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Recurring Payments",
			"item": [
				{
					"name": "Create Recurring Credit ACH Payment - Linked counterparty",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"recurringCreditAchPayment\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 100,\n\t\t\t\"description\": \"ACH PYMT\",\n            \"schedule\": {\n                \"dayOfMonth\": 28,\n                \"interval\": \"Monthly\"\n            }\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"167178\"\n\t\t\t\t}\n\t\t\t},\n            \"counterparty\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"counterparty\",\n\t\t\t\t\t\"id\": \"135292\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/recurring-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Recurring Debit ACH Payment - Linked counterparty",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"recurringDebitAchPayment\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 100,\n\t\t\t\"description\": \"ACH PYMT\",\n            \"isSameDayAch\": false,\n            \"verifyCounterpartyBalance\": true,\n            \"schedule\": {\n                \"dayOfMonth\": 28,\n                \"interval\": \"Monthly\"\n            }\n\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"167178\"\n\t\t\t\t}\n\t\t\t},\n            \"counterparty\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"counterparty\",\n\t\t\t\t\t\"id\": \"135292\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/recurring-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Recurring Credit Book Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"recurringCreditBookPayment\",\n    \"attributes\": {\n      \"amount\": 21,\n      \"description\": \"Book payment\",\n      \"tags\": {\n        \"test\": \"test\"\n      },\n      \"schedule\": {\n        \"interval\": \"Monthly\",\n        \"dayOfMonth\": 28\n      }\n    },\n    \"relationships\": {\n      \"account\": {\n        \"data\": {\n          \"type\": \"depositAccount\",\n          \"id\": \"167178\"\n        }\n      },\n      \"counterpartyAccount\": {\n        \"data\": {\n          \"type\": \"depositAccount\",\n          \"id\": \"571981\"\n        }\n      }\n    }\n  }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/recurring-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Disable Recuerring Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/recurring-payments/1/disable",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-payments",
								"1",
								"disable"
							]
						}
					},
					"response": []
				},
				{
					"name": "Enable Recurring Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/recurring-payments/1/enable",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-payments",
								"1",
								"enable"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/recurring-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/recurring-payments/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-payments",
								"1"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Returns",
			"item": [
				{
					"name": "Return Received ACH Transaction",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"returnAch\",\n        \"attributes\": {\n            \"reason\": \"InsufficientFunds\"\n        },\n        \"relationships\": {\n            \"account\": {\n                \"data\": {\n                    \"type\": \"depositAccount\",\n                    \"id\": \"10000\"\n                }\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/returns/10",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"returns",
								"10"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Rewards",
			"item": [
				{
					"name": "Create Reward",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"reward\",\n        \"attributes\": {\n            \"amount\": 1000,\n            \"description\": \"Sample Reward\",\n            \"tags\": {\n                \"customer_type\": \"vip\"\n            }\n        },\n        \"relationships\": {\n            \"receivingAccount\": {\n                \"data\": {\n                    \"type\": \"depositAccount\",\n                    \"id\": \"412727\"\n                }\n            }\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/rewards",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"rewards"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/rewards/",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"rewards",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Get All",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/rewards/",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"rewards",
								""
							],
							"query": [
								{
									"key": "filter[status][0]",
									"value": "Rejected",
									"disabled": true
								},
								{
									"key": "filter[rewardedTransactionId]",
									"value": "7",
									"disabled": true
								},
								{
									"key": "filter[receivingAccountId]",
									"value": "10000",
									"disabled": true
								},
								{
									"key": "filter[customerId]",
									"value": "10000",
									"disabled": true
								},
								{
									"key": "filter[cardId]",
									"value": "1234",
									"disabled": true
								},
								{
									"key": "filter[until]",
									"value": "2022-03-31T11:31:26.850Z",
									"disabled": true
								},
								{
									"key": "filter[since]",
									"value": "2022-03-31T14:42:48.943Z",
									"disabled": true
								},
								{
									"key": "filter[tags]",
									"value": "{\"customer_type\":\"vip\"}",
									"disabled": true
								},
								{
									"key": "sort",
									"value": "-createdAt",
									"disabled": true
								},
								{
									"key": "include",
									"value": "customer,account",
									"disabled": true
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Sandbox",
			"item": [
				{
					"name": "(Sandbox) Transmit ACH Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"transmitAchPayment\",\n\t\t\"relationships\": {\n\t\t\t\"payment\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"achPayment\",\n\t\t\t\t\t\"id\": \"14\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/ach/transmit",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"ach",
								"transmit"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Transmit Wire Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"transmitWirePayment\",\n\t\t\"relationships\": {\n\t\t\t\"payment\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"wirePayment\",\n\t\t\t\t\t\"id\": \"2\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/wire/transmit",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"wire",
								"transmit"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Incoming ACH Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"achPayment\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 100000,\n\t\t\t\"direction\": \"Credit\",\n\t\t\t\"description\": \"Sandbox Transaction\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10000\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Complete Recevied Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/received-payments/1/complete",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"received-payments",
								"1",
								"complete"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Create Received Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\":{\n    \"type\":\"achReceivedPayment\",\n    \"attributes\": {\n      \"amount\": 10000,\n      \"description\": \"paycheck simulation Sandbox\",\n      \"companyName\": \"UBER LTD\",\n      \"completionDate\": \"2020-07-30\",\n      \"secCode\": \"PPD\"\n    },\n    \"relationships\": {\n      \"account\": {\n        \"data\": {\n          \"type\": \"depositAccount\",\n          \"id\": \"10032\"\n        }\n      }\n    }\n  }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/received-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"received-payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Create Received ACH Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\":{\n    \"type\":\"achReceivedPayment\",\n    \"attributes\": {\n      \"amount\": 101,\n      \"companyName\": \"Pied Piper\",\n      \"settlementDate\": \"2025-07-30\",\n      \"secCode\": \"WEB\",\n      \"receivingEntityName\": \"Moshe Moshe\"\n    },\n    \"relationships\": {\n      \"account\": {\n        \"data\": {\n          \"type\": \"depositAccount\",\n          \"id\": \"10002\"\n        }\n      }\n    }\n  }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/received-ach-payment",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"received-ach-payment"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Clear ACH Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"clearAchPayment\",\n\t\t\"relationships\": {\n\t\t\t\"payment\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"achPayment\",\n\t\t\t\t\t\"id\": \"12\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/ach/clear",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"ach",
								"clear"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Return ACH Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"returnAchPayment\",\n\t\t\"relationships\": {\n\t\t\t\"payment\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"achPayment\",\n\t\t\t\t\t\"id\": \"10\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/ach/return",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"ach",
								"return"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Incoming Wire Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"wirePayment\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 520000,\n\t\t\t\"description\": \"Wire Payment from Sandbox\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10001\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/wire-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"wire-payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Purchase",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{unit_token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"purchaseTransaction\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 100,\n\t\t\t\"direction\": \"Debit\",\n\t\t\t\"merchantName\": \"Apple Inc.\",\n            \"merchantType\": 1000,\n            \"merchantLocation\": \"SAN FRANCISCO, CA, US\",\n            \"last4Digits\": \"3456\",\n            \"internationalServiceFee\": 50\n\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10002\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/purchases",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"purchases"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Incoming Check Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{org_token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"checkPayment\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 1000,\n            \"checkNumber\": \"9001\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"450209\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/check-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Card Transaction",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"cardTransaction\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 20,\n\t\t\t\"direction\": \"Debit\",\n            \"cardLast4Digits\": \"0048\",\n            \"summary\": \"summary text\",\n            \"merchantName\": \"Apple Inc.\",\n            \"merchantType\": 1000,\n            \"merchantLocation\": \"Cupertino, CA, US\",\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10012\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/card-transactions",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"card-transactions"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate ATM Withdrawal",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"atmTransaction\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 2500,\n            \"atmName\": \"HOME FED SAV BK\",\n            \"atmLocation\": \"Cupertino, CA, US\",\n            \"last4Digits\": \"0019\"\n        },\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10001\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/atm-withdrawals",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"atm-withdrawals"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate ATM Deposit",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"atmTransaction\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 2500,\n            \"atmName\": \"HOME FED SAV BK\",\n            \"atmLocation\": \"Cupertino, CA, US\",\n            \"last4Digits\": \"0019\"\n        },\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10001\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/atm-deposits",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"atm-deposits"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Purchase Reversal",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"cardReversalTransaction\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 2500,\n            \"last4Digits\": \"1234\"\n        },\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10001\"\n\t\t\t\t}\n\t\t\t},\n            \"relatedTransaction\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"transaction\",\n\t\t\t\t\t\"id\": \"150\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/reversals",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"reversals"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Authorization",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"authorization\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 2500,\n            \"cardLast4Digits\": \"0019\",\n\t\t\t\"merchantName\": \"Apple Inc.\",\n            \"merchantType\": 1000,\n            \"merchantLocation\": \"Cupertino, CA, US\",\n            \"recurring\": false\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10001\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\t\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/authorizations",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"authorizations"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Authorization Cancel",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10003\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\t\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/authorizations/11/cancel",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"authorizations",
								"11",
								"cancel"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Authorization Increase",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"authorization\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 250,\n            \"cardLast4Digits\": \"0006\",\n            \"recurring\": false\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10003\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\t\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/authorizations/10/increase",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"authorizations",
								"10",
								"increase"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Approve Application",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"applicationApprove\",\n        \"attributes\": {\n            \"reason\": \"sandbox\"\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/applications/10061/approve",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"applications",
								"10061",
								"approve"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Deny Application",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"applicationDeny\",\n        \"attributes\": {\n            \"reason\": \"sandbox\"\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/applications/10061/deny",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"applications",
								"10061",
								"deny"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Approve Document",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/sandbox/applications/10061/documents/10/approve",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"applications",
								"10061",
								"documents",
								"10",
								"approve"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Reject Document",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"documentReject\",\n        \"attributes\": {\n            \"reasonCode\": \"PoorQuality\",\n            \"reason\": \"other\"\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/sandbox/applications/10015/documents/8/reject",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"applications",
								"10015",
								"documents",
								"8",
								"reject"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Activate Card",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/sandbox/cards/8/activate",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"cards",
								"8",
								"activate"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Reissue Card",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"attributes\": {\n\t\t\t\"nextExpirationDate\": \"2033-11\"\n        }\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/sandbox/cards/1/reissue",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"cards",
								"1",
								"reissue"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Mark Card as Suspected fraud",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/sandbox/cards/4/fraud",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"cards",
								"4",
								"fraud"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Generate Account Statement",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/sandbox/accounts/10002/generate-statement",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"accounts",
								"10002",
								"generate-statement"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Generate Customer Account Statement",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{server_url}}/sandbox/customers/10000/accounts/10001/generate-statement",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"customers",
								"10000",
								"accounts",
								"10001",
								"generate-statement"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Approve Check Deposit",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/check-deposits/10/approve",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-deposits",
								"10",
								"approve"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Clear Check Deposit",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/check-deposits/1/clear",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-deposits",
								"1",
								"clear"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Return Check Deposit",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/check-deposits/1/return",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-deposits",
								"1",
								"return"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Transmit Check Deposit",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/check-deposits/1/transmit",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-deposits",
								"1",
								"transmit"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Purchase Authorization Request",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"purchaseAuthorizationRequest\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 2500,\n\t\t\t\"merchantName\": \"Apple Inc.\",\n            \"merchantType\": 1000,\n            \"merchantLocation\": \"Cupertino, CA\",\n            \"recurring\": false\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"card\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"card\",\n\t\t\t\t\t\"id\": \"7\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\t\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/authorization-requests/purchase",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"authorization-requests",
								"purchase"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Card Transaction Authorization Request",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"cardTransactionAuthorizationRequest\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 2500,\n\t\t\t\"merchantName\": \"Apple Inc.\",\n            \"merchantType\": 1000,\n            \"merchantLocation\": \"Cupertino, CA\",\n            \"recurring\": false\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"card\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"card\",\n\t\t\t\t\t\"id\": \"7\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\t\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/authorization-requests/card-transaction",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"authorization-requests",
								"card-transaction"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Healthcare Purchase Authorization Request",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"purchaseAuthorizationRequest\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 2500,\n\t\t\t\"merchantName\": \"Apple Inc.\",\n            \"merchantType\": 1000,\n            \"merchantLocation\": \"Cupertino, CA\",\n            \"recurring\": false,\n            \"healthcareAmounts\": {\n                \"transitAmount\": 10,\n                \"prescriptionRXAmount\": 0,\n                \"visionOpticalAmount\": 0,\n                \"clinicOtherQualifiedMedicalAmount\": 0,\n                \"dentalAmount\": 0,\n                \"totalHealthcareAmount\": 10\n            }\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"card\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"card\",\n\t\t\t\t\t\"id\": \"7\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\t\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/authorization-requests/purchase",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"authorization-requests",
								"purchase"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Interchange Enrichment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"interchangeEnrichment\",\n    \"attributes\": {\n      \"interchange\": 121\n    },\n    \"relationships\": {\n      \"account\": {\n        \"data\": {\n          \"type\": \"depositAccount\",\n          \"id\": \"10002\"\n        }\n      }\n    }\n  }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/transactions/1/interchange-enrichment",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"transactions",
								"1",
								"interchange-enrichment"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Create Dispute",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"dispute\",\n    \"attributes\": {\n      \"amount\": 123\n    },\n    \"relationships\": {\n      \"account\": {\n        \"data\": {\n          \"type\": \"account\",\n          \"id\": \"10002\"\n        }\n      },\n      \"transaction\": {\n        \"data\": {\n          \"type\": \"transaction\",\n          \"id\": \"5\"\n        }\n      }\n    }\n  }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/disputes/",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"disputes",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Resolve Won Dispute",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/disputes/27/resolve-won",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"disputes",
								"27",
								"resolve-won"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Provisional Credit Dispute",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/disputes/27/credit-provisionally",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"disputes",
								"27",
								"credit-provisionally"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Resolve Lost Dispute",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/disputes/18/resolve-lost",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"disputes",
								"18",
								"resolve-lost"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Deny Dispute",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/disputes/28/deny",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"disputes",
								"28",
								"deny"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate ATM Authorization Request",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"atmAuthorizationRequest\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 2500,\n            \"atmName\": \"HOME FED SAV BK\",\n            \"atmLocation\": \"Cupertino, CA, US\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"card\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"card\",\n\t\t\t\t\t\"id\": \"7\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\t\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/authorization-requests/atm",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"authorization-requests",
								"atm"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Generate check front",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/generate-check/front?payToTheOrderOf=Pied Piper&amount=50&amountString=Fifty&for=Winning startup competition",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"generate-check",
								"front"
							],
							"query": [
								{
									"key": "payToTheOrderOf",
									"value": "Pied Piper"
								},
								{
									"key": "amount",
									"value": "50"
								},
								{
									"key": "amountString",
									"value": "Fifty"
								},
								{
									"key": "for",
									"value": "Winning startup competition"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Generate check back",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/generate-check/back",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"generate-check",
								"back"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Purchase Copy",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"purchaseTransaction\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 2500,\n\t\t\t\"direction\": \"Debit\",\n\t\t\t\"merchantName\": \"Apple Inc.\",\n            \"merchantType\": 1000,\n            \"merchantLocation\": \"SAN FRANCISCO, CA, US\",\n\t\t\t\"coordinates\": {\n\t\t\t\t\"longitude\": 121.323,\n\t\t\t\t\"latitude\": -33.33323\n\t\t\t},\n            \"last4Digits\": \"3456\",\n            \"internationalServiceFee\": 50\n\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10002\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/purchases",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"purchases"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Check Payment Transmission",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/check-payments/{{checkPaymentId}}/mail",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-payments",
								"{{checkPaymentId}}",
								"mail"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Check Payment Delivery Status (InLocalArea)",
					"request": {
						"method": "POST",
						"header": [],
						"url": {
							"raw": "{{server_url}}/sandbox/check-payments/Id/inlocalarea",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-payments",
								"Id",
								"inlocalarea"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Check Payment Delivery Status (InProduction)",
					"request": {
						"method": "POST",
						"header": [],
						"url": {
							"raw": "{{server_url}}/sandbox/check-payments/Id/inProduction",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-payments",
								"Id",
								"inProduction"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Check Payment Delivery Status (rerouted)",
					"request": {
						"method": "POST",
						"header": [],
						"url": {
							"raw": "{{server_url}}/sandbox/check-payments/{{checkPaymentId}}/reRoute",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-payments",
								"{{checkPaymentId}}",
								"reRoute"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Check Payment Delivery",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/check-payments/{{checkPaymentId}}/deliver",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-payments",
								"{{checkPaymentId}}",
								"deliver"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Check Payment - Returned to Sender",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/check-payments/{{checkPaymentId}}/returnToSender",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"check-payments",
								"{{checkPaymentId}}",
								"returnToSender"
							],
							"query": [
								{
									"key": "",
									"value": "",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Purchase Credit",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"// pm.test(\"Status code is 201\", function () {",
									"//     pm.response.to.have.status(201);",
									"// });"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"purchaseTransaction\",\n\t\t\"attributes\": {\n\t\t\t\"amount\": 250,\n\t\t\t\"direction\": \"Debit\",\n\t\t\t\"merchantName\": \"Apple Inc.\",\n            \"merchantType\": 1000,\n            \"merchantLocation\": \"Cupertino, CA\",\n\t\t\t\"coordinates\": {\n\t\t\t\t\"longitude\": 121.323,\n\t\t\t\t\"latitude\": -33.33323\n\t\t\t},\n            \"last4Digits\": \"{{last4Digits}}\",\n            \"internationalServiceFee\": 0\n\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"creditAccount\",\n\t\t\t\t\t\"id\": \"{{creditAccountId}}\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/purchases",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"purchases"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Transmit ACH Repayment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"transmitAchRepayment\",\n\t\t\"relationships\": {\n\t\t\t\"repayment\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"achRepayment\",\n\t\t\t\t\t\"id\": \"5\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/ach-repayments/transmit",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"ach-repayments",
								"transmit"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) clear ACH Repayment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"clearAchRepayment\",\n\t\t\"relationships\": {\n\t\t\t\"repayment\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"achRepayment\",\n\t\t\t\t\t\"id\": \"5\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/ach-repayments/clear",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"ach-repayments",
								"clear"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) return ACH Repayment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"returnAchRepayment\",\n\t\t\"relationships\": {\n\t\t\t\"repayment\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"achRepayment\",\n\t\t\t\t\t\"id\": \"5\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/sandbox/ach-repayments/return",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"ach-repayments",
								"return"
							]
						}
					},
					"response": []
				},
				{
					"name": "(Sandbox) Simulate Originate Recurring Repayment",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{unit_token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/sandbox/recurring-repayments/1/originate",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"sandbox",
								"recurring-repayments",
								"1",
								"originate"
							],
							"query": [
								{
									"key": "",
									"value": "",
									"disabled": true
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Statements",
			"item": [
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/statements/?page[limit]=10&page[offset]=0",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"statements",
								""
							],
							"query": [
								{
									"key": "page[limit]",
									"value": "10"
								},
								{
									"key": "page[offset]",
									"value": "0"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all by Customer Id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/statements?filter[customerId]=10000",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"statements"
							],
							"query": [
								{
									"key": "filter[customerId]",
									"value": "10000"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Statement HTML",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/statements/7/html",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"statements",
								"7",
								"html"
							]
						}
					},
					"response": [
						{
							"name": "Get Statement HTML",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{server_url}}/statements/18503/html",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"statements",
										"18503",
										"html"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "html",
							"header": [],
							"cookie": [],
							"body": "<!DOCTYPE html>\n<html>\n    <head>\n        <meta content=\"width=device-width, initial-scale=1\" name=\"viewport\" />\n        <style>\n  @font-face {\n            font-family: custom-font;\n            src: url('');\n        }\nbody {\n  font-family: custom-font, \"Open Sans\", sans-serif;\n  line-height: 1.25;\n  margin: 32px;\n}\n\n.row {\n      display: flex;\n      flex-direction: row;\n      margin-top: 50px;\n      max-width: 50%;\n  }\n\ntable {\n  border-collapse: collapse;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  table-layout: fixed;\n}\n\ntable caption {\n  font-size: 1.5em;\n  margin: .5em 0 .75em;\n}\n\ntable tr {\n  background-color: white;\n  border-bottom: 1px solid #ddd;\n  padding: .35em;\n}\n\ntable th,\ntable td {\n  padding: .625em;\n  text-align: left;\n}\n\ntable th {\n  background-color: rgba(239, 81, 34, 0.8);\n  font-size: .85em;\n  letter-spacing: .1em;\n  text-transform: uppercase;\n}\n.column {\n  float: left;\n  width: 50%;\n}\n\n/* Clear floats after the columns */\n.row:after {\n  content: \"\";\n  display: table;\n  clear: both;\n}\n\n@media screen and (max-width: 900px) {\n.row {\n   max-width: none;\n }\n\n  table {\n    border: 0;\n  }\n\n  table caption {\n    font-size: 1.3em;\n  }\n\n  table thead {\n    border: none;\n    clip: rect(0 0 0 0);\n    height: 1px;\n    margin: -1px;\n    overflow: hidden;\n    padding: 0;\n    position: absolute;\n    width: 1px;\n  }\n\n  table tr {\n    border-bottom: 3px solid #ddd;\n    display: block;\n    margin-bottom: .625em;\n  }\n\n  table td {\n    border-bottom: 1px solid #ddd;\n    display: block;\n    font-size: .8em;\n    text-align: right;\n    min-height: 1em;\n  }\n\n  table td::before {\n    /*\n    * aria-label has no advantage, it won't be read inside a table\n    content: attr(aria-label);\n    */\n    content: attr(data-label);\n    float: left;\n    font-weight: bold;\n    text-transform: uppercase;\n  }\n\n  table td:last-child {\n    border-bottom: 0;\n  }\n\n  .column {\n    width: 100%;\n  }\n\n}\n.customer-name {\n  font-size: 1.8em;\n}\n.details-row {\n  display: flex;\n  justify-content: space-between;\n  flex-wrap: wrap;\n  border-top: 1px solid #ddd;\n  margin-top: 20px;\n}\n  </style>\n    </head>\n    <body>\n        <div class=\"details-row\">\n            <div class=\"customer-column\">\n                <p class=\"customer-name\">\n          Stoovo Inc\n        </p>\n                <p>\n          610 East Weddell Drive\n                    <br>Sunnyvale, CA, 94089\n                    <br>US\n        \n                </p>\n            </div>\n            <div class=\"account-column\">\n                <div>\n                    <p>\n           Blue Ridge Bank\n         </p>\n                    <p>\n           17 West Main Street\n                        <br>Luray, VA, 22835\n                        <br>US\n         \n                    </p>\n                </div>\n                <div>\n                    <p>\n           Account: \n                        <span style=\"font-family: monospace;\">87XXXX0422</span>\n                    </p>\n                </div>\n            </div>\n        </div>\n        <div class=\"statement-period\">\n            <p>Statement Period: May 01 2021\n                           to May 31 2021</p>\n        </div>\n        <table class=\"transaction-table\">\n            <caption>Statement Summary</caption>\n            <thead>\n                <tr>\n                    <th scope=\"col\">Date</th>\n                    <th scope=\"col\" width=\"40%\">Description</th>\n                    <th scope=\"col\">Withdrawals/Debit</th>\n                    <th scope=\"col\">Deposits/Credit</th>\n                    <th scope=\"col\">Balance</th>\n                </tr>\n            </thead>\n            <tbody>\n                <tr class=\"open-row\">\n                    <td data-label=\"Date\">May 01</td>\n                    <td data-label=\"Description\">\n                        <b>Opening Balance</b>\n                    </td>\n                    <td data-label=\"Withdrawals/Debit\"></td>\n                    <td data-label=\"Deposits/Credit\"></td>\n                    <td data-label=\"Balance\">\n                        <b>0.00</b>\n                    </td>\n                </tr>\n                <tr class=\"transaction-12597\">\n                    <td data-label=\"Date\">May 05</td>\n                    <td data-label=\"Description\">Stoovo  |  Unit <> St\n                    </td>\n                    <td data-label=\"Withdrawals\"></td>\n                    <td data-label=\"Deposits\">20,000.00</td>\n                    <td data-label=\"Balance\">20,000.00</td>\n                </tr>\n                <tr class=\"close-row\">\n                    <td data-label=\"Date\">May 31</td>\n                    <td data-label=\"Description\">\n                        <b>Closing Balance</b>\n                    </td>\n                    <td data-label=\"Withdrawals/Debit\"></td>\n                    <td data-label=\"Deposits/Credit\"></td>\n                    <td data-label=\"Balance\">\n                        <b>20,000.00</b>\n                    </td>\n                </tr>\n            </tbody>\n        </table>\n        <div class=\"row\">\n            <table class=\"fee-table\">\n                <caption>Fees Summary</caption>\n                <thead>\n                    <tr>\n                        <th scope=\"col\">Type</th>\n                        <th scope=\"col\">Total for this period</th>\n                    </tr>\n                </thead>\n                <tbody>\n                    <tr>\n                        <td data-label=\"Type\">Fees</td>\n                        <td data-label=\"Total for this period\">0.00</td>\n                    </tr>\n                </tbody>\n            </table>\n        </div>\n        <div style=\"clear:both; margin-top: 50px;\">\n            <p>\n                <h5>IN CASE OF ERRORS OR QUESTIONS ABOUT YOUR CONSUMER ELECTRONIC TRANSFERS</h5>\n                <p>\n    In case of errors or questions about your electronic transactions, call (602) 6716704 or send an email at\n    support@unit.co if you think\n    your statement or receipt is wrong or if you need more information about a transaction listed in the statement\n    or receipt.\n</p>\n                <p>\n    We must hear from you no later than 60 days after we sent you the FIRST statement on which the error or\n    problem appeared.\n</p>\nYou will need to provide us:\n                <ol type=\"a\">\n                    <li>Your name, account number and/or 16-digit Card number</li>\n                    <li>Describe the error of the transfer you are unsure about and explain in detail why you believe there is an\n    error or why you need more information.\n    </li>\n                    <li>Include the dollar amount of the suspected error.</li>\n                </ol>\n                <p>\n    If you provide this information verbally, we may require that you send your complaint or question in writing\n    within ten (10) business days. We will determine whether an error occurred within ten (10) business days after\n    we hear from you and will correct any error promptly. If we need more time, however, we may take up to forty-\n    five (45) days to investigate your complaint or question. If we decide to do this, we will credit your Account\n    within ten (10) business days for the amount you think is in error, so that you will have use of the money during\n    the time it takes to complete the investigation. If we ask you to put your complaint or question in writing and\n    you do not provide it within ten (10) business days, we may not credit your Account.\n</p>\n                <p>\n    For errors involving a new Account, POS transactions or foreign-initiated transactions, we may take up to ninety\n    (90) days to investigate your complaint or question. For new accounts, we may take up to twenty (20) business\n    days to credit your Account for the amount you think is in error. We will notify you with the results within three (3)\n    business days after completing the investigation. If we decide that there was no error, we will send you a written\n    explanation. You may request copies of the documentation used in the investigation\n</p>\n                <h5>IN CASE OF ERRORS OR QUESTIONS ABOUT YOUR STATEMENT</h5>\n                <p>\n    If you think your statement is incorrect, or if you need more information about a transaction on your statement,\n    notify us immediately.</p>\n                <p>\n    We must hear from you no later than 60 days after we sent you the first statement on which the error or\n    problem appeared. You can call us, but doing so will not preserve your rights.</p>\nYou will need to provide us:\n                <ol type=\"a\">\n                    <li>Your name, account number and/or 16-digit Card number</li>\n                    <li>Describe the error of the transfer you are unsure about and explain in detail why you believe there is an\n        error or why you need more information.\n    </li>\n                    <li>Include the dollar amount of the suspected error.</li>\n                </ol>\n                <p> You do not have to pay any amount in question while we are investigating, but you are still obligated to pay the\n    amounts of you bill that are not in question. While we investigate your inquiry we cannot report you as\n    delinquent or take any action to collect the amount in question.\n</p>\n            </p>\n        </div>\n    </body>\n</html>"
						}
					]
				},
				{
					"name": "Get Statement PDF",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"includeProofOfFunds\": true   \n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/statements/10009/10000/html",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"statements",
								"10009",
								"10000",
								"html"
							]
						}
					},
					"response": [
						{
							"name": "Get Statement HTML",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{server_url}}/statements/18503/html",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"statements",
										"18503",
										"html"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "html",
							"header": [],
							"cookie": [],
							"body": "<!DOCTYPE html>\n<html>\n    <head>\n        <meta content=\"width=device-width, initial-scale=1\" name=\"viewport\" />\n        <style>\n  @font-face {\n            font-family: custom-font;\n            src: url('');\n        }\nbody {\n  font-family: custom-font, \"Open Sans\", sans-serif;\n  line-height: 1.25;\n  margin: 32px;\n}\n\n.row {\n      display: flex;\n      flex-direction: row;\n      margin-top: 50px;\n      max-width: 50%;\n  }\n\ntable {\n  border-collapse: collapse;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  table-layout: fixed;\n}\n\ntable caption {\n  font-size: 1.5em;\n  margin: .5em 0 .75em;\n}\n\ntable tr {\n  background-color: white;\n  border-bottom: 1px solid #ddd;\n  padding: .35em;\n}\n\ntable th,\ntable td {\n  padding: .625em;\n  text-align: left;\n}\n\ntable th {\n  background-color: rgba(239, 81, 34, 0.8);\n  font-size: .85em;\n  letter-spacing: .1em;\n  text-transform: uppercase;\n}\n.column {\n  float: left;\n  width: 50%;\n}\n\n/* Clear floats after the columns */\n.row:after {\n  content: \"\";\n  display: table;\n  clear: both;\n}\n\n@media screen and (max-width: 900px) {\n.row {\n   max-width: none;\n }\n\n  table {\n    border: 0;\n  }\n\n  table caption {\n    font-size: 1.3em;\n  }\n\n  table thead {\n    border: none;\n    clip: rect(0 0 0 0);\n    height: 1px;\n    margin: -1px;\n    overflow: hidden;\n    padding: 0;\n    position: absolute;\n    width: 1px;\n  }\n\n  table tr {\n    border-bottom: 3px solid #ddd;\n    display: block;\n    margin-bottom: .625em;\n  }\n\n  table td {\n    border-bottom: 1px solid #ddd;\n    display: block;\n    font-size: .8em;\n    text-align: right;\n    min-height: 1em;\n  }\n\n  table td::before {\n    /*\n    * aria-label has no advantage, it won't be read inside a table\n    content: attr(aria-label);\n    */\n    content: attr(data-label);\n    float: left;\n    font-weight: bold;\n    text-transform: uppercase;\n  }\n\n  table td:last-child {\n    border-bottom: 0;\n  }\n\n  .column {\n    width: 100%;\n  }\n\n}\n.customer-name {\n  font-size: 1.8em;\n}\n.details-row {\n  display: flex;\n  justify-content: space-between;\n  flex-wrap: wrap;\n  border-top: 1px solid #ddd;\n  margin-top: 20px;\n}\n  </style>\n    </head>\n    <body>\n        <div class=\"details-row\">\n            <div class=\"customer-column\">\n                <p class=\"customer-name\">\n          Stoovo Inc\n        </p>\n                <p>\n          610 East Weddell Drive\n                    <br>Sunnyvale, CA, 94089\n                    <br>US\n        \n                </p>\n            </div>\n            <div class=\"account-column\">\n                <div>\n                    <p>\n           Blue Ridge Bank\n         </p>\n                    <p>\n           17 West Main Street\n                        <br>Luray, VA, 22835\n                        <br>US\n         \n                    </p>\n                </div>\n                <div>\n                    <p>\n           Account: \n                        <span style=\"font-family: monospace;\">87XXXX0422</span>\n                    </p>\n                </div>\n            </div>\n        </div>\n        <div class=\"statement-period\">\n            <p>Statement Period: May 01 2021\n                           to May 31 2021</p>\n        </div>\n        <table class=\"transaction-table\">\n            <caption>Statement Summary</caption>\n            <thead>\n                <tr>\n                    <th scope=\"col\">Date</th>\n                    <th scope=\"col\" width=\"40%\">Description</th>\n                    <th scope=\"col\">Withdrawals/Debit</th>\n                    <th scope=\"col\">Deposits/Credit</th>\n                    <th scope=\"col\">Balance</th>\n                </tr>\n            </thead>\n            <tbody>\n                <tr class=\"open-row\">\n                    <td data-label=\"Date\">May 01</td>\n                    <td data-label=\"Description\">\n                        <b>Opening Balance</b>\n                    </td>\n                    <td data-label=\"Withdrawals/Debit\"></td>\n                    <td data-label=\"Deposits/Credit\"></td>\n                    <td data-label=\"Balance\">\n                        <b>0.00</b>\n                    </td>\n                </tr>\n                <tr class=\"transaction-12597\">\n                    <td data-label=\"Date\">May 05</td>\n                    <td data-label=\"Description\">Stoovo  |  Unit <> St\n                    </td>\n                    <td data-label=\"Withdrawals\"></td>\n                    <td data-label=\"Deposits\">20,000.00</td>\n                    <td data-label=\"Balance\">20,000.00</td>\n                </tr>\n                <tr class=\"close-row\">\n                    <td data-label=\"Date\">May 31</td>\n                    <td data-label=\"Description\">\n                        <b>Closing Balance</b>\n                    </td>\n                    <td data-label=\"Withdrawals/Debit\"></td>\n                    <td data-label=\"Deposits/Credit\"></td>\n                    <td data-label=\"Balance\">\n                        <b>20,000.00</b>\n                    </td>\n                </tr>\n            </tbody>\n        </table>\n        <div class=\"row\">\n            <table class=\"fee-table\">\n                <caption>Fees Summary</caption>\n                <thead>\n                    <tr>\n                        <th scope=\"col\">Type</th>\n                        <th scope=\"col\">Total for this period</th>\n                    </tr>\n                </thead>\n                <tbody>\n                    <tr>\n                        <td data-label=\"Type\">Fees</td>\n                        <td data-label=\"Total for this period\">0.00</td>\n                    </tr>\n                </tbody>\n            </table>\n        </div>\n        <div style=\"clear:both; margin-top: 50px;\">\n            <p>\n                <h5>IN CASE OF ERRORS OR QUESTIONS ABOUT YOUR CONSUMER ELECTRONIC TRANSFERS</h5>\n                <p>\n    In case of errors or questions about your electronic transactions, call (602) 6716704 or send an email at\n    support@unit.co if you think\n    your statement or receipt is wrong or if you need more information about a transaction listed in the statement\n    or receipt.\n</p>\n                <p>\n    We must hear from you no later than 60 days after we sent you the FIRST statement on which the error or\n    problem appeared.\n</p>\nYou will need to provide us:\n                <ol type=\"a\">\n                    <li>Your name, account number and/or 16-digit Card number</li>\n                    <li>Describe the error of the transfer you are unsure about and explain in detail why you believe there is an\n    error or why you need more information.\n    </li>\n                    <li>Include the dollar amount of the suspected error.</li>\n                </ol>\n                <p>\n    If you provide this information verbally, we may require that you send your complaint or question in writing\n    within ten (10) business days. We will determine whether an error occurred within ten (10) business days after\n    we hear from you and will correct any error promptly. If we need more time, however, we may take up to forty-\n    five (45) days to investigate your complaint or question. If we decide to do this, we will credit your Account\n    within ten (10) business days for the amount you think is in error, so that you will have use of the money during\n    the time it takes to complete the investigation. If we ask you to put your complaint or question in writing and\n    you do not provide it within ten (10) business days, we may not credit your Account.\n</p>\n                <p>\n    For errors involving a new Account, POS transactions or foreign-initiated transactions, we may take up to ninety\n    (90) days to investigate your complaint or question. For new accounts, we may take up to twenty (20) business\n    days to credit your Account for the amount you think is in error. We will notify you with the results within three (3)\n    business days after completing the investigation. If we decide that there was no error, we will send you a written\n    explanation. You may request copies of the documentation used in the investigation\n</p>\n                <h5>IN CASE OF ERRORS OR QUESTIONS ABOUT YOUR STATEMENT</h5>\n                <p>\n    If you think your statement is incorrect, or if you need more information about a transaction on your statement,\n    notify us immediately.</p>\n                <p>\n    We must hear from you no later than 60 days after we sent you the first statement on which the error or\n    problem appeared. You can call us, but doing so will not preserve your rights.</p>\nYou will need to provide us:\n                <ol type=\"a\">\n                    <li>Your name, account number and/or 16-digit Card number</li>\n                    <li>Describe the error of the transfer you are unsure about and explain in detail why you believe there is an\n        error or why you need more information.\n    </li>\n                    <li>Include the dollar amount of the suspected error.</li>\n                </ol>\n                <p> You do not have to pay any amount in question while we are investigating, but you are still obligated to pay the\n    amounts of you bill that are not in question. While we investigate your inquiry we cannot report you as\n    delinquent or take any action to collect the amount in question.\n</p>\n            </p>\n        </div>\n    </body>\n</html>"
						}
					]
				},
				{
					"name": "Get Bank verification PDF",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"includeProofOfFunds\": true   \n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/statements/10009/bank/pdf",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"statements",
								"10009",
								"bank",
								"pdf"
							]
						}
					},
					"response": [
						{
							"name": "Get Statement HTML",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{server_url}}/statements/18503/html",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"statements",
										"18503",
										"html"
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "html",
							"header": [],
							"cookie": [],
							"body": "<!DOCTYPE html>\n<html>\n    <head>\n        <meta content=\"width=device-width, initial-scale=1\" name=\"viewport\" />\n        <style>\n  @font-face {\n            font-family: custom-font;\n            src: url('');\n        }\nbody {\n  font-family: custom-font, \"Open Sans\", sans-serif;\n  line-height: 1.25;\n  margin: 32px;\n}\n\n.row {\n      display: flex;\n      flex-direction: row;\n      margin-top: 50px;\n      max-width: 50%;\n  }\n\ntable {\n  border-collapse: collapse;\n  margin: 0;\n  padding: 0;\n  width: 100%;\n  table-layout: fixed;\n}\n\ntable caption {\n  font-size: 1.5em;\n  margin: .5em 0 .75em;\n}\n\ntable tr {\n  background-color: white;\n  border-bottom: 1px solid #ddd;\n  padding: .35em;\n}\n\ntable th,\ntable td {\n  padding: .625em;\n  text-align: left;\n}\n\ntable th {\n  background-color: rgba(239, 81, 34, 0.8);\n  font-size: .85em;\n  letter-spacing: .1em;\n  text-transform: uppercase;\n}\n.column {\n  float: left;\n  width: 50%;\n}\n\n/* Clear floats after the columns */\n.row:after {\n  content: \"\";\n  display: table;\n  clear: both;\n}\n\n@media screen and (max-width: 900px) {\n.row {\n   max-width: none;\n }\n\n  table {\n    border: 0;\n  }\n\n  table caption {\n    font-size: 1.3em;\n  }\n\n  table thead {\n    border: none;\n    clip: rect(0 0 0 0);\n    height: 1px;\n    margin: -1px;\n    overflow: hidden;\n    padding: 0;\n    position: absolute;\n    width: 1px;\n  }\n\n  table tr {\n    border-bottom: 3px solid #ddd;\n    display: block;\n    margin-bottom: .625em;\n  }\n\n  table td {\n    border-bottom: 1px solid #ddd;\n    display: block;\n    font-size: .8em;\n    text-align: right;\n    min-height: 1em;\n  }\n\n  table td::before {\n    /*\n    * aria-label has no advantage, it won't be read inside a table\n    content: attr(aria-label);\n    */\n    content: attr(data-label);\n    float: left;\n    font-weight: bold;\n    text-transform: uppercase;\n  }\n\n  table td:last-child {\n    border-bottom: 0;\n  }\n\n  .column {\n    width: 100%;\n  }\n\n}\n.customer-name {\n  font-size: 1.8em;\n}\n.details-row {\n  display: flex;\n  justify-content: space-between;\n  flex-wrap: wrap;\n  border-top: 1px solid #ddd;\n  margin-top: 20px;\n}\n  </style>\n    </head>\n    <body>\n        <div class=\"details-row\">\n            <div class=\"customer-column\">\n                <p class=\"customer-name\">\n          Stoovo Inc\n        </p>\n                <p>\n          610 East Weddell Drive\n                    <br>Sunnyvale, CA, 94089\n                    <br>US\n        \n                </p>\n            </div>\n            <div class=\"account-column\">\n                <div>\n                    <p>\n           Blue Ridge Bank\n         </p>\n                    <p>\n           17 West Main Street\n                        <br>Luray, VA, 22835\n                        <br>US\n         \n                    </p>\n                </div>\n                <div>\n                    <p>\n           Account: \n                        <span style=\"font-family: monospace;\">87XXXX0422</span>\n                    </p>\n                </div>\n            </div>\n        </div>\n        <div class=\"statement-period\">\n            <p>Statement Period: May 01 2021\n                           to May 31 2021</p>\n        </div>\n        <table class=\"transaction-table\">\n            <caption>Statement Summary</caption>\n            <thead>\n                <tr>\n                    <th scope=\"col\">Date</th>\n                    <th scope=\"col\" width=\"40%\">Description</th>\n                    <th scope=\"col\">Withdrawals/Debit</th>\n                    <th scope=\"col\">Deposits/Credit</th>\n                    <th scope=\"col\">Balance</th>\n                </tr>\n            </thead>\n            <tbody>\n                <tr class=\"open-row\">\n                    <td data-label=\"Date\">May 01</td>\n                    <td data-label=\"Description\">\n                        <b>Opening Balance</b>\n                    </td>\n                    <td data-label=\"Withdrawals/Debit\"></td>\n                    <td data-label=\"Deposits/Credit\"></td>\n                    <td data-label=\"Balance\">\n                        <b>0.00</b>\n                    </td>\n                </tr>\n                <tr class=\"transaction-12597\">\n                    <td data-label=\"Date\">May 05</td>\n                    <td data-label=\"Description\">Stoovo  |  Unit <> St\n                    </td>\n                    <td data-label=\"Withdrawals\"></td>\n                    <td data-label=\"Deposits\">20,000.00</td>\n                    <td data-label=\"Balance\">20,000.00</td>\n                </tr>\n                <tr class=\"close-row\">\n                    <td data-label=\"Date\">May 31</td>\n                    <td data-label=\"Description\">\n                        <b>Closing Balance</b>\n                    </td>\n                    <td data-label=\"Withdrawals/Debit\"></td>\n                    <td data-label=\"Deposits/Credit\"></td>\n                    <td data-label=\"Balance\">\n                        <b>20,000.00</b>\n                    </td>\n                </tr>\n            </tbody>\n        </table>\n        <div class=\"row\">\n            <table class=\"fee-table\">\n                <caption>Fees Summary</caption>\n                <thead>\n                    <tr>\n                        <th scope=\"col\">Type</th>\n                        <th scope=\"col\">Total for this period</th>\n                    </tr>\n                </thead>\n                <tbody>\n                    <tr>\n                        <td data-label=\"Type\">Fees</td>\n                        <td data-label=\"Total for this period\">0.00</td>\n                    </tr>\n                </tbody>\n            </table>\n        </div>\n        <div style=\"clear:both; margin-top: 50px;\">\n            <p>\n                <h5>IN CASE OF ERRORS OR QUESTIONS ABOUT YOUR CONSUMER ELECTRONIC TRANSFERS</h5>\n                <p>\n    In case of errors or questions about your electronic transactions, call (602) 6716704 or send an email at\n    support@unit.co if you think\n    your statement or receipt is wrong or if you need more information about a transaction listed in the statement\n    or receipt.\n</p>\n                <p>\n    We must hear from you no later than 60 days after we sent you the FIRST statement on which the error or\n    problem appeared.\n</p>\nYou will need to provide us:\n                <ol type=\"a\">\n                    <li>Your name, account number and/or 16-digit Card number</li>\n                    <li>Describe the error of the transfer you are unsure about and explain in detail why you believe there is an\n    error or why you need more information.\n    </li>\n                    <li>Include the dollar amount of the suspected error.</li>\n                </ol>\n                <p>\n    If you provide this information verbally, we may require that you send your complaint or question in writing\n    within ten (10) business days. We will determine whether an error occurred within ten (10) business days after\n    we hear from you and will correct any error promptly. If we need more time, however, we may take up to forty-\n    five (45) days to investigate your complaint or question. If we decide to do this, we will credit your Account\n    within ten (10) business days for the amount you think is in error, so that you will have use of the money during\n    the time it takes to complete the investigation. If we ask you to put your complaint or question in writing and\n    you do not provide it within ten (10) business days, we may not credit your Account.\n</p>\n                <p>\n    For errors involving a new Account, POS transactions or foreign-initiated transactions, we may take up to ninety\n    (90) days to investigate your complaint or question. For new accounts, we may take up to twenty (20) business\n    days to credit your Account for the amount you think is in error. We will notify you with the results within three (3)\n    business days after completing the investigation. If we decide that there was no error, we will send you a written\n    explanation. You may request copies of the documentation used in the investigation\n</p>\n                <h5>IN CASE OF ERRORS OR QUESTIONS ABOUT YOUR STATEMENT</h5>\n                <p>\n    If you think your statement is incorrect, or if you need more information about a transaction on your statement,\n    notify us immediately.</p>\n                <p>\n    We must hear from you no later than 60 days after we sent you the first statement on which the error or\n    problem appeared. You can call us, but doing so will not preserve your rights.</p>\nYou will need to provide us:\n                <ol type=\"a\">\n                    <li>Your name, account number and/or 16-digit Card number</li>\n                    <li>Describe the error of the transfer you are unsure about and explain in detail why you believe there is an\n        error or why you need more information.\n    </li>\n                    <li>Include the dollar amount of the suspected error.</li>\n                </ol>\n                <p> You do not have to pay any amount in question while we are investigating, but you are still obligated to pay the\n    amounts of you bill that are not in question. While we investigate your inquiry we cannot report you as\n    delinquent or take any action to collect the amount in question.\n</p>\n            </p>\n        </div>\n    </body>\n</html>"
						}
					]
				},
				{
					"name": "Get all by Account Id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/statements/?filter[accountId]=1000",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"statements",
								""
							],
							"query": [
								{
									"key": "filter[accountId]",
									"value": "1000"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Stop Payments",
			"item": [
				{
					"name": "Create ACH Stop Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{org_token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"achStopPayment\",\n    \"attributes\": {\n      \"minAmount\": 1000,\n      \"originatorName\":[\"pied Piper\",\"Pied Piper Inc.\"],\n      \"isMultiUse\": true,\n      \"expiration\": \"2025-01-01\",\n      \"tags\": {\n        \"test\": \"test\"\n      }\n    },\n    \"relationships\": {\n      \"account\": {\n        \"data\": {\n          \"type\": \"depositAccount\",\n          \"id\": \"{{accountId}}\"\n        }\n      }\n    }\n  }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/stop-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"stop-payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Check Stop Payment Copy",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{org_token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"checkStopPayment\",\n    \"attributes\": {\n      \"amount\": 1000,\n      \"checkNumber\": \"123456\",\n      \"tags\": {\n        \"test\": \"test\"\n      }\n    },\n    \"relationships\": {\n      \"account\": {\n        \"data\": {\n          \"type\": \"depositAccount\",\n          \"id\": \"165235\"\n        }\n      }\n    }\n  }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/stop-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"stop-payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Disable Stop Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json"
							}
						],
						"url": {
							"raw": "{{server_url}}/stop-payments/1/disable",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"stop-payments",
								"1",
								"disable"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/stop-payments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"stop-payments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "TOKEN",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/stop-payments/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"stop-payments",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update ACH Stop Payment",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{org_token}}",
									"type": "string"
								}
							]
						},
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"achStopPayment\",\n        \"attributes\": {\n            \"expiration\": \"2026-05-15\",\n            \"tags\": {\n                \"newTag\": \"new tag description\"\n            }\n        }\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/stop-payments/2",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"stop-payments",
								"2"
							]
						}
					},
					"response": []
				}
			],
			"auth": {
				"type": "bearer",
				"bearer": [
					{
						"key": "token",
						"value": "TOKEN",
						"type": "string"
					}
				]
			},
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Transactions",
			"item": [
				{
					"name": "Get all",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/transactions?sort=-createdAt&page[offset]=0&page[limit]=1000",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"transactions"
							],
							"query": [
								{
									"key": "sort",
									"value": "-createdAt"
								},
								{
									"key": "page[offset]",
									"value": "0"
								},
								{
									"key": "page[limit]",
									"value": "1000"
								}
							]
						}
					},
					"response": [
						{
							"name": "Get all",
							"originalRequest": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{server_url}}/transactions?filter[type][0]=ReturnedReceivedAch&filter[orgs][0]=1064",
									"host": [
										"{{server_url}}"
									],
									"path": [
										"transactions"
									],
									"query": [
										{
											"key": "filter[type][0]",
											"value": "ReturnedReceivedAch"
										},
										{
											"key": "filter[orgs][0]",
											"value": "1064"
										}
									]
								}
							},
							"status": "OK",
							"code": 200,
							"_postman_previewlanguage": "json",
							"header": [
								{
									"key": "Date",
									"value": "Fri, 20 Oct 2023 16:16:05 GMT"
								},
								{
									"key": "Content-Type",
									"value": "application/vnd.api+json; charset=utf-8"
								},
								{
									"key": "Content-Length",
									"value": "23419"
								},
								{
									"key": "Connection",
									"value": "keep-alive"
								},
								{
									"key": "Access-Control-Allow-Origin",
									"value": "*"
								},
								{
									"key": "ETag",
									"value": "W/\"5b7b-8/ONMvGwRgWAoL+w/q4WDM2V3Xg\""
								}
							],
							"cookie": [],
							"body": "{\n    \"data\": [\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"104840753\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-07T11:30:26.368Z\",\n                \"amount\": 5150,\n                \"direction\": \"Credit\",\n                \"balance\": 0,\n                \"summary\": \"Returned received ACH transaction #104840752 due to: Account has insufficient funds\",\n                \"companyName\": \"PIEDMONT\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1799721\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1536236\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1536236\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"104840752\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"104840771\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-07T11:30:29.434Z\",\n                \"amount\": 58,\n                \"direction\": \"Credit\",\n                \"balance\": 3,\n                \"summary\": \"Returned received ACH transaction #104840770 due to: Account has insufficient funds\",\n                \"companyName\": \"JPMorgan Chase\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1799435\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1536000\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1536000\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"104840770\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"106003213\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-11T11:31:02.966Z\",\n                \"amount\": 5222,\n                \"direction\": \"Credit\",\n                \"balance\": 0,\n                \"summary\": \"Returned received ACH transaction #106003212 due to: Account has insufficient funds\",\n                \"companyName\": \"AFFIRM INC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1802229\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1538523\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1538523\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"106003212\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"106300245\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-12T11:30:32.313Z\",\n                \"amount\": 2900,\n                \"direction\": \"Credit\",\n                \"balance\": 94,\n                \"summary\": \"Returned received ACH transaction #106300244 due to: Account has insufficient funds\",\n                \"companyName\": \"ALLY CC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1801834\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1538144\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1538144\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"106300244\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"106438767\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-12T21:20:10.603Z\",\n                \"amount\": 213796,\n                \"direction\": \"Credit\",\n                \"balance\": 257267,\n                \"summary\": \"Returned received ACH transaction #106438765 due to: Account has insufficient funds\",\n                \"companyName\": \"FLAGSTAR\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1804177\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1539931\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539931\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"106438765\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"106591538\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-13T11:30:23.562Z\",\n                \"amount\": 42940,\n                \"direction\": \"Credit\",\n                \"balance\": 94,\n                \"summary\": \"Returned received ACH transaction #106591537 due to: Account has insufficient funds\",\n                \"companyName\": \"CONNECTbyAmFam\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1801834\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1538144\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1538144\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"106591537\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"106896157\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-14T11:30:35.482Z\",\n                \"amount\": 24052,\n                \"direction\": \"Credit\",\n                \"balance\": 8018,\n                \"summary\": \"Returned received ACH transaction #106896156 due to: Account has insufficient funds\",\n                \"companyName\": \"FPL DIRECT DEBIT\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1803230\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539219\"\n                        },\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1544613\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"106896156\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"106896339\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-14T11:31:03.506Z\",\n                \"amount\": 6600,\n                \"direction\": \"Credit\",\n                \"balance\": 102752,\n                \"summary\": \"Returned received ACH transaction #106896338 due to: Account has insufficient funds\",\n                \"companyName\": \"AFFIRM INC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1803114\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1539143\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539143\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"106896338\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"106896346\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-14T11:31:04.173Z\",\n                \"amount\": 1045,\n                \"direction\": \"Credit\",\n                \"balance\": 102752,\n                \"summary\": \"Returned received ACH transaction #106896345 due to: Account has insufficient funds\",\n                \"companyName\": \"AFFIRM INC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1803114\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1539143\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539143\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"106896345\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"107222936\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-15T11:31:14.470Z\",\n                \"amount\": 38,\n                \"direction\": \"Credit\",\n                \"balance\": 4,\n                \"summary\": \"Returned received ACH transaction #107222935 due to: Account has insufficient funds\",\n                \"companyName\": \"TARGET DEBIT\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1830273\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1561607\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1561607\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"107222935\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"108080480\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-18T11:30:35.913Z\",\n                \"amount\": 3857,\n                \"direction\": \"Credit\",\n                \"balance\": 127,\n                \"summary\": \"Returned received ACH transaction #108080479 due to: Account has insufficient funds\",\n                \"companyName\": \"AFFIRM INC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1803114\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1539143\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539143\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"108080479\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"108080586\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-18T11:30:51.168Z\",\n                \"amount\": 40000,\n                \"direction\": \"Credit\",\n                \"balance\": 6301,\n                \"summary\": \"Returned received ACH transaction #108080585 due to: Account has insufficient funds\",\n                \"companyName\": \"Forest Ridge\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1801942\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1538258\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1538258\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"108080585\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"108992794\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-21T11:30:54.918Z\",\n                \"amount\": 4300,\n                \"direction\": \"Credit\",\n                \"balance\": 5460,\n                \"summary\": \"Returned received ACH transaction #108992793 due to: Account has insufficient funds\",\n                \"companyName\": \"VENMO\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1815751\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1549458\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1549458\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"108992793\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"109311802\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-22T11:30:51.205Z\",\n                \"amount\": 4300,\n                \"direction\": \"Credit\",\n                \"balance\": 1981,\n                \"summary\": \"Returned received ACH transaction #109311801 due to: Account has insufficient funds\",\n                \"companyName\": \"VENMO\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1815751\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1549458\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1549458\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"109311801\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"110159718\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-25T11:30:57.310Z\",\n                \"amount\": 7000,\n                \"direction\": \"Credit\",\n                \"balance\": 7353,\n                \"summary\": \"Returned received ACH transaction #110159717 due to: Account has insufficient funds\",\n                \"companyName\": \"CHASE CREDIT CRD\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1827138\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1559098\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1559098\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"110159717\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"111024626\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-28T08:40:04.754Z\",\n                \"amount\": 1000,\n                \"direction\": \"Credit\",\n                \"balance\": 1140,\n                \"summary\": \"Returned received ACH transaction #111024625 due to: Account has insufficient funds\",\n                \"companyName\": \"PwP SUPERHUMAN\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1856816\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1585847\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1585847\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"111024625\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"111051010\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-28T11:30:28.093Z\",\n                \"amount\": 7000,\n                \"direction\": \"Credit\",\n                \"balance\": 3225,\n                \"summary\": \"Returned received ACH transaction #111051009 due to: Account has insufficient funds\",\n                \"companyName\": \"CHASE CREDIT CRD\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1827138\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1559098\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1559098\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"111051009\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"111312621\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-29T07:12:48.317Z\",\n                \"amount\": 2500,\n                \"direction\": \"Credit\",\n                \"balance\": 128,\n                \"summary\": \"Returned received ACH transaction #111312620 due to: Account has insufficient funds\",\n                \"companyName\": \"DOR ITS PAYMENTS\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1803114\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1539143\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539143\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"111312620\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"111366179\",\n            \"attributes\": {\n                \"createdAt\": \"2023-09-29T11:31:15.633Z\",\n                \"amount\": 741,\n                \"direction\": \"Credit\",\n                \"balance\": 65,\n                \"summary\": \"Returned received ACH transaction #111366178 due to: Account has insufficient funds\",\n                \"companyName\": \"PwP 1PASSWORD\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1856816\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1585847\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1585847\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"111366178\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"113266052\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-05T11:30:30.713Z\",\n                \"amount\": 10399,\n                \"direction\": \"Credit\",\n                \"balance\": 6592,\n                \"summary\": \"Returned received ACH transaction #113266051 due to: Account has insufficient funds\",\n                \"companyName\": \"Earnin Active\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1802855\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1539010\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539010\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"113266051\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"114663935\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-10T07:06:44.582Z\",\n                \"amount\": 3000,\n                \"direction\": \"Credit\",\n                \"balance\": 1455,\n                \"summary\": \"Returned received ACH transaction #114663934 due to: Account has insufficient funds\",\n                \"companyName\": \"BETTERMENT SEC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1803230\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539219\"\n                        },\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1544613\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"114663934\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"114663938\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-10T07:06:45.448Z\",\n                \"amount\": 5000,\n                \"direction\": \"Credit\",\n                \"balance\": 1455,\n                \"summary\": \"Returned received ACH transaction #114663937 due to: Account has insufficient funds\",\n                \"companyName\": \"BETTERMENT SEC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1803230\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539219\"\n                        },\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1544613\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"114663937\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"114663975\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-10T07:06:53.671Z\",\n                \"amount\": 357367,\n                \"direction\": \"Credit\",\n                \"balance\": 281898,\n                \"summary\": \"Returned received ACH transaction #114663974 due to: Account has insufficient funds\",\n                \"companyName\": \"MORTGAGE COMPANY\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1799410\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1535980\"\n                        },\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1536006\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"114663974\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"114709582\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-10T11:30:37.975Z\",\n                \"amount\": 14042,\n                \"direction\": \"Credit\",\n                \"balance\": 2890,\n                \"summary\": \"Returned received ACH transaction #114709581 due to: Account has insufficient funds\",\n                \"companyName\": \"AUTO-OWNERS\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1829460\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1560930\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1560930\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"114709581\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"115012529\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-11T11:30:27.633Z\",\n                \"amount\": 42940,\n                \"direction\": \"Credit\",\n                \"balance\": 4642,\n                \"summary\": \"Returned received ACH transaction #115012528 due to: Account has insufficient funds\",\n                \"companyName\": \"CONNECTbyAmFam\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1801834\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1538144\"\n                        },\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1583403\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"115012528\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"115012661\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-11T11:30:46.965Z\",\n                \"amount\": 8700,\n                \"direction\": \"Credit\",\n                \"balance\": 4643,\n                \"summary\": \"Returned received ACH transaction #115012660 due to: Account has insufficient funds\",\n                \"companyName\": \"ALLY CC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1801834\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1538144\"\n                        },\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1583403\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"115012660\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"115012665\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-11T11:30:47.723Z\",\n                \"amount\": 14042,\n                \"direction\": \"Credit\",\n                \"balance\": -372,\n                \"summary\": \"Returned received ACH transaction #115012664 due to: Account has insufficient funds\",\n                \"companyName\": \"AUTO-OWNERS\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1829460\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1560930\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1560930\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"115012664\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"115328455\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-12T11:30:37.947Z\",\n                \"amount\": 2600,\n                \"direction\": \"Credit\",\n                \"balance\": 844,\n                \"summary\": \"Returned received ACH transaction #115328453 due to: Account has insufficient funds\",\n                \"companyName\": \"LEADBANKSELFLEND\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1834533\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1565316\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1565316\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"115328453\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"115653764\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-13T11:31:35.962Z\",\n                \"amount\": 2943,\n                \"direction\": \"Credit\",\n                \"balance\": 128,\n                \"summary\": \"Returned received ACH transaction #115653763 due to: Account has insufficient funds\",\n                \"companyName\": \"AFFIRM INC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1803114\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1539143\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539143\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"115653763\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"116531229\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-16T11:30:35.657Z\",\n                \"amount\": 1045,\n                \"direction\": \"Credit\",\n                \"balance\": 128,\n                \"summary\": \"Returned received ACH transaction #116531228 due to: Account has insufficient funds\",\n                \"companyName\": \"AFFIRM INC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1803114\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1539143\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539143\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"116531228\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"116531318\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-16T11:30:48.521Z\",\n                \"amount\": 6600,\n                \"direction\": \"Credit\",\n                \"balance\": 128,\n                \"summary\": \"Returned received ACH transaction #116531317 due to: Account has insufficient funds\",\n                \"companyName\": \"AFFIRM INC\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1803114\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1539143\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539143\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"116531317\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"116842691\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-17T11:30:23.354Z\",\n                \"amount\": 5399,\n                \"direction\": \"Credit\",\n                \"balance\": 0,\n                \"summary\": \"Returned received ACH transaction #116842689 due to: Account has insufficient funds\",\n                \"companyName\": \"Earnin\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1801831\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1538143\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1538143\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"116842689\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"117445174\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-19T11:30:27.335Z\",\n                \"amount\": 44936,\n                \"direction\": \"Credit\",\n                \"balance\": 7209,\n                \"summary\": \"Returned received ACH transaction #117445173 due to: Account has insufficient funds\",\n                \"companyName\": \"JPMorgan Chase\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1829195\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1560737\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1560737\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"117445173\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"117445199\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-19T11:30:30.031Z\",\n                \"amount\": 5299,\n                \"direction\": \"Credit\",\n                \"balance\": 4399,\n                \"summary\": \"Returned received ACH transaction #117445198 due to: Account has insufficient funds\",\n                \"companyName\": \"ACTIVEHOURSCO\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1799413\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1535981\"\n                        },\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1545877\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"117445198\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"117445275\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-19T11:30:41.196Z\",\n                \"amount\": 15500,\n                \"direction\": \"Credit\",\n                \"balance\": 13093,\n                \"summary\": \"Returned received ACH transaction #117445274 due to: Account has insufficient funds\",\n                \"companyName\": \"A2A WEB\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1801834\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1538144\"\n                        },\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1583403\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"117445274\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"117445351\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-19T11:30:52.247Z\",\n                \"amount\": 15000,\n                \"direction\": \"Credit\",\n                \"balance\": 195,\n                \"summary\": \"Returned received ACH transaction #117445349 due to: Account has insufficient funds\",\n                \"companyName\": \"ROBINHOOD\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1806347\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1541879\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1541879\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"117445349\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"117759110\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-20T11:30:51.770Z\",\n                \"amount\": 10697,\n                \"direction\": \"Credit\",\n                \"balance\": 0,\n                \"summary\": \"Returned received ACH transaction #117759108 due to: Account has insufficient funds\",\n                \"companyName\": \"Earnin Active\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1802855\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1539010\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1539010\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"117759108\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"returnedReceivedAchTransaction\",\n            \"id\": \"117759296\",\n            \"attributes\": {\n                \"createdAt\": \"2023-10-20T11:31:12.845Z\",\n                \"amount\": 5600,\n                \"direction\": \"Credit\",\n                \"balance\": 7592,\n                \"summary\": \"Returned received ACH transaction #117759295 due to: Account has insufficient funds\",\n                \"companyName\": \"UPSTART NETWORK\",\n                \"reason\": \"InsufficientFunds\",\n                \"achReason\": \"R01\"\n            },\n            \"relationships\": {\n                \"account\": {\n                    \"data\": {\n                        \"type\": \"account\",\n                        \"id\": \"1815796\"\n                    }\n                },\n                \"customer\": {\n                    \"data\": {\n                        \"type\": \"customer\",\n                        \"id\": \"1549516\"\n                    }\n                },\n                \"customers\": {\n                    \"data\": [\n                        {\n                            \"type\": \"customer\",\n                            \"id\": \"1549516\"\n                        }\n                    ]\n                },\n                \"org\": {\n                    \"data\": {\n                        \"type\": \"org\",\n                        \"id\": \"1064\"\n                    }\n                },\n                \"returned\": {\n                    \"data\": {\n                        \"type\": \"transaction\",\n                        \"id\": \"117759295\"\n                    }\n                }\n            }\n        }\n    ]\n}"
						}
					]
				},
				{
					"name": "Get by id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/accounts/683844/transactions/1672805",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"accounts",
								"683844",
								"transactions",
								"1672805"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update Book Transaction",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"bookTransaction\", \n        \"attributes\": {\n            \"summary\": \"summary\"\n        },\n        \"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"555\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/transactions/:transactionId",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"transactions",
								":transactionId"
							],
							"variable": [
								{
									"key": "transactionId",
									"value": null
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Update Chargeback Transaction",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"chargebackTransaction\", \n        \"attributes\": {\n            \"summary\": \"my new summary 11.12.22 2\",\n            \"tags\": {\n                \"purpose\": \"Tax\",\n                \"trackUserId\": null,\n                \"newTag\": \"test or tag value\"\n            }\n        },\n        \"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"depositAccount\",\n\t\t\t\t\t\"id\": \"10000\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/transactions/4",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"transactions",
								"4"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update Transaction Tags",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"transaction\",\n        \"attributes\": {\n            \"tags\": {\n                \"purpose\": \"Tax\",\n                \"trackUserId\": null,\n                \"newTag\": \"New tag value\"\n            }\n        }\n    }\n}"
						},
						"url": {
							"raw": "accounts/:accountId/transactions/:transactionId",
							"host": [
								"accounts"
							],
							"path": [
								":accountId",
								"transactions",
								":transactionId"
							],
							"variable": [
								{
									"key": "accountId",
									"value": null
								},
								{
									"key": "transactionId",
									"value": null
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all by Customer Id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/transactions/?filter[customerId]=10000",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"transactions",
								""
							],
							"query": [
								{
									"key": "filter[customerId]",
									"value": "10000"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all by Account Id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/transactions/?filter[accountId]=1000",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"transactions",
								""
							],
							"query": [
								{
									"key": "filter[accountId]",
									"value": "1000"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Webhooks",
			"item": [
				{
					"name": "Get All",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/webhooks",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"webhooks"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/webhooks/6",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"webhooks",
								"6"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Webhook",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"webhook\",\n\t\t\"attributes\": {\n\t\t\t\"label\": \"some label\",\n\t\t\t\"url\": \"https://webhook.site/81ee6b53-fde4-4b7d-85a0-0b6249a4488d\",\n\t\t\t\"token\": \"MyToken\",\n            \"contentType\": \"Json\"\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/webhooks",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"webhooks"
							]
						},
						"description": "Remove 'balance' and 'hold' from the request"
					},
					"response": []
				},
				{
					"name": "Enable",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/webhooks/6/enable",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"webhooks",
								"6",
								"enable"
							]
						},
						"description": "Remove 'balance' and 'hold' from the request"
					},
					"response": []
				},
				{
					"name": "Disable",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/webhooks/6/disable",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"webhooks",
								"6",
								"disable"
							]
						},
						"description": "Remove 'balance' and 'hold' from the request"
					},
					"response": []
				},
				{
					"name": "Patch",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 201\", function () {",
									"    pm.response.to.have.status(201);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"data\": {\n        \"type\": \"webhook\",\n        \"attributes\": {\n            \"label\": \"some label\",\n            \"contentType\": \"Json\"\n        }\n    }\n}"
						},
						"url": {
							"raw": "{{server_url}}/webhooks/15",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"webhooks",
								"15"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Tax Forms",
			"item": [
				{
					"name": "List tax forms",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/tax-forms?page[offset]=0&page[limit]=3&filter[formTypes][0]=1099-INT",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"tax-forms"
							],
							"query": [
								{
									"key": "page[offset]",
									"value": "0"
								},
								{
									"key": "page[limit]",
									"value": "3"
								},
								{
									"key": "filter[orgId]",
									"value": "2",
									"disabled": true
								},
								{
									"key": "filter[bankId]",
									"value": "1",
									"disabled": true
								},
								{
									"key": "filter[taxYears][0]",
									"value": "2024",
									"disabled": true
								},
								{
									"key": "filter[taxYears][1]",
									"value": "2023",
									"disabled": true
								},
								{
									"key": "filter[formTypes][0]",
									"value": "1099-INT"
								},
								{
									"key": "filter[customerId]",
									"value": "1",
									"disabled": true
								},
								{
									"key": "filter[accountId]",
									"value": "1",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get tax form",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/tax-forms/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"tax-forms",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get tax form PDF",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/tax-forms/1/pdf",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"tax-forms",
								"1",
								"pdf"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Lending Programs",
			"item": [
				{
					"name": "Get All",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/lending-programs/",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"lending-programs",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/lending-programs/4",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"lending-programs",
								"4"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Credit Applications",
			"item": [
				{
					"name": "Create Existing Customer Credit Application",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"data\": {\n       \"type\": \"createExistingCustomerCreditApplication\",\n       \"attributes\": {\n            \"annualIncome\": 12,\n            \"numberOfEmployees\": \"One\",\n            \"yearsInBusiness\": 4,\n            \"additionalUnderwritingData\": {\n                \"mom\": \"mama\"\n            }\n       },\n       \"relationships\": {\n            \"customer\": {\n               \"data\": {\n                   \"type\": \"customer\",\n                   \"id\": \"10013\"\n                }\n            },\n            \"lendingProgram\": {\n                \"data\": {\n                    \"type\": \"lendingProgram\",\n                     \"id\": \"1\"\n                }\n            }\n       }     \n   }\n}\n"
						},
						"url": {
							"raw": "{{server_url}}/credit-applications/",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-applications",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Onboarding Customer Credit Application",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"data\": {\n       \"type\": \"createOnboardingCustomerCreditApplication\",\n       \"attributes\": {\n        \"aggregatorAccessTokens\": [\"dadadasda\"]\n       },\n       \"relationships\": {\n            \"application\": {\n               \"data\": {\n                   \"type\": \"application\",\n                   \"id\": \"10013\"\n                }\n            },\n            \"lendingProgram\": {\n                \"data\": {\n                    \"type\": \"lendingProgram\",\n                     \"id\": \"1\"\n                }\n            }\n       }     \n   }\n}\n"
						},
						"url": {
							"raw": "{{server_url}}/credit-applications/",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-applications",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Patch Credit Application",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"data\": {\n       \"type\": \"patchCreditApplication\",\n       \"attributes\": {\n        \"numberOfEmployees\": \"Between2And5\",\n        \"aggregatorAccessTokens\": [\"bla\", \"alb\"]\n       }  \n   }\n}\n"
						},
						"url": {
							"raw": "{{server_url}}/credit-applications/60",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-applications",
								"60"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Credit Application",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/credit-applications/23",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-applications",
								"23"
							]
						}
					},
					"response": []
				},
				{
					"name": "Find Credit Applications",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							},
							{
								"key": "filter[postalCode]",
								"value": "\"1\"",
								"type": "text",
								"disabled": true
							}
						],
						"url": {
							"raw": "{{server_url}}/credit-applications/?filter[lendingProgramId]=1&filter[applicationId]=10026&page[offset]=0&page[limit]=30",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-applications",
								""
							],
							"query": [
								{
									"key": "filter[lendingProgramId]",
									"value": "1"
								},
								{
									"key": "filter[applicationId]",
									"value": "10026"
								},
								{
									"key": "page[offset]",
									"value": "0"
								},
								{
									"key": "page[limit]",
									"value": "30"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Credit Decisions",
			"item": [
				{
					"name": "Create Manual Review Credit Application Decision",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json"
							},
							{
								"key": "org-id",
								"value": "1"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"manualReviewCreditApplicationDecision\",\n\t\t\"attributes\": {\n\t\t\t\"externalApplicationId\": \"1\",\n            \"submissionTimestamp\": \"2024-03-03T09:46:12.404Z\",\n            \"decisionTimestamp\": \"2024-03-03T09:46:12.404Z\",\n            \"policyException\": false,\n            \"additionalUnderwritingData\": {}\n\t\t},\n\t\t\"relationships\": {\n            \"creditApplication\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"creditApplication\",\n\t\t\t\t\t\"id\": \"7\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/credit-decisions",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-decisions"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Denied Credit Application Decision",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							},
							{
								"key": "org-id",
								"value": "1",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"deniedCreditApplicationDecision\",\n\t\t\"attributes\": {\n\t\t\t\"externalApplicationId\": \"1\",\n            \"submissionTimestamp\": \"2024-03-03T09:46:12.404Z\",\n            \"decisionTimestamp\": \"2024-03-03T09:46:12.404Z\",\n            \"policyException\": false,\n            \"decisionReason\": \"denied\",\n            \"adverseActionReasons\": [\"do nothing\"],\n            \"additionalUnderwritingData\": {}\n\t\t},\n\t\t\"relationships\": {\n            \"creditApplication\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"creditApplication\",\n\t\t\t\t\t\"id\": \"342\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/credit-decisions",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-decisions"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Manual Review Credit Limit Decision",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json"
							},
							{
								"key": "org-id",
								"value": "1"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"manualReviewCreditLimitDecision\",\n\t\t\"attributes\": {\n\t\t\t\"externalApplicationId\": \"1\",\n            \"submissionTimestamp\": \"2024-03-03T09:46:12.404Z\",\n            \"decisionTimestamp\": \"2024-03-03T09:46:12.404Z\",\n            \"policyException\": false,\n            \"additionalUnderwritingData\": {}\n\t\t},\n\t\t\"relationships\": {\n            \"creditApplication\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"creditApplication\",\n\t\t\t\t\t\"id\": \"7\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/credit-decisions",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-decisions"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Approved Credit Limit Decision",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							},
							{
								"key": "org-id",
								"value": "1",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"approvedCreditLimitDecision\",\n\t\t\"attributes\": {\n\t\t\t\"externalApplicationId\": \"1\",\n            \"submissionTimestamp\": \"2024-03-03T09:46:12.404Z\",\n            \"decisionTimestamp\": \"2024-03-03T09:46:12.404Z\",\n            \"policyException\": false,\n            \"creditLimit\": 500,\n            \"additionalUnderwritingData\": {}\n\t\t},\n\t\t\"relationships\": {\n            \"creditApplication\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"creditApplication\",\n\t\t\t\t\t\"id\": \"3\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/credit-decisions",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-decisions"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Denied Credit Limit Decision",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							},
							{
								"key": "org-id",
								"value": "1",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"deniedCreditLimitDecision\",\n\t\t\"attributes\": {\n\t\t\t\"externalApplicationId\": \"1\",\n            \"submissionTimestamp\": \"2024-03-03T09:46:12.404Z\",\n            \"decisionTimestamp\": \"2024-03-03T09:46:12.404Z\",\n            \"policyException\": false,\n            \"decisionReason\": \"denied\",\n            \"adverseActionReasons\": [\"do nothing\"],\n            \"additionalUnderwritingData\": {}\n\t\t},\n\t\t\"relationships\": {\n            \"creditApplication\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"creditApplication\",\n\t\t\t\t\t\"id\": \"1\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}"
						},
						"url": {
							"raw": "{{server_url}}/credit-decisions",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-decisions"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get by id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"url": {
							"raw": "{{server_url}}/credit-decisions/545",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-decisions",
								"545"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/credit-decisions",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"credit-decisions"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Recurring Repayments",
			"item": [
				{
					"name": "Create Recurring Ach Repayment",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"recurringAchRepayment\",\n\t\t\"attributes\": {\n\t\t\t\"description\": \"ACH Repayments\",\n\t\t\t\"idempotencyKey\": \"adjaw1sqvies-7aepu852-h4d6sxh-8jkyhfa\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"account\",\n\t\t\t\t\t\"id\": \"10016\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"creditAccount\": {\n\t\t\t\t\"data\" : {\n\t\t\t\t\t\"type\": \"creditAccount\",\n\t\t\t\t\t\"id\": \"10005\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"counterparty\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"counterparty\",\n\t\t\t\t\t\"id\": \"1\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/recurring-repayments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-repayments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Recurring Book Repayment",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"recurringBookRepayment\",\n\t\t\"attributes\": {\n\t\t\t\"description\": \"Book Repayments\",\n\t\t\t\"transactionSummaryOverride\": \"Paid Piper Repayment\",\n\t\t\t\"idempotencyKey\": \"adjaw1sqvies-7aep52-h4d6sxh-8hfa\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"account\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"account\",\n\t\t\t\t\t\"id\": \"10016\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"creditAccount\": {\n\t\t\t\t\"data\" : {\n\t\t\t\t\t\"type\": \"creditAccount\",\n\t\t\t\t\t\"id\": \"10005\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"counterpartyAccount\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"account\",\n\t\t\t\t\t\"id\": \"10012\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/recurring-repayments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-repayments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Recurring Capital Partner  Ach Repayment",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"recurringCapitalPartnerAchRepayment\",\n\t\t\"attributes\": {\n\t\t\t\"description\": \"ACH Repayments\",\n\t\t\t\"idempotencyKey\": \"adjaw1sqvies-7aepu852-h4d6sxh-8jkyhfa\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"creditAccount\": {\n\t\t\t\t\"data\" : {\n\t\t\t\t\t\"type\": \"creditAccount\",\n\t\t\t\t\t\"id\": \"10010\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"counterparty\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"counterparty\",\n\t\t\t\t\t\"id\": \"1\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/recurring-repayments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-repayments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Recurring Capital Partner Book Repayment",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"recurringCapitalPartnerBookRepayment\",\n\t\t\"attributes\": {\n\t\t\t\"description\": \"Capital Partner Book Repayments\",\n\t\t\t\"transactionSummaryOverride\": \"Paid Piper Repayment\",\n\t\t\t\"idempotencyKey\": \"adjaw1sqvies-7aep52-h4d6sxh-8hfa\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"creditAccount\": {\n\t\t\t\t\"data\" : {\n\t\t\t\t\t\"type\": \"creditAccount\",\n\t\t\t\t\t\"id\": \"10005\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"counterpartyAccount\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"account\",\n\t\t\t\t\t\"id\": \"10012\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/recurring-repayments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-repayments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Disable Recurring Repayment",
					"request": {
						"auth": {
							"type": "bearer",
							"bearer": [
								{
									"key": "token",
									"value": "{{token}}",
									"type": "string"
								}
							]
						},
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"data\":{\n\t\t\"type\":\"recurringCapitalPartnerAchRepayment\",\n\t\t\"attributes\": {\n\t\t\t\"description\": \"ACH Repayments\",\n\t\t\t\"idempotencyKey\": \"adjaw1sqvies-7aepu852-h4d6sxh-8jkyhfa\"\n\t\t},\n\t\t\"relationships\": {\n\t\t\t\"creditAccount\": {\n\t\t\t\t\"data\" : {\n\t\t\t\t\t\"type\": \"creditAccount\",\n\t\t\t\t\t\"id\": \"10010\"\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"counterparty\": {\n\t\t\t\t\"data\": {\n\t\t\t\t\t\"type\": \"counterparty\",\n\t\t\t\t\t\"id\": \"1\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/recurring-repayments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-repayments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/recurring-payments/1",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-payments",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"pm.test(\"Status code is 200\", function () {",
									"    pm.response.to.have.status(200);",
									"});"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{server_url}}/recurring-repayments",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"recurring-repayments"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Payment Authorization Rules",
			"item": [
				{
					"name": "Create Drawdown Authorization rule",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"drawdownAuthorizationRule\",\n    \"attributes\": {      \n      \"maxAuthorizationAmount\": 6001,\n      \"beneficiaryName\": \"Acme Corp5\",\n      \"tags\": {\n        \"purpose\": \"vendor-payments5\", \n        \"department\": \"finance\"\n      }\n    },\n    \"relationships\": {\n      \"account\": {\n        \"data\": {\n          \"type\": \"account\",\n          \"id\": \"10000\"\n        }\n      },\n      \"customers\": {\n        \"data\": [\n          {\n            \"type\": \"customer\",\n            \"id\": \"10000\"\n          }\n        ]\n      }\n    }\n  }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payment-authorization-rules/",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payment-authorization-rules",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Received ACH Debit Authorization Rule",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"receivedAchDebitAuthorizationRule\",\n    \"attributes\": {\n      \"maxAuthorizationAmount\": 5000,\n      \"originatorName\": \"Payroll Company Inc\",\n      \"tags\": {\n        \"purpose\": \"payroll\",\n        \"department\": \"finance\"\n      }\n    },\n    \"relationships\": {\n      \"account\": {\n        \"data\": {\n          \"type\": \"account\",\n          \"id\": \"10000\"\n        }\n      },\n      \"customers\": {\n        \"data\": [\n          {\n            \"type\": \"customer\",\n            \"id\": \"10000\"\n          }\n        ]\n      }\n    }\n  }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payment-authorization-rules/",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payment-authorization-rules",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Received ACH Credit Authorization Rule",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n  \"data\": {\n    \"type\": \"receivedAchCreditAuthorizationRule\",\n    \"attributes\": {\n      \"maxAuthorizationAmount\": 10000,\n      \"originatorEntityId\": \"1234567890\",\n      \"tags\": {\n        \"purpose\": \"refund\",\n        \"department\": \"customer-service\"\n      }\n    },\n    \"relationships\": {\n      \"account\": {\n        \"data\": {\n          \"type\": \"account\",\n          \"id\": \"10000\"\n        }\n      },\n      \"customers\": {\n        \"data\": [\n          {\n            \"type\": \"customer\",\n            \"id\": \"10000\"\n          }\n        ]\n      }\n    }\n  }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payment-authorization-rules/",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payment-authorization-rules",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Upload document -  Payment Authorization rule",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/pdf",
								"type": "text"
							}
						],
						"body": {
							"mode": "file",
							"file": {
								"src": "/Users/tomera/Downloads/sample.pdf"
							}
						},
						"url": {
							"raw": "{{server_url}}/payment-authorization-rules/1/documents",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payment-authorization-rules",
								"1",
								"documents"
							]
						}
					},
					"response": []
				},
				{
					"name": "Find Payment Authorization rule",
					"protocolProfileBehavior": {
						"disableBodyPruning": true,
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payment-authorization-rules/",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payment-authorization-rules",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Payment Authorization Rule",
					"protocolProfileBehavior": {
						"disableBodyPruning": true,
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payment-authorization-rules/5",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payment-authorization-rules",
								"5"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Payment Authorization Rule Document",
					"protocolProfileBehavior": {
						"disableBodyPruning": true,
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payment-authorization-rules/5/document",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payment-authorization-rules",
								"5",
								"document"
							]
						}
					},
					"response": []
				},
				{
					"name": "Cancel Payment Authorization Rule",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"content-type": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/vnd.api+json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{server_url}}/payment-authorization-rules/11/cancel",
							"host": [
								"{{server_url}}"
							],
							"path": [
								"payment-authorization-rules",
								"11",
								"cancel"
							]
						}
					},
					"response": []
				}
			]
		}
	],
	"auth": {
		"type": "bearer",
		"bearer": [
			{
				"key": "token",
				"value": "{{org_token}}",
				"type": "string"
			}
		]
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"key": "server_url",
			"value": "https://api.s.unit.sh"
		},
		{
			"key": "token",
			"value": ""
		},
		{
			"key": "testid",
			"value": ""
		},
		{
			"key": "testids",
			"value": ""
		},
		{
			"key": "username",
			"value": ""
		},
		{
			"key": "usernames",
			"value": ""
		}
	]
}