{"info":{"_postman_id":"617689a7-3b1c-43c8-ac8b-f4d34a8e6da6","name":"Houshyaar API","description":"<html><head></head><body><p>When working with our API, we will have two main endpoints: <code>/provider</code> and <code>/doctor</code><br>The workflow is as follows: first, you need to register a doctor in our system using an API key, which we call <code>PSK</code>.<br>After that, you will receive a token, which we call <code>DAT</code>, and with the <code>DAT</code> token, you will have access to the <code>/doctor</code> endpoint.</p>\n<p>A PSK key will be a string similar to the following:<br><code>PSK.4rZyB82mW0hTWoqCgq1dezLPZY8aoYlHUTZ6VgqAYKaXH9sK1EnIkwSGFYvnQ2aJHmtBmjBTiTYQAsszrpcyHxsT14Iuvt1jVkHo</code></p>\n<p>And the UAT token will be in the following format:<br><code>UAT.uQ5Ke2f1Z4GhCbtsN9Y2y5P5NAHvqVoFvF2QDrXayQe5v1UsmXtgQNVSYSKpz19XN9xmTOCWDKLdpGv2mGfx5XbkisFyljuxlkoN</code></p>\n<h1 id=\"security-notes\">Security Notes</h1>\n<p>Please note that the <code>PSK</code> key should only be used on the server-side and should never be used in places like the user's browser cookie or anywhere that can be visible.<br>However, the <code>UAT</code> token can be stored in the user's browser cookie or in your database</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Security Notes","slug":"security-notes"}],"owner":"37887452","collectionId":"617689a7-3b1c-43c8-ac8b-f4d34a8e6da6","publishedId":"2sAXjM5CM6","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"1D7882"},"publishDate":"2024-09-02T16:17:55.000Z"},"item":[{"name":"Provider","item":[{"name":"Register a Doctor","id":"ef2126dc-60ee-4550-a06b-f9629e4dfc8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{your_PSK_key}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"gender","value":"male","description":"<p>Accepted values: male, female</p>\n","type":"text"},{"key":"first_name","value":"John","type":"text"},{"key":"last_name","value":"Doci","type":"text"},{"key":"country_code","value":"IR","description":"<p>example: IR, RU, AE</p>\n","type":"text"},{"key":"mobile","value":"09123456789","description":"<p>example: 09123456789 or 9123456789</p>\n","type":"text"}]},"url":"https://{{base_domain}}/v1/provider/doctor/register","urlObject":{"protocol":"https","path":["v1","provider","doctor","register"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[{"id":"dd05791d-1e02-4324-9a38-beca90e8df20","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"gender","value":"male","description":"Accepted values: male, female","type":"text"},{"key":"first_name","value":"John","type":"text"},{"key":"last_name","value":"Doci","type":"text"},{"key":"country_code","value":"IR","description":"example: IR, RU, AE","type":"text"},{"key":"mobile","value":"09123456789","description":"example: 09123456789 or 9123456789","type":"text"}]},"url":"https://{{base_domain}}/v1/provider/doctor/register"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Sep 2024 16:04:21 GMT"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"error\": {\n        \"code\": 0,\n        \"message\": null\n    },\n    \"data\": {\n        \"exists\": false,\n        \"access_token\": \"DAT.LpEny5Y0pY7NdOG2deBOgGjJzjQ1MkPVhplaLdCwvQX9OTImacSi4xMNVBlN4LnbAqddTSfljGxabK8LoJiLoGBDay0buWxVk96B\"\n    }\n}"},{"id":"7244130d-155a-4a87-abe6-26f13c141a1d","name":"Invalid PSK","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"gender","value":"male","description":"Accepted values: male, female","type":"text"},{"key":"first_name","value":"John","type":"text"},{"key":"last_name","value":"Doci","type":"text"},{"key":"country_code","value":"IR","description":"example: IR, RU, AE","type":"text"},{"key":"mobile","value":"09123456789","description":"example: 09123456789 or 9123456789","type":"text"}]},"url":"https://{{base_domain}}/v1/provider/doctor/register"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Sep 2024 15:58:24 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"code\": 11000,\n        \"message\": \"Your PSK key is invalid\"\n    },\n    \"data\": []\n}"}],"_postman_id":"ef2126dc-60ee-4550-a06b-f9629e4dfc8e"}],"id":"51e7971e-2ad5-4a7d-984d-64bb9f561f59","description":"<p>Using the <code>PSK</code> key, you first register a doctor and then receive a <code>DAT</code> token in response</p>\n","_postman_id":"51e7971e-2ad5-4a7d-984d-64bb9f561f59"},{"name":"Doctor Profile","item":[{"name":"Get","id":"fcd349ce-9508-45a6-a681-95784267aa4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/profile","urlObject":{"protocol":"https","path":["v1","doctor","profile"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[{"id":"1acbf445-cde6-45b0-8c59-93240c6cbbed","name":"Success","originalRequest":{"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Jan 2025 10:28:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"http://local.houshyaar.com:8080"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=S1XftVpJu551l%2BKu%2F%2FAvSzQGsdgth%2FP1A%2B8p4zCBUbkQP50b7wCRIUPDfMK%2FbEQlqO8R%2F2aq0g42pqe0CfhjS27x1HdT1Eg0n2J6Dz7bM8O%2B0kraCG5dpHVkxiiHgjeQQrOMqg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"90569edfab37c991-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2277&min_rtt=2091&rtt_var=917&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1110&delivery_rate=692491&cwnd=250&unsent_bytes=0&cid=7c58cc286ca6595a&ts=317&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"error\": {\n        \"code\": 0,\n        \"message\": null\n    },\n    \"data\": {\n        \"first_name\": \"John\",\n        \"last_name\": \"Doci 1737011024\",\n        \"gender\": \"male\",\n        \"mobile_number\": \"+989124455667\",\n        \"email_address\": null,\n        \"time\": {\n            \"time_zone\": \"UTC\",\n            \"create_time\": \"2024-08-28T18:43:13.000000Z\",\n            \"create_timestamp\": 1724870593\n        }\n    }\n}"}],"_postman_id":"fcd349ce-9508-45a6-a681-95784267aa4a"},{"name":"Update","id":"d134514d-4ac6-4fbf-a4c6-f6276cd81f7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Max","type":"text","disabled":true},{"key":"last_name","value":"Doci","type":"text"},{"key":"gender","value":"male","type":"text","disabled":true},{"key":"born_date","value":"1980-10-20","type":"text","disabled":true},{"key":"profile_photo","description":"<p>PNG, JPG, GIF - max size: 5MB</p>\n","type":"file","src":"N4G5E4P3Z/svgviewer-png-output.png","disabled":true},{"key":"experience_from","value":"2005","description":"<p>Since what year has he/she been practicing medicine?</p>\n","type":"text","disabled":true},{"key":"certification_number","value":"123987456","type":"text","disabled":true}]},"url":"https://{{base_domain}}/v1/doctor/profile","urlObject":{"protocol":"https","path":["v1","doctor","profile"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[{"id":"bf38e6cf-09f4-403b-bfc3-37b92c8ae8be","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Max","type":"text","disabled":true},{"key":"last_name","value":"Doci","type":"text"},{"key":"gender","value":"male","type":"text","disabled":true},{"key":"born_date","value":"1980-10-20","type":"text","disabled":true},{"key":"profile_photo","description":"PNG, JPG, GIF - max size: 5MB","type":"file","src":"N4G5E4P3Z/svgviewer-png-output.png","disabled":true},{"key":"experience_from","value":"2005","description":"Since what year has he/she been practicing medicine?","type":"text","disabled":true},{"key":"certification_number","value":"123987456","type":"text","disabled":true}]},"url":"https://{{base_domain}}/v1/doctor/profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Jan 2025 10:38:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"http://local.houshyaar.com:8080"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=fiP3E%2BpNdM6b4wz8A2MXMzI%2B%2FAEcGE8lWVv9JpKxHzsB5vKjklZxlRp%2Fspi2E35ZuVAjzPbJCgS6g2CIqEwO8hUaSt%2BB0k4dzNKlZn75dHGwTdxFv5GfmeTC5okJjhCQBIJetg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9056acea69d18256-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=1972&min_rtt=1818&rtt_var=792&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2829&recv_bytes=1105&delivery_rate=1592959&cwnd=251&unsent_bytes=0&cid=4b829776a4c4b740&ts=306&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"error\": {\n        \"code\": 0,\n        \"message\": null\n    },\n    \"data\": {\n        \"first_name\": \"John\",\n        \"last_name\": \"Doci\",\n        \"gender\": \"male\",\n        \"mobile_number\": \"+989124455667\",\n        \"email_address\": null,\n        \"time\": {\n            \"time_zone\": \"UTC\",\n            \"create_time\": \"2024-08-28T18:43:13.000000Z\",\n            \"create_timestamp\": 1724870593\n        }\n    }\n}"}],"_postman_id":"d134514d-4ac6-4fbf-a4c6-f6276cd81f7e"}],"id":"0f786bd9-d126-463e-9d6c-da1ba6baa677","_postman_id":"0f786bd9-d126-463e-9d6c-da1ba6baa677","description":""},{"name":"Forms","item":[{"name":"List","id":"4af7a1df-6bc4-4bbd-a90a-1adb83c3e3dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/forms","urlObject":{"protocol":"https","path":["v1","doctor","forms"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[{"id":"e89ef593-c742-4b1b-a2e2-3b58d7ba058f","name":"Success","originalRequest":{"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/forms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Jan 2025 10:43:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"http://local.houshyaar.com:8080"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=pJ%2FSA1g3GA6%2B2wZ97c2youddnq8WEvKSYkBo5mpGILALtpimzc9m4vuSChf0Osy4Cu4e4z1T%2Fw5zhEUjh%2FOS5wEUO89r3jVz3a7Sd9T65tCyFiTy4W1DgiVDzQTuuym2WOBFpg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9056b4166efbc950-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2882&min_rtt=2707&rtt_var=1140&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1108&delivery_rate=534909&cwnd=250&unsent_bytes=0&cid=9ce2e7b5a4c19cef&ts=313&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"hashid_form\": \"Bn25kPjmz4Dpz0qG\",\n            \"name\": \"Test Form X10\",\n            \"time\": {\n                \"time_zone\": \"UTC\",\n                \"create_time\": \"2024-09-05T20:41:20.000000Z\",\n                \"create_timestamp\": 1725568880\n            }\n        },\n        {\n            \"hashid_form\": \"oygX5N4xzYpn8RWQ\",\n            \"name\": \"test form 5\",\n            \"time\": {\n                \"time_zone\": \"UTC\",\n                \"create_time\": \"2024-09-02T10:36:47.000000Z\",\n                \"create_timestamp\": 1725273407\n            }\n        },\n        {\n            \"hashid_form\": \"Gk5nJMjXBvVD9Oly\",\n            \"name\": \"Form X4\",\n            \"time\": {\n                \"time_zone\": \"UTC\",\n                \"create_time\": null,\n                \"create_timestamp\": null\n            }\n        },\n        {\n            \"hashid_form\": \"1D72lavgXYJxz3oA\",\n            \"name\": \"Form X3\",\n            \"time\": {\n                \"time_zone\": \"UTC\",\n                \"create_time\": null,\n                \"create_timestamp\": null\n            }\n        },\n        {\n            \"hashid_form\": \"keOd20jZpvlqRQ1M\",\n            \"name\": \"test form 5\",\n            \"time\": {\n                \"time_zone\": \"UTC\",\n                \"create_time\": \"2024-08-31T12:30:56.000000Z\",\n                \"create_timestamp\": 1725107456\n            }\n        },\n        {\n            \"hashid_form\": \"KnwGzpYzojmb1EWe\",\n            \"name\": \"test form 4\",\n            \"time\": {\n                \"time_zone\": \"UTC\",\n                \"create_time\": \"2024-08-28T19:02:35.000000Z\",\n                \"create_timestamp\": 1724871755\n            }\n        },\n        {\n            \"hashid_form\": \"Zpxl0z49A4Nm37bw\",\n            \"name\": \"test form\",\n            \"time\": {\n                \"time_zone\": \"UTC\",\n                \"create_time\": \"2024-08-28T18:54:36.000000Z\",\n                \"create_timestamp\": 1724871276\n            }\n        },\n        {\n            \"hashid_form\": \"LpEny5Y0pY7NdOG2\",\n            \"name\": \"test form\",\n            \"time\": {\n                \"time_zone\": \"UTC\",\n                \"create_time\": \"2024-08-28T18:54:15.000000Z\",\n                \"create_timestamp\": 1724871255\n            }\n        },\n        {\n            \"hashid_form\": \"930yRPjrLv7p65oq\",\n            \"name\": \"test form\",\n            \"time\": {\n                \"time_zone\": \"UTC\",\n                \"create_time\": \"2024-08-28T18:53:43.000000Z\",\n                \"create_timestamp\": 1724871223\n            }\n        }\n    ],\n    \"links\": {\n        \"first\": \"http://api.houshyaar.com/v1/doctor/forms?page=1\",\n        \"last\": \"http://api.houshyaar.com/v1/doctor/forms?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"links\": [\n            {\n                \"url\": null,\n                \"label\": \"&laquo; Previous\",\n                \"active\": false\n            },\n            {\n                \"url\": \"http://api.houshyaar.com/v1/doctor/forms?page=1\",\n                \"label\": \"1\",\n                \"active\": true\n            },\n            {\n                \"url\": null,\n                \"label\": \"Next &raquo;\",\n                \"active\": false\n            }\n        ],\n        \"path\": \"http://api.houshyaar.com/v1/doctor/forms\",\n        \"per_page\": 20,\n        \"to\": 9,\n        \"total\": 9\n    }\n}"}],"_postman_id":"4af7a1df-6bc4-4bbd-a90a-1adb83c3e3dc"},{"name":"Show","id":"170420fe-bbb2-4626-aec1-1db71c834176","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/forms/{{hashid_form}}","urlObject":{"protocol":"https","path":["v1","doctor","forms","{{hashid_form}}"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[{"id":"29121f8a-33be-4ef1-8af3-81b0d96a59f9","name":"Success","originalRequest":{"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/forms/{{hashid_form}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Jan 2025 10:45:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"http://local.houshyaar.com:8080"},{"key":"Access-Control-Allow-Headers","value":"*"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=PiSprNhkbBYH9C6%2Fl%2B50aUGoQ5YrSu10sAkmcGC5UoLkSI5y9kbhsk%2BTw48MQoQRH1Sc6iHnxFuJiiWkyTGksPUd0N5pIJw%2FbzrT8w331p%2FufsyCd%2BsY%2BkoF0O8c%2FuIc64dpOg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9056b6d76d78c92b-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2452&min_rtt=2375&rtt_var=945&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2830&recv_bytes=870&delivery_rate=1219368&cwnd=251&unsent_bytes=0&cid=3f86752b451cb512&ts=275&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"error\": {\n        \"code\": 0,\n        \"message\": null\n    },\n    \"data\": {\n        \"hashid_form\": \"Bn25kPjmz4Dpz0qG\",\n        \"name\": \"Test Form X10\",\n        \"time\": {\n            \"time_zone\": \"UTC\",\n            \"create_time\": \"2024-09-05T20:41:20.000000Z\",\n            \"create_timestamp\": 1725568880\n        },\n        \"fields\": [\n            {\n                \"hashid_field\": \"J5pkyQYkoYgeznwP\",\n                \"order\": 1,\n                \"type\": \"text\",\n                \"title\": \"Full name\",\n                \"description\": \"Enter your first and last name 2\",\n                \"values\": [],\n                \"validation\": {\n                    \"required\": true\n                }\n            },\n            {\n                \"hashid_field\": \"ONb0kxj3RY6n1QPw\",\n                \"order\": 2,\n                \"type\": \"radio\",\n                \"title\": \"Body type\",\n                \"description\": null,\n                \"values\": [\n                    \"Overweight\",\n                    \"Underweight\",\n                    \"Average\"\n                ],\n                \"validation\": {\n                    \"required\": true\n                }\n            },\n            {\n                \"hashid_field\": \"Mlbpkavd0vBGA30D\",\n                \"order\": 3,\n                \"type\": \"file\",\n                \"title\": \"Result of complete check-up test\",\n                \"description\": \"Upload your PDF file if available\",\n                \"values\": [],\n                \"validation\": {\n                    \"required\": false\n                }\n            },\n            {\n                \"hashid_field\": \"7PwaQzjQGve8N9VE\",\n                \"order\": 4,\n                \"type\": \"long_text\",\n                \"title\": \"Chief Complaint\",\n                \"description\": \"Enter full details of your problem\",\n                \"values\": [],\n                \"validation\": {\n                    \"required\": true\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"170420fe-bbb2-4626-aec1-1db71c834176"},{"name":"Create","id":"46848925-ffd2-4cbe-a485-fdd3b03a2f06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Normal patients form\",\n\t\"fields\": [\n\t\t{\n\t\t\t\"order\": 1,\n\t\t\t\"title\": \"Full name\",\n\t\t\t\"description\": \"Enter your first and last name\",\n\t\t\t\"type\": \"text\",\n\t\t\t\"validation\": {\n\t\t\t\t\"required\": true\n\t\t\t}\n\t\t},\n        {\n\t\t\t\"order\": 2,\n\t\t\t\"title\": \"Body type\",\n\t\t\t\"type\": \"radio\",\n\t\t\t\"values\": [\"Overweight\", \"Underweight\", \"Average\"],\n\t\t\t\"validation\": {\n\t\t\t\t\"required\": true\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"order\": 3,\n\t\t\t\"title\": \"Result of complete check-up test\",\n\t\t\t\"description\": \"Upload your PDF file if available\",\n\t\t\t\"type\": \"file\",\n\t\t\t\"validation\": {\n\t\t\t\t\"required\": false\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"order\": 4,\n\t\t\t\"title\": \"Chief Complaint\",\n\t\t\t\"description\": \"Enter full details of your problem\",\n\t\t\t\"type\": \"long_text\",\n\t\t\t\"validation\": {\n\t\t\t\t\"required\": true\n\t\t\t}\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_domain}}/v1/doctor/forms","description":"<p>You can use Predefine fields for: <code>full_name</code>, <code>gender</code>, <code>born_date</code>, <code>reasons</code> and <code>chief_complaint</code> like this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"fields\": [\n    {\"pre_define\": \"full_name\"},\n    {\"pre_define\": \"chief_complaint\"},\n    {\n    \"order\": 3,\n    \"title\": \"Result of complete check-up test\",\n    \"type\": \"file\",\n    \"validation\": {\n      \"required\": false\n    }\n    }\n]\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v1","doctor","forms"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[{"id":"85ef9ddc-0473-4eca-ae63-7feedc29e0d5","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Normal patients form\",\n\t\"fields\": [\n\t\t{\n\t\t\t\"order\": 1,\n\t\t\t\"title\": \"Full name\",\n\t\t\t\"description\": \"Enter your first and last name\",\n\t\t\t\"type\": \"text\",\n\t\t\t\"validation\": {\n\t\t\t\t\"required\": true\n\t\t\t}\n\t\t},\n        {\n\t\t\t\"order\": 2,\n\t\t\t\"title\": \"Body type\",\n\t\t\t\"type\": \"radio\",\n\t\t\t\"values\": [\"Overweight\", \"Underweight\", \"Average\"],\n\t\t\t\"validation\": {\n\t\t\t\t\"required\": true\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"order\": 3,\n\t\t\t\"title\": \"Result of complete check-up test\",\n\t\t\t\"description\": \"Upload your PDF file if available\",\n\t\t\t\"type\": \"file\",\n\t\t\t\"validation\": {\n\t\t\t\t\"required\": false\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"order\": 4,\n\t\t\t\"title\": \"Chief Complaint\",\n\t\t\t\"description\": \"Enter full details of your problem\",\n\t\t\t\"type\": \"long_text\",\n\t\t\t\"validation\": {\n\t\t\t\t\"required\": true\n\t\t\t}\n\t\t}\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_domain}}/v1/doctor/forms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Mon, 02 Sep 2024 17:02:48 GMT"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"error\": {\n        \"code\": 0,\n        \"message\": null\n    },\n    \"data\": {\n        \"hashid_form\": \"deBOgGjJzjQ1MkPV\",\n        \"name\": \"Normal patients form\",\n        \"time\": {\n            \"time_zone\": \"UTC\",\n            \"create_time\": \"2024-09-02T17:02:48.000000Z\",\n            \"create_timestamp\": 1725296568\n        },\n        \"fields\": [\n            {\n                \"hashid_field\": \"R3EWgkjeOvd1Dnm6\",\n                \"order\": 1,\n                \"type\": \"text\",\n                \"title\": \"Full name\",\n                \"description\": \"Enter your first and last name\",\n                \"values\": [],\n                \"validation\": {\n                    \"required\": true\n                }\n            },\n            {\n                \"hashid_field\": \"wl57dpvNOYx10QBP\",\n                \"order\": 2,\n                \"type\": \"radio\",\n                \"title\": \"Body type\",\n                \"description\": null,\n                \"values\": [\n                    \"Overweight\",\n                    \"Underweight\",\n                    \"Average\"\n                ],\n                \"validation\": {\n                    \"required\": true\n                }\n            },\n            {\n                \"hashid_field\": \"y0Xmr6v59vRO3NaE\",\n                \"order\": 3,\n                \"type\": \"file\",\n                \"title\": \"Result of complete check-up test\",\n                \"description\": \"Upload your PDF file if available\",\n                \"values\": [],\n                \"validation\": {\n                    \"required\": false\n                }\n            },\n            {\n                \"hashid_field\": \"a82BVQjb74bJ6Nnw\",\n                \"order\": 4,\n                \"type\": \"long_text\",\n                \"title\": \"Chief Complaint\",\n                \"description\": \"Enter full details of your problem\",\n                \"values\": [],\n                \"validation\": {\n                    \"required\": true\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"46848925-ffd2-4cbe-a485-fdd3b03a2f06"},{"name":"Update","id":"05d1933d-7f00-4ce0-814e-51f7c1a5a0b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{your_received_DAT_token}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Test Form X10\",\n\t\"fields\": [\n        {\n            \"hashid_field\": \"J5pkyQYkoYgeznwP\",\n            \"order\": 1,\n            \"type\": \"text\",\n            \"title\": \"Full name\",\n            \"description\": \"Enter your first and last name 2\",\n            \"values\": [],\n            \"validation\": {\n                \"required\": true\n            }\n        },\n        {\n            \"hashid_field\": \"ONb0kxj3RY6n1QPw\",\n            \"order\": 2,\n            \"type\": \"radio\",\n            \"title\": \"Body type\",\n            \"description\": null,\n            \"values\": [\n                \"Overweight\",\n                \"Underweight\",\n                \"Average\"\n            ],\n            \"validation\": {\n                \"required\": true\n            }\n        },\n        {\n            \"hashid_field\": \"Mlbpkavd0vBGA30D\",\n            \"order\": 3,\n            \"type\": \"file\",\n            \"title\": \"Result of complete check-up test\",\n            \"description\": \"Upload your PDF file if available\",\n            \"values\": [],\n            \"validation\": {\n                \"required\": false\n            }\n        },\n        {\n            \"hashid_field\": \"7PwaQzjQGve8N9VE\",\n            \"order\": 4,\n            \"type\": \"long_text\",\n            \"title\": \"Chief Complaint\",\n            \"description\": \"Enter full details of your problem\",\n            \"values\": [],\n            \"validation\": {\n                \"required\": true\n            }\n        }\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_domain}}/v1/doctor/forms/{{hashid_form}}","urlObject":{"protocol":"https","path":["v1","doctor","forms","{{hashid_form}}"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[{"id":"882af707-c50d-4359-bc6b-386ab92a8002","name":"Success","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Test Form X10\",\n\t\"fields\": [\n        {\n            \"hashid_field\": \"J5pkyQYkoYgeznwP\",\n            \"order\": 1,\n            \"type\": \"text\",\n            \"title\": \"Full name\",\n            \"description\": \"Enter your first and last name 2\",\n            \"values\": [],\n            \"validation\": {\n                \"required\": true\n            }\n        },\n        {\n            \"hashid_field\": \"ONb0kxj3RY6n1QPw\",\n            \"order\": 2,\n            \"type\": \"radio\",\n            \"title\": \"Body type\",\n            \"description\": null,\n            \"values\": [\n                \"Overweight\",\n                \"Underweight\",\n                \"Average\"\n            ],\n            \"validation\": {\n                \"required\": true\n            }\n        },\n        {\n            \"hashid_field\": \"Mlbpkavd0vBGA30D\",\n            \"order\": 3,\n            \"type\": \"file\",\n            \"title\": \"Result of complete check-up test\",\n            \"description\": \"Upload your PDF file if available\",\n            \"values\": [],\n            \"validation\": {\n                \"required\": false\n            }\n        },\n        {\n            \"hashid_field\": \"7PwaQzjQGve8N9VE\",\n            \"order\": 4,\n            \"type\": \"long_text\",\n            \"title\": \"Chief Complaint\",\n            \"description\": \"Enter full details of your problem\",\n            \"values\": [],\n            \"validation\": {\n                \"required\": true\n            }\n        }\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"https://{{base_domain}}/v1/doctor/forms/Bn25kPjmz4Dpz0qG"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 06 Sep 2024 17:24:28 GMT"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"error\": {\n        \"code\": 0,\n        \"message\": null\n    },\n    \"data\": {\n        \"hashid_form\": \"Bn25kPjmz4Dpz0qG\",\n        \"name\": \"Test Form X10\",\n        \"time\": {\n            \"time_zone\": \"UTC\",\n            \"create_time\": \"2024-09-05T20:41:20.000000Z\",\n            \"create_timestamp\": 1725568880\n        },\n        \"fields\": [\n            {\n                \"hashid_field\": \"J5pkyQYkoYgeznwP\",\n                \"order\": 1,\n                \"type\": \"text\",\n                \"title\": \"Full name\",\n                \"description\": \"Enter your first and last name 2\",\n                \"values\": [],\n                \"validation\": {\n                    \"required\": true\n                }\n            },\n            {\n                \"hashid_field\": \"ONb0kxj3RY6n1QPw\",\n                \"order\": 2,\n                \"type\": \"radio\",\n                \"title\": \"Body type\",\n                \"description\": null,\n                \"values\": [\n                    \"Overweight\",\n                    \"Underweight\",\n                    \"Average\"\n                ],\n                \"validation\": {\n                    \"required\": true\n                }\n            },\n            {\n                \"hashid_field\": \"Mlbpkavd0vBGA30D\",\n                \"order\": 3,\n                \"type\": \"file\",\n                \"title\": \"Result of complete check-up test\",\n                \"description\": \"Upload your PDF file if available\",\n                \"values\": [],\n                \"validation\": {\n                    \"required\": false\n                }\n            },\n            {\n                \"hashid_field\": \"7PwaQzjQGve8N9VE\",\n                \"order\": 4,\n                \"type\": \"long_text\",\n                \"title\": \"Chief Complaint\",\n                \"description\": \"Enter full details of your problem\",\n                \"values\": [],\n                \"validation\": {\n                    \"required\": true\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"05d1933d-7f00-4ce0-814e-51f7c1a5a0b5"}],"id":"27ae8a96-9eb0-47e5-a518-e12db0cb9bde","_postman_id":"27ae8a96-9eb0-47e5-a518-e12db0cb9bde","description":""},{"name":"Patient","item":[{"name":"List","id":"525aaf03-e581-48f8-9010-5d93ed078ceb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{your_received_DAT_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/patients","urlObject":{"protocol":"https","path":["v1","doctor","patients"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"525aaf03-e581-48f8-9010-5d93ed078ceb"},{"name":"List Search","id":"ffe7e0c1-b7db-408f-80a5-7c2c4bb6eff4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{your_received_DAT_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/patients?q=Alex","urlObject":{"protocol":"https","path":["v1","doctor","patients"],"host":["{{base_domain}}"],"query":[{"key":"q","value":"Alex"}],"variable":[]}},"response":[],"_postman_id":"ffe7e0c1-b7db-408f-80a5-7c2c4bb6eff4"},{"name":"Show","id":"ddc8061d-9341-4418-b870-c6c910d0ccb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{your_received_DAT_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/patients/{{hashid_patient}}","urlObject":{"protocol":"https","path":["v1","doctor","patients","{{hashid_patient}}"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ddc8061d-9341-4418-b870-c6c910d0ccb3"},{"name":"Store","id":"9bd29560-f626-43ab-a778-e9a939bc54cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{your_received_DAT_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"country_code","value":"IR","type":"text"},{"key":"mobile","value":"09125647896","type":"text"},{"key":"first_name","value":"Max","type":"text"},{"key":"last_name","value":"Hill","type":"text"},{"key":"gender","value":"male","type":"text"},{"key":"born_date","value":"2000-9-8","type":"text"}]},"url":"https://{{base_domain}}/v1/doctor/patients","urlObject":{"protocol":"https","path":["v1","doctor","patients"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[{"id":"8f82a559-c286-4596-8fbd-b6af7ed945a8","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"country_code","value":"IR","type":"text"},{"key":"mobile","value":"09125647896","type":"text"},{"key":"first_name","value":"Max","type":"text"},{"key":"last_name","value":"Hill","type":"text"},{"key":"gender","value":"male","type":"text"},{"key":"born_date","value":"2000-9-8","type":"text"}]},"url":"https://{{base_domain}}/v1/doctor/patients"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 06 Sep 2024 18:18:47 GMT"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"error\": {\n        \"code\": 0,\n        \"message\": null\n    },\n    \"data\": {\n        \"hashid_patient\": \"Bn25kPjmz4Dpz0qG\",\n        \"mobile_number\": \"+989125647896\",\n        \"email_address\": null,\n        \"first_name\": \"Max\",\n        \"last_name\": \"Hill\",\n        \"gender\": \"male\",\n        \"born\": \"2000-09-08T00:00:00.000000Z\",\n        \"time\": {\n            \"time_zone\": \"UTC\",\n            \"create_time\": \"2024-09-06T18:18:47.000000Z\",\n            \"create_timestamp\": 1725646727\n        }\n    }\n}"}],"_postman_id":"9bd29560-f626-43ab-a778-e9a939bc54cd"},{"name":"Update","id":"f908afaa-ca36-4c16-9179-653c4bc4686f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{your_received_DAT_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Mike","type":"text"},{"key":"last_name","value":"Ashton","type":"text"},{"key":"gender","value":"male","type":"text"},{"key":"born_date","value":"2000-9-18","type":"text"}]},"url":"https://{{base_domain}}/v1/doctor/patients/{{hashid_patient}}","urlObject":{"protocol":"https","path":["v1","doctor","patients","{{hashid_patient}}"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[{"id":"1567b8f4-9ba6-4d54-bac5-4ad22e7b9141","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Mike","type":"text"},{"key":"last_name","value":"Ashton","type":"text"},{"key":"gender","value":"male","type":"text"},{"key":"born_date","value":"2000-9-18","type":"text"}]},"url":"https://{{base_domain}}/v1/doctor/patients/{{hashid_patient}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.24.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Fri, 06 Sep 2024 18:21:26 GMT"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"error\": {\n        \"code\": 0,\n        \"message\": null\n    },\n    \"data\": {\n        \"hashid_patient\": \"Gk5nJMjXBvVD9Oly\",\n        \"mobile_number\": \"+989124455567\",\n        \"email_address\": null,\n        \"first_name\": \"Mike\",\n        \"last_name\": \"Ashton\",\n        \"gender\": \"male\",\n        \"born\": \"2000-09-18 00:00:00\",\n        \"time\": {\n            \"time_zone\": \"UTC\",\n            \"create_time\": \"2024-08-29T03:01:59.000000Z\",\n            \"create_timestamp\": 1724900519\n        }\n    }\n}"}],"_postman_id":"f908afaa-ca36-4c16-9179-653c4bc4686f"}],"id":"ad6800d1-2c6c-4e0b-a95f-de0a373e88cc","_postman_id":"ad6800d1-2c6c-4e0b-a95f-de0a373e88cc","description":""},{"name":"Visit","item":[{"name":"List","id":"834cd169-5579-4441-a6d2-b3666d3fcc11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{auth_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/visits","urlObject":{"protocol":"https","path":["v1","doctor","visits"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"834cd169-5579-4441-a6d2-b3666d3fcc11"},{"name":"Show","id":"c88b188b-5223-40a5-8201-31e203c47246","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{your_received_DAT_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"https://{{base_domain}}/v1/doctor/visits/{{hashid_visit}}","urlObject":{"protocol":"https","path":["v1","doctor","visits","{{hashid_visit}}"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c88b188b-5223-40a5-8201-31e203c47246"},{"name":"Store","id":"a42b0cf7-e98e-4bba-93e3-11bb05c31526","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{your_received_DAT_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"hashid_form","value":"{{hashid_form}}","type":"text"},{"key":"hashid_patient","value":"{{hashid_patient}}","type":"text"}]},"url":"https://{{base_domain}}/v1/doctor/visits","urlObject":{"protocol":"https","path":["v1","doctor","visits"],"host":["{{base_domain}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a42b0cf7-e98e-4bba-93e3-11bb05c31526"}],"id":"cf1dcdd7-b141-401c-acb8-3a384d118e0c","_postman_id":"cf1dcdd7-b141-401c-acb8-3a384d118e0c","description":""}]}