{
	"info": {
		"_postman_id": "3e4b33b6-9399-4d00-b233-a187080ebdb1",
		"name": "sohoQR (demo)",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "14805919"
	},
	"item": [
		{
			"name": "Terminal API",
			"item": [
				{
					"name": "echoTest",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api_url}}/terminal/echo-test",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"echo-test"
							]
						}
					},
					"response": []
				},
				{
					"name": "lock",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api_url}}/terminal/lock",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"lock"
							]
						}
					},
					"response": []
				},
				{
					"name": "unlock",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api_url}}/terminal/unlock",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"unlock"
							]
						}
					},
					"response": []
				},
				{
					"name": "sse",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api_url}}/terminal/sse",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"sse"
							]
						}
					},
					"response": []
				},
				{
					"name": "createDynamicBill (max)",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"operation\": \"sale\",\r\n    \"amount\": 5,\r\n    \"currency\": \"EUR\",\r\n    \"order\": {\r\n        \"code\": \"DMSLKJL3434\",\r\n        \"description\": \"Some order description\",\r\n        \"items\": [\r\n            {\r\n                \"name\": \"Coffee\",\r\n                \"price\": 2.99,\r\n                \"qty\": 2,\r\n                \"discount\": 1,\r\n                \"amount\": 5.98\r\n            },\r\n            {\r\n                \"name\": \"Bread\",\r\n                \"amount\": 1.6\r\n            }\r\n        ],\r\n        \"taxes\": [\r\n            {\r\n                \"name\": \"State tax\",\r\n                \"amount\": 0.55\r\n            },\r\n            {\r\n                \"name\": \"Federal tax\",\r\n                \"amount\": 0.10\r\n            }\r\n        ],\r\n        \"discounts\": [\r\n            {\r\n                \"name\": \"Loyalty discount\",\r\n                \"amount\": 0.3\r\n            },\r\n            {\r\n                \"name\": \"Special discount\",\r\n                \"amount\": 0.10\r\n            }\r\n        ]\r\n    },\r\n    \"terminal_data\": {\r\n        \"custom_text\": \"Terminal custom data\",\r\n        \"custom_number\": 12345,\r\n        \"custom_object\": {\r\n            \"a\": \"a\",\r\n            \"b\": 5\r\n        }\r\n    },\r\n    \"payment_data\": {\r\n        \"custom_text\": \"Data for payment channel\",\r\n        \"custom_number\": 12345,\r\n        \"custom_object\": {\r\n            \"a\": \"a\",\r\n            \"b\": 5\r\n        }\r\n    },\r\n    \"host_data\": {\r\n        \"custom_text\": \"Custom data to be saved on host\"\r\n    }\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/dynamic/create",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"dynamic",
								"create"
							]
						}
					},
					"response": []
				},
				{
					"name": "createDynamicBill (min)",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"operation\": \"sale\",\r\n    \"amount\": 5,\r\n    \"currency\": \"EUR\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/dynamic/create",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"dynamic",
								"create"
							]
						}
					},
					"response": []
				},
				{
					"name": "confirmDynamicBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"amount_final\": 2,\r\n    \"qr\": \"http://rrrr.com:8080?type=1&mid=0&uuid=d1de0dd9-781d-46a3-93f5-28b8d12f6451\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/dynamic/confirm",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"dynamic",
								"confirm"
							]
						}
					},
					"response": []
				},
				{
					"name": "cancelDynamicBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=1&mid=0&uuid=476a1961-86fd-4164-90dd-6e40c1dfac16\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/dynamic/cancel",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"dynamic",
								"cancel"
							]
						}
					},
					"response": []
				},
				{
					"name": "refundDynamicBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"amount_refund\": 5,\r\n    \"qr\": \"http://rrrr.com:8080?type=1&mid=0&uuid=476a1961-86fd-4164-90dd-6e40c1dfac16\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/dynamic/refund",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"dynamic",
								"refund"
							]
						}
					},
					"response": []
				},
				{
					"name": "fetchDynamicBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=1&mid=0&uuid=e12e527a-a750-4698-874b-6b880a4e8c79\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/dynamic/fetch/bill",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"dynamic",
								"fetch",
								"bill"
							]
						}
					},
					"response": []
				},
				{
					"name": "fetchDynamicPaid",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    // \"last_uuid\": \"03fb957c-0433-413c-84ff-71224c61694c\"\r\n    \"when_from\": \"2024-04-06T00:51:14.000000Z\",\r\n    \"when_to\": \"2024-04-06T13:52:14.000000Z\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/dynamic/fetch/paid",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"dynamic",
								"fetch",
								"paid"
							]
						}
					},
					"response": []
				},
				{
					"name": "fetchDynamicPend",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/dynamic/fetch/pend",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"dynamic",
								"fetch",
								"pend"
							]
						}
					},
					"response": []
				},
				{
					"name": "findDynamicDone",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    // \"when\": \"2024-04-17\",\r\n    // \"amount_from\": 0.00,\r\n    \"amount_to\": 5.00,\r\n    // \"currency\": \"EUR\",\r\n    \"operation\": \"sale\"\r\n    // \"order_code\": \"DMSLKJL3434\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/dynamic/find/done",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"dynamic",
								"find",
								"done"
							]
						}
					},
					"response": []
				},
				{
					"name": "confirmStaticBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"amount_final\": 10,\r\n    \"qr\": \"http://rrrr.com:8080?type=2&mid=1&uuid=8bfd151e-b5bf-4384-a486-e35cee444eea\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/static/confirm",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"static",
								"confirm"
							]
						}
					},
					"response": []
				},
				{
					"name": "cancelStaticBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=2&mid=0&uuid=fb7015e8-bf3c-4da9-a1b1-fcdaf8a85f6c\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/static/cancel",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"static",
								"cancel"
							]
						}
					},
					"response": []
				},
				{
					"name": "refundStaticBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"amount_refund\": 10,\r\n    \"qr\": \"http://rrrr.com:8080?type=2&mid=0&uuid=c484d96a-e30e-48d5-b072-bd46247a09d6\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/static/refund",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"static",
								"refund"
							]
						}
					},
					"response": []
				},
				{
					"name": "fetchStaticBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=2&mid=0&uuid=69834f48-2d71-4d1e-b8d6-764eae05ab6b\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/static/fetch/bill",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"static",
								"fetch",
								"bill"
							]
						}
					},
					"response": []
				},
				{
					"name": "fetchStaticPaid",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    // \"last_uuid\": \"03fb957c-0433-413c-84ff-71224c61694c\"\r\n    \"when_from\": \"2024-04-06T00:51:14.000000Z\",\r\n    \"when_to\": \"2024-04-06T13:52:14.000000Z\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/static/fetch/paid",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"static",
								"fetch",
								"paid"
							]
						}
					},
					"response": []
				},
				{
					"name": "findStaticDone",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    // \"when\": \"2024-04-17\",\r\n    // \"amount_from\": 0.00,\r\n    \"amount_to\": 10.00,\r\n    \"operation\": \"money-send\",\r\n    \"currency\": \"EUR\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/static/find/done",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"static",
								"find",
								"done"
							]
						}
					},
					"response": []
				},
				{
					"name": "fetchStaticTypesAll",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api_url}}/terminal/static/fetch/typesa",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"static",
								"fetch",
								"typesa"
							]
						}
					},
					"response": []
				},
				{
					"name": "createTimerBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"operation\": \"parking\",\r\n    \"order\": {\r\n        \"code\": \"DMSLKJL3434\",\r\n        \"description\": \"Some order description\"\r\n    },\r\n    \"terminal_data\": {\r\n        \"custom_text\": \"Terminal custom data\",\r\n        \"custom_number\": 12345,\r\n        \"custom_object\": {\r\n            \"a\": \"a\",\r\n            \"b\": 5\r\n        }\r\n    },\r\n    \"payment_data\": {\r\n        \"custom_text\": \"Terminal payment data from terminal\",\r\n        \"custom_number\": 12345,\r\n        \"custom_object\": {\r\n            \"a\": \"a\",\r\n            \"b\": 5\r\n        }\r\n    },\r\n    \"host_data\": {\r\n        \"custom_text\": \"Terminal host data\"\r\n    }\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/timer/create",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"timer",
								"create"
							]
						}
					},
					"response": []
				},
				{
					"name": "resumeTimerBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=3&mid=0&uuid=d2e4d5f2-6ac9-42d1-a4f0-8a282c0953ec\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/timer/resume",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"timer",
								"resume"
							]
						}
					},
					"response": []
				},
				{
					"name": "cancelTimerBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=3&mid=0&uuid=d2e4d5f2-6ac9-42d1-a4f0-8a282c0953ec\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/timer/fetch/bill",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"timer",
								"fetch",
								"bill"
							]
						}
					},
					"response": []
				},
				{
					"name": "confirmTimerBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=3&mid=1&uuid=1f45dc1d-7a99-4b90-ae4e-4b8965076c12\",\r\n    \"amount_final\": 6\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/timer/confirm",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"timer",
								"confirm"
							]
						}
					},
					"response": []
				},
				{
					"name": "refundTimerBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=3&mid=0&uuid=f6a672da-b921-49bd-b3c7-eb94e9ed60e7\",\r\n    \"amount_refund\": 10\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/timer/refund",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"timer",
								"refund"
							]
						}
					},
					"response": []
				},
				{
					"name": "fetchTimerBill",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=3&mid=0&uuid=d2e4d5f2-6ac9-42d1-a4f0-8a282c0953ec\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/timer/cancel",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"timer",
								"cancel"
							]
						}
					},
					"response": []
				},
				{
					"name": "fetchTimerPaid",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"last_uuid\": \"03fb957c-0433-413c-84ff-71224c61694c\"\r\n    // \"when_from\": \"2024-04-06T00:51:14.000000Z\",\r\n    // \"when_to\": \"2024-04-06T13:52:14.000000Z\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/timer/fetch/paid",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"timer",
								"fetch",
								"paid"
							]
						}
					},
					"response": []
				},
				{
					"name": "fetchTimerPend",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/timer/fetch/pend",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"timer",
								"fetch",
								"pend"
							]
						}
					},
					"response": []
				},
				{
					"name": "findTimerDone",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    // \"when\": \"2024-04-17\",\r\n    // \"amount_from\": 0.00,\r\n    \"amount_to\": 10.00,\r\n    \"operation\": \"parking\",\r\n    \"currency\": \"EUR\",\r\n    \"order_code\": \"DMSLKJL3434\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/terminal/timer/find/done",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"terminal",
								"timer",
								"find",
								"done"
							]
						}
					},
					"response": []
				}
			],
			"auth": {
				"type": "bearer",
				"bearer": [
					{
						"key": "token",
						"value": "0000000000000000",
						"type": "string"
					}
				]
			},
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Paychannel API",
			"item": [
				{
					"name": "echoTest",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{api_url}}/paychannel/echo-test",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"paychannel",
								"echo-test"
							]
						}
					},
					"response": []
				},
				{
					"name": "sse",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{api_url}}/paychannel/sse",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"paychannel",
								"sse"
							]
						}
					},
					"response": []
				},
				{
					"name": "viewBill (dynamic)",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"https://shorten-url.com?type=1&mid=000001&uuid=d1de0dd9-781d-46a3-93f5-28b8d12f6451\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/paychannel/view-bill",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"paychannel",
								"view-bill"
							]
						}
					},
					"response": []
				},
				{
					"name": "viewBill (static)",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=2&mid=1&uuid=00000000-0000-0000-0000-000000000002\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/paychannel/view-bill",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"paychannel",
								"view-bill"
							]
						}
					},
					"response": []
				},
				{
					"name": "viewBill (timer)",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=3&mid=1&uuid=62fba2b5-649a-4deb-94ee-f3099eead29b\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/paychannel/view-bill",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"paychannel",
								"view-bill"
							]
						}
					},
					"response": []
				},
				{
					"name": "payBill (dynamic)",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=1&mid=1&uuid=657d590a-3487-43c9-880a-2aee0c74bda9\",\r\n    \"amount\": \"5.0\",\r\n    \"currency\": \"EUR\",\r\n    \"terminal_data\": {\r\n        \"some_1\": \"some 1\"\r\n    },\r\n    \"payer_data\": {\r\n        \"name\": \"Alex\"\r\n    },\r\n    \"refund_data\": {\r\n        \"refund_dest\": \"5685368563\",\r\n        \"refund_type\": \"fdjshfjsgj\"\r\n    },\r\n    \"host_data\": {\r\n        \"host_name\": \"payhost one\",\r\n        \"host_ref\": \"host ref 0001\"\r\n    },\r\n    \"receipt_data\": \"Print this receip\\nand keep it safe\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/paychannel/pay-bill",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"paychannel",
								"pay-bill"
							]
						}
					},
					"response": []
				},
				{
					"name": "payBill (static)",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=2&mid=1&uuid=00000000-0000-0000-0000-000000000002\",\r\n    \"amount\": \"3.25\",\r\n    \"currency\": \"EUR\",\r\n    \"terminal_data\": {\r\n        \"some_1\": \"some 1\"\r\n    },\r\n    \"payer_data\": {\r\n        \"name\": \"Alex\"\r\n    },\r\n    \"host_data\": {\r\n        \"host_name\": \"payhost one\",\r\n        \"host_ref\": \"host ref 0001\"\r\n    },\r\n    \"receipt_data\": \"Print this receip\\nand keep it safe\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/paychannel/pay-bill",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"paychannel",
								"pay-bill"
							]
						}
					},
					"response": []
				},
				{
					"name": "payBill (timer)",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"qr\": \"http://rrrr.com:8080?type=3&mid=1&uuid=01022bb2-e6fc-450f-b4e4-c652ff54d87b\",\r\n    \"amount\": \"6.00\",\r\n    \"currency\": \"EUR\",\r\n    \"terminal_data\": {\r\n        \"some_1\": \"some 1\"\r\n    },\r\n    \"payer_data\": {\r\n        \"name\": \"Alex\"\r\n    },\r\n    \"host_data\": {\r\n        \"host_name\": \"payhost one\",\r\n        \"host_ref\": \"host ref 0001\"\r\n    },\r\n    \"receipt_data\": \"Print this receip\\nand keep it safe\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{api_url}}/paychannel/pay-bill",
							"host": [
								"{{api_url}}"
							],
							"path": [
								"paychannel",
								"pay-bill"
							]
						}
					},
					"response": []
				}
			],
			"auth": {
				"type": "bearer",
				"bearer": [
					{
						"key": "token",
						"value": "0000000000000000",
						"type": "string"
					}
				]
			},
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		}
	],
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"packages": {},
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"packages": {},
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"key": "api_url",
			"value": "https://demo.sohoqr.com/api",
			"type": "string"
		}
	]
}