{"info":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","description":"<html><head></head><body><p>The Open To Close REST API enables you to integrate objects in the Open To Close ecosystem into your own applications. We are continually developing our API to add more functionality while always maintaining backwards compatibility.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Authentication in the REST API is handled via API Tokens.</p>\n<ol>\n<li>Generate your own API Token by logging into the Open To Close web application at <a href=\"https://app.opentoclose.com\">app.opentoclose.com</a> and going to the Apps &amp; API Dashboard.</li>\n<li>Pass your API Token in the query string of each request:<br> <code>https://api.opentoclose.com/v1/some/api/endpoint?api_token=your_token</code></li>\n</ol>\n<h1 id=\"http-responses\">HTTP Responses</h1>\n<p>Successful API requests will receive a response that includes a <code>200 OK</code> HTTP status code and corresponding JSON data.</p>\n<p>Unsuccessful API requests will receive a response that includes a 4xx-level HTTP status code indicating the problem along with a JSON object containing an \"error\" key describing the error.</p>\n<ul>\n<li><code>400 Bad Request</code>: malformed request</li>\n<li><code>401 Unauthorized</code>: user is authenticated but is not authorized to access the requested resource</li>\n<li><code>403 Forbidden</code>: user is not authenticated</li>\n<li><code>404 Not Found</code>: requested resource is not found</li>\n<li><code>429 Too Many Requests</code>: user has exceeded request rate limit</li>\n</ul>\n<h1 id=\"rate-limit\">Rate limit</h1>\n<p>All requests are currently rate-limited to 1 request per second. This rate limit is subject to change and may eventually vary by endpoint and operation. Requests that exceed the rate limit receive a <code>429 Too Many Requests</code> HTTP response along with {\"error\": \"rate limit exceeded\"} JSON.</p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>Most <strong>GET</strong> collection operations are paginated using the <strong>offset</strong> and <strong>limit</strong> parameters passed in the query string to limit the number of results returned. For example, <code>https://api.opentoclose.com/v1/agents?api_token=your_token&amp;offset=100&amp;limit=50</code> will return 50 agents offset 100 from the beginning of the collection.</p>\n<p><strong>Accepted values</strong>:</p>\n<blockquote>\n<p><strong>offset</strong>: any integer (default=0)<br><strong>limit</strong>: any integer up to 100 (default=20)</p>\n</blockquote>\n<h1 id=\"searching\">Searching</h1>\n<p>Most <strong>GET</strong> collection operations can be filtered on particular fields passed in the query string. For example, <code>https://api.opentoclose.com/v1/agents?api_token=your_token&amp;last_name=jones</code> will return all agents with last_name 'Jones'. The available search fields vary by endpoint (see documentation for each endpoint) .</p>\n<h1 id=\"sorting\">Sorting</h1>\n<p>Most <strong>GET</strong> collection operations can be sorted on a particular field, either ascending or descending, using the <strong>sort_by</strong> and <strong>sort_dir</strong> parameters passed in the query string. For example, <code>https://api.opentoclose.com/v1/agents?api_token=your_token&amp;sort_by=last_name&amp;sort_dir=asc</code> will return agents sorted in ascending order on last_name. The available <strong>sort_by</strong> fields vary by endpoint.</p>\n<p><strong>Accepted values</strong>:</p>\n<blockquote>\n<p><strong>sort_by</strong>: varies by endpoint (see documentation for each endpoint)<br><strong>sort_dir</strong>: 'asc' (default) or 'desc'</p>\n</blockquote>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"HTTP Responses","slug":"http-responses"},{"content":"Rate limit","slug":"rate-limit"},{"content":"Pagination","slug":"pagination"},{"content":"Searching","slug":"searching"},{"content":"Sorting","slug":"sorting"}],"owner":"15969201","collectionId":"858b719f-1276-42e7-83b7-c7b267345623","publishedId":"TzXxjdd2","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-06-06T21:50:09.000Z"},"item":[{"name":"Agents","item":[{"name":"Agents","id":"6c0583f6-4933-4235-af30-1bec1d73cd49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/agents","description":"<p>Get all Agents</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","agents"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"description":{"content":"<p>Offset from beginning of results.  Default: 0</p>\n","type":"text/plain"},"key":"offset","value":""},{"disabled":true,"description":{"content":"<p>Limit results returned:  Default: 20, Maximum: 100</p>\n","type":"text/plain"},"key":"limit","value":""},{"disabled":true,"description":{"content":"<p>Search on first_name</p>\n","type":"text/plain"},"key":"first_name","value":""},{"disabled":true,"description":{"content":"<p>Search on last_name</p>\n","type":"text/plain"},"key":"last_name","value":""},{"disabled":true,"description":{"content":"<p>Search on email</p>\n","type":"text/plain"},"key":"email","value":""},{"disabled":true,"description":{"content":"<p>Sort results</p>\n","type":"text/plain"},"key":"sort_by","value":"first_name, last_name, or email"},{"disabled":true,"description":{"content":"<p>Sort direction</p>\n","type":"text/plain"},"key":"sort_dir","value":"asc or desc"}],"variable":[]}},"response":[{"id":"7dee6f06-57e6-4901-830c-c8581abdf88d","name":"GET Agents","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/agents/","protocol":"https","host":["api","opentoclose","com"],"path":["v1","agents",""],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 15:56:12 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 15:56:12 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": {\n            \"date\": \"2021-04-29 16:13:06.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"first_name\": \"Mary\",\n        \"last_name\": \"Realtor\",\n        \"email\": \"mary@test.com\"\n    },\n    {\n        \"id\": 2,\n        \"created\": {\n            \"date\": \"2021-04-29 16:13:56.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"first_name\": \"Joe\",\n        \"last_name\": \"Agent\",\n        \"email\": \"joe_agent@test.com\"\n    }\n]"}],"_postman_id":"6c0583f6-4933-4235-af30-1bec1d73cd49"}],"id":"b822e40f-a326-40c0-a32a-ea879239e6b5","description":"<p>Interact with Agents</p>\n","_postman_id":"b822e40f-a326-40c0-a32a-ea879239e6b5","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Contacts","item":[{"name":"Contacts","id":"ae873320-439f-41db-8c64-b118a1a9d91f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.opentoclose.com/v1/contacts","description":"<p>Get all Contacts</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","contacts"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"description":{"content":"<p>Offset from beginning of results.  Default: 0</p>\n","type":"text/plain"},"key":"offset","value":""},{"disabled":true,"description":{"content":"<p>Limit results returned.  Default: 20, Maximum:100</p>\n","type":"text/plain"},"key":"limit","value":""},{"disabled":true,"description":{"content":"<p>Search on first_name</p>\n","type":"text/plain"},"key":"first_name","value":""},{"disabled":true,"description":{"content":"<p>Search on last_name</p>\n","type":"text/plain"},"key":"last_name","value":""},{"disabled":true,"description":{"content":"<p>Search on email</p>\n","type":"text/plain"},"key":"email","value":""},{"disabled":true,"description":{"content":"<p>Sort the results</p>\n","type":"text/plain"},"key":"sort_by","value":"first_name, last_name, or email"},{"disabled":true,"description":{"content":"<p>Sort direction</p>\n","type":"text/plain"},"key":"sort_dir","value":"asc or desc"}],"variable":[]}},"response":[{"id":"9a501310-54cb-409b-91d2-f1524e450036","name":"GET Contacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.opentoclose.com/v1/contacts","protocol":"https","host":["api","opentoclose","com"],"path":["v1","contacts"],"query":[{"key":"first_name","value":"","description":"*(optional)* Search on First Name","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 16:21:48 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 16:21:48 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": {\n            \"date\": \"2021-04-28 18:23:40.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"first_name\": \"Joe\",\n        \"last_name\": \"Jones\",\n        \"middle_name\": \"\",\n        \"nick_name\": null,\n        \"email\": \"joe@joe.com\",\n        \"office_email\": \"\",\n        \"address\": null,\n        \"unit_number\": null,\n        \"city\": \"Eagle\",\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"county\": null,\n        \"office_name\": null,\n        \"office_address\": null,\n        \"office_unit_number\": null,\n        \"office_city\": null,\n        \"office_state\": null,\n        \"office_country\": null,\n        \"office_county\": null,\n        \"office_zip\": null,\n        \"phone\": \"\",\n        \"phone_ext\": null,\n        \"office_phone\": null,\n        \"office_phone_ext\": null,\n        \"fax\": null,\n        \"office_fax\": null,\n        \"cell_phone\": \"\",\n        \"cell_phone_ext\": null,\n        \"office_cell_phone\": null,\n        \"office_cell_phone_ext\": null,\n        \"personal_website\": null,\n        \"office_website\": null,\n        \"agent_license_number\": null,\n        \"office_license_number\": null,\n        \"contact_role\": {\n            \"id\": 10,\n            \"title\": \"Buyer\"\n        }\n    },\n    {\n        \"id\": 2,\n        \"created\": {\n            \"date\": \"2021-04-28 19:42:38.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"first_name\": \"Suzy\",\n        \"last_name\": \"Que\",\n        \"middle_name\": \"\",\n        \"nick_name\": null,\n        \"email\": \"sue@test.com\",\n        \"office_email\": \"sues_office@test.com\",\n        \"address\": \"123 Happy Lane\",\n        \"unit_number\": null,\n        \"city\": \"Boise\",\n        \"state\": \"Idaho\",\n        \"zip\": \"83301\",\n        \"country\": \"United States\",\n        \"county\": \"Ada\",\n        \"office_name\": null,\n        \"office_address\": \"123 Happy Lane\",\n        \"office_unit_number\": null,\n        \"office_city\": \"Boise\",\n        \"office_state\": \"Idaho\",\n        \"office_country\": \"United States\",\n        \"office_county\": \"Ada\",\n        \"office_zip\": \"83301\",\n        \"phone\": \"2223334444\",\n        \"phone_ext\": \"555\",\n        \"office_phone\": \"2223334444\",\n        \"office_phone_ext\": \"555\",\n        \"fax\": null,\n        \"office_fax\": null,\n        \"cell_phone\": \"1112223333\",\n        \"cell_phone_ext\": \"555\",\n        \"office_cell_phone\": \"1112223333\",\n        \"office_cell_phone_ext\": \"555\",\n        \"personal_website\": null,\n        \"office_website\": null,\n        \"agent_license_number\": \"123123123\",\n        \"office_license_number\": \"123123123\",\n        \"contact_role\": null\n    }\n]"}],"_postman_id":"ae873320-439f-41db-8c64-b118a1a9d91f"},{"name":"Contact","id":"7a2114be-eda7-45b6-b6a4-e915ad397129","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.opentoclose.com/v1/contacts/:contact_id","description":"<p>Retrieve a single Contact</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","contacts",":contact_id"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"42e26d9a-b16a-4253-8d35-03693f04e80c","description":{"content":"<p><em><strong>(required)</strong></em> The Contact Id</p>\n","type":"text/plain"},"type":"any","value":"{{contact_id}}","key":"contact_id"}]}},"response":[{"id":"230dc122-0ea0-4a87-8179-d564a655e06f","name":"GET Contact","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://api.opentoclose.com/v1/contacts/:contact_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","contacts",":contact_id"],"variable":[{"id":"42e26d9a-b16a-4253-8d35-03693f04e80c","key":"contact_id","value":"{{contact_id}}","description":"***(required)*** The Contact Id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 16:45:23 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 16:45:23 GMT"}],"cookie":[],"responseTime":null,"body":"  {\n    \"id\": 1,\n    \"created\": {\n      \"date\": \"2021-04-28 18:23:40.000000\",\n      \"timezone_type\": 3,\n      \"timezone\": \"UTC\"\n    },\n    \"first_name\": \"Joe\",\n    \"last_name\": \"Jones\",\n    \"middle_name\": \"\",\n    \"nick_name\": null,\n    \"email\": \"joe@joe.com\",\n    \"office_email\": \"\",\n    \"address\": null,\n    \"unit_number\": null,\n    \"city\": \"Eagle\",\n    \"state\": null,\n    \"zip\": null,\n    \"country\": null,\n    \"county\": null,\n    \"office_name\": null,\n    \"office_address\": null,\n    \"office_unit_number\": null,\n    \"office_city\": null,\n    \"office_state\": null,\n    \"office_country\": null,\n    \"office_county\": null,\n    \"office_zip\": null,\n    \"phone\": \"\",\n    \"phone_ext\": null,\n    \"office_phone\": null,\n    \"office_phone_ext\": null,\n    \"fax\": null,\n    \"office_fax\": null,\n    \"cell_phone\": \"\",\n    \"cell_phone_ext\": null,\n    \"office_cell_phone\": null,\n    \"office_cell_phone_ext\": null,\n    \"personal_website\": null,\n    \"office_website\": null,\n    \"agent_license_number\": null,\n    \"office_license_number\": null,\n    \"contact_role\": {\n      \"id\": 10,\n      \"title\": \"Buyer\"\n    }\n  }"}],"_postman_id":"7a2114be-eda7-45b6-b6a4-e915ad397129"},{"name":"Contact","id":"8c3107e7-c466-4969-87d3-41c08169f6e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"    {\n        \"first_name\": \"Joe\",\n        \"last_name\": \"Jones\",\n        \"middle_name\": \"\",\n        \"nick_name\": null,\n        \"email\": \"joe@joe.com\",\n        \"office_email\": \"\",\n        \"address\": null,\n        \"unit_number\": null,\n        \"city\": \"Eagle\",\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"county\": null,\n        \"office_name\": null,\n        \"office_address\": null,\n        \"office_unit_number\": null,\n        \"office_city\": null,\n        \"office_state\": null,\n        \"office_country\": null,\n        \"office_county\": null,\n        \"office_zip\": null,\n        \"phone\": \"\",\n        \"phone_ext\": null,\n        \"office_phone\": null,\n        \"office_phone_ext\": null,\n        \"fax\": null,\n        \"office_fax\": null,\n        \"cell_phone\": \"\",\n        \"cell_phone_ext\": null,\n        \"office_cell_phone\": null,\n        \"office_cell_phone_ext\": null,\n        \"personal_website\": null,\n        \"office_website\": null,\n        \"agent_license_number\": null,\n        \"office_license_number\": null,\n        \"contact_role\": {\n            \"id\": 10\n        }\n    }\n   "},"url":"https://api.opentoclose.com/v1/contacts","description":"<p>Create a Contact</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","contacts"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"00425b3d-9765-4d0d-b3bd-0c178df3d049","name":"POST Contact","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"    {\n        \"first_name\": \"Joe\",\n        \"last_name\": \"Jones\",\n        \"middle_name\": \"\",\n        \"nick_name\": null,\n        \"email\": \"joe@joe.com\",\n        \"office_email\": \"\",\n        \"address\": null,\n        \"unit_number\": null,\n        \"city\": \"Eagle\",\n        \"state\": null,\n        \"zip\": null,\n        \"country\": null,\n        \"county\": null,\n        \"office_name\": null,\n        \"office_address\": null,\n        \"office_unit_number\": null,\n        \"office_city\": null,\n        \"office_state\": null,\n        \"office_country\": null,\n        \"office_county\": null,\n        \"office_zip\": null,\n        \"phone\": \"\",\n        \"phone_ext\": null,\n        \"office_phone\": null,\n        \"office_phone_ext\": null,\n        \"fax\": null,\n        \"office_fax\": null,\n        \"cell_phone\": \"\",\n        \"cell_phone_ext\": null,\n        \"office_cell_phone\": null,\n        \"office_cell_phone_ext\": null,\n        \"personal_website\": null,\n        \"office_website\": null,\n        \"agent_license_number\": null,\n        \"office_license_number\": null,\n        \"contact_role\": {\n            \"id\": 10\n        }\n    }\n   "},"url":{"raw":"https://api.opentoclose.com/v1/contacts","protocol":"https","host":["api","opentoclose","com"],"path":["v1","contacts"],"query":[{"key":"","value":"","disabled":true}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 16:58:49 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 16:58:49 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"created\": {\n      \"date\": \"2021-04-28 18:23:40.000000\",\n      \"timezone_type\": 3,\n      \"timezone\": \"UTC\"\n    },\n    \"first_name\": \"Joe\",\n    \"last_name\": \"Jones\",\n    \"middle_name\": \"\",\n    \"nick_name\": null,\n    \"email\": \"joe@joe.com\",\n    \"office_email\": \"\",\n    \"address\": null,\n    \"unit_number\": null,\n    \"city\": \"Eagle\",\n    \"state\": null,\n    \"zip\": null,\n    \"country\": null,\n    \"county\": null,\n    \"office_name\": null,\n    \"office_address\": null,\n    \"office_unit_number\": null,\n    \"office_city\": null,\n    \"office_state\": null,\n    \"office_country\": null,\n    \"office_county\": null,\n    \"office_zip\": null,\n    \"phone\": \"\",\n    \"phone_ext\": null,\n    \"office_phone\": null,\n    \"office_phone_ext\": null,\n    \"fax\": null,\n    \"office_fax\": null,\n    \"cell_phone\": \"\",\n    \"cell_phone_ext\": null,\n    \"office_cell_phone\": null,\n    \"office_cell_phone_ext\": null,\n    \"personal_website\": null,\n    \"office_website\": null,\n    \"agent_license_number\": null,\n    \"office_license_number\": null,\n    \"contact_role\": {\n      \"id\": 10,\n      \"title\": \"Buyer\"\n    }\n  }"}],"_postman_id":"8c3107e7-c466-4969-87d3-41c08169f6e4"},{"name":"Contact","id":"119df59a-d22f-4c0b-97dc-19c08065360d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"Joe - edited\",\n  \"last_name\": \"Jones\",\n  \"middle_name\": \"\",\n  \"nick_name\": null,\n  \"email\": \"joe@joe.com\",\n  \"office_email\": \"\",\n  \"address\": null,\n  \"unit_number\": null,\n  \"city\": \"Eagle\",\n  \"state\": null,\n  \"zip\": null,\n  \"country\": null,\n  \"county\": null,\n  \"office_name\": null,\n  \"office_address\": null,\n  \"office_unit_number\": null,\n  \"office_city\": null,\n  \"office_state\": null,\n  \"office_country\": null,\n  \"office_county\": null,\n  \"office_zip\": null,\n  \"phone\": \"\",\n  \"phone_ext\": null,\n  \"office_phone\": null,\n  \"office_phone_ext\": null,\n  \"fax\": null,\n  \"office_fax\": null,\n  \"cell_phone\": \"\",\n  \"cell_phone_ext\": null,\n  \"office_cell_phone\": null,\n  \"office_cell_phone_ext\": null,\n  \"personal_website\": null,\n  \"office_website\": null,\n  \"agent_license_number\": null,\n  \"office_license_number\": null,\n  \"contact_role\": {\n    \"id\": 11\n  }\n}"},"url":"https://api.opentoclose.com/v1/contacts/:contact_id","description":"<p>Update a Contact</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","contacts",":contact_id"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"c2fd4235-4cf5-4058-adba-341a80fd77e3","description":{"content":"<p><em><strong>(required)</strong></em> The Contact Id</p>\n","type":"text/plain"},"type":"any","value":"{{contact_id}}","key":"contact_id"}]}},"response":[{"id":"baf79bac-fb99-49fc-8d60-7f03c848a20d","name":"PUT Contact","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"Joe - edited\",\n  \"last_name\": \"Jones\",\n  \"middle_name\": \"\",\n  \"nick_name\": null,\n  \"email\": \"joe@joe.com\",\n  \"office_email\": \"\",\n  \"address\": null,\n  \"unit_number\": null,\n  \"city\": \"Eagle\",\n  \"state\": null,\n  \"zip\": null,\n  \"country\": null,\n  \"county\": null,\n  \"office_name\": null,\n  \"office_address\": null,\n  \"office_unit_number\": null,\n  \"office_city\": null,\n  \"office_state\": null,\n  \"office_country\": null,\n  \"office_county\": null,\n  \"office_zip\": null,\n  \"phone\": \"\",\n  \"phone_ext\": null,\n  \"office_phone\": null,\n  \"office_phone_ext\": null,\n  \"fax\": null,\n  \"office_fax\": null,\n  \"cell_phone\": \"\",\n  \"cell_phone_ext\": null,\n  \"office_cell_phone\": null,\n  \"office_cell_phone_ext\": null,\n  \"personal_website\": null,\n  \"office_website\": null,\n  \"agent_license_number\": null,\n  \"office_license_number\": null,\n  \"contact_role\": {\n    \"id\": 11\n  }\n}"},"url":{"raw":"https://api.opentoclose.com/v1/contacts/:contact_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","contacts",":contact_id"],"variable":[{"id":"c2fd4235-4cf5-4058-adba-341a80fd77e3","key":"contact_id","value":"{{contact_id}}","description":"***(required)*** The Contact Id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 17:02:34 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 17:02:34 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"created\": {\n      \"date\": \"2021-04-28 18:23:40.000000\",\n      \"timezone_type\": 3,\n      \"timezone\": \"UTC\"\n    },\n    \"first_name\": \"Joe - edited\",\n    \"last_name\": \"Jones\",\n    \"middle_name\": \"\",\n    \"nick_name\": null,\n    \"email\": \"joe@joe.com\",\n    \"office_email\": \"\",\n    \"address\": null,\n    \"unit_number\": null,\n    \"city\": \"Eagle\",\n    \"state\": null,\n    \"zip\": null,\n    \"country\": null,\n    \"county\": null,\n    \"office_name\": null,\n    \"office_address\": null,\n    \"office_unit_number\": null,\n    \"office_city\": null,\n    \"office_state\": null,\n    \"office_country\": null,\n    \"office_county\": null,\n    \"office_zip\": null,\n    \"phone\": \"\",\n    \"phone_ext\": null,\n    \"office_phone\": null,\n    \"office_phone_ext\": null,\n    \"fax\": null,\n    \"office_fax\": null,\n    \"cell_phone\": \"\",\n    \"cell_phone_ext\": null,\n    \"office_cell_phone\": null,\n    \"office_cell_phone_ext\": null,\n    \"personal_website\": null,\n    \"office_website\": null,\n    \"agent_license_number\": null,\n    \"office_license_number\": null,\n    \"contact_role\": {\n      \"id\": 11,\n      \"title\": \"Seller\"\n    }\n  }"}],"_postman_id":"119df59a-d22f-4c0b-97dc-19c08065360d"}],"id":"e3565ba0-66c2-4c47-9ef3-6b5ecaab99ab","description":"<p>Interact with Contacts</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"ba33cd4d-44dd-4bc2-b7ca-de8ff35d8171"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"870869f9-48e8-4d0a-b810-d28eb4ca8d55"}}],"_postman_id":"e3565ba0-66c2-4c47-9ef3-6b5ecaab99ab","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Contact Roles","item":[{"name":"Contact Roles","id":"8660430d-95e1-4373-9c47-4a8833184950","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/contactRoles","description":"<p>Interact with Contact Roles</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","contactRoles"],"host":["api","opentoclose","com"],"query":[],"variable":[]}},"response":[{"id":"e5a88362-6396-4a16-8496-63aa76efb361","name":"GET Contact Roles","originalRequest":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/contactRoles/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 17:13:32 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 17:13:32 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": {\n            \"date\": \"2020-12-26 21:47:13.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"title\": \"Buyer\"\n    },\n    {\n        \"id\": 2,\n        \"created\": {\n            \"date\": \"2020-12-31 11:47:13.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"title\": \"Seller\"\n    }\n]"}],"_postman_id":"8660430d-95e1-4373-9c47-4a8833184950"}],"id":"6dfcfa7e-883a-43f9-8e2b-8e0505a7c180","description":"<p>Interact with Contact Roles</p>\n","_postman_id":"6dfcfa7e-883a-43f9-8e2b-8e0505a7c180","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"File Roles","item":[{"name":"File Roles","id":"9f86be33-833a-425e-aa42-e710c79056b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/fileRoles","description":"<p>Interact with File Roles</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","fileRoles"],"host":["api","opentoclose","com"],"query":[],"variable":[]}},"response":[{"id":"cb724747-9fda-4a51-a1b2-62bcdc1a8eb6","name":"GET Contact Roles","originalRequest":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/fileRoles/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 17:13:32 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 17:13:32 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": {\n            \"date\": \"2020-12-26 21:47:13.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"title\": \"Buyer\"\n    },\n    {\n        \"id\": 2,\n        \"created\": {\n            \"date\": \"2020-12-31 11:47:13.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"title\": \"Seller\"\n    }\n]"}],"_postman_id":"9f86be33-833a-425e-aa42-e710c79056b7"}],"id":"8aea8943-966e-4b89-9551-f486001f72e0","description":"<p>Interact with Contact Roles</p>\n","_postman_id":"8aea8943-966e-4b89-9551-f486001f72e0","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Properties","item":[{"name":"Properties","id":"723529d3-8121-422d-80ba-19cf7e9f25ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"content-type","value":"application/json","type":"text"}],"url":"https://api.opentoclose.com/v1/properties","description":"<p>Retrieve a collection of Properties (maximum of 50 per call)</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties"],"host":["api","opentoclose","com"],"query":[],"variable":[]}},"response":[{"id":"45644135-d27c-4b3d-8d40-320c1929f0e2","name":"GET Properties","originalRequest":{"method":"GET","header":[{"key":"content-type","value":"application/json","type":"text"}],"url":"https://api.opentoclose.com/v1/properties"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.8"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Sat, 01 May 2021 01:21:59 GMT"},{"key":"X-Debug-Token","value":"39b525"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Sat, 01 May 2021 01:21:59 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": \"2021-04-02 21:38:28\",\n        \"timezone\": \"US/Mountain\",\n        \"field_values\": [\n            {\n                \"id\": 1,\n                \"value\": \"999 Broadway, St Paul, MN 55555\",\n                \"type\": \"text\",\n                \"label\": \"Contract Title\",\n                \"key\": \"contract_title\"\n            },\n            {\n                \"id\": 2,\n                \"value\": \"Buyer\",\n                \"type\": \"choice\",\n                \"label\": \"Contract Client Type\",\n                \"key\": \"contract_client_type\"\n            },\n            {\n                \"id\": 3,\n                \"value\": \"Active\",\n                \"type\": \"choice\",\n                \"label\": \"Contract Status\",\n                \"key\": \"contract_status\"\n            },\n            {\n                \"id\": 4,\n                \"value\": \"999 Broadway\",\n                \"type\": \"text\",\n                \"label\": \"Address\",\n                \"key\": \"property_address\"\n            },\n            {\n                \"id\": 5,\n                \"value\": \"St Paul\",\n                \"type\": \"text\",\n                \"label\": \"City\",\n                \"key\": \"property_city\"\n            },\n            {\n                \"id\": 6,\n                \"value\": \"MN\",\n                \"type\": \"text\",\n                \"label\": \"State\",\n                \"key\": \"property_state\"\n            },\n            {\n                \"id\": 7,\n                \"value\": \"55555\",\n                \"type\": \"text\",\n                \"label\": \"Zip\",\n                \"key\": \"property_zip\"\n            }\n        ]\n    },\n    {\n        \"id\": 2,\n        \"created\": \"2021-04-01 20:51:30\",\n        \"field_values\": [\n            {\n                \"id\": 10,\n                \"value\": \"123 Main St, Boise, ID 83702\",\n                \"type\": \"text\",\n                \"label\": \"Contract Title\",\n                \"key\": \"contract_title\"\n            },\n            {\n                \"id\": 11,\n                \"value\": \"Buyer\",\n                \"type\": \"choice\",\n                \"label\": \"Contract Client Type\",\n                \"key\": \"contract_client_type\"\n            },\n            {\n                \"id\": 12,\n                \"value\": \"Pending\",\n                \"type\": \"choice\",\n                \"label\": \"Contract Status\",\n                \"key\": \"contract_status\"\n            },\n            {\n                \"id\": 13,\n                \"value\": \"123 Main St\",\n                \"type\": \"text\",\n                \"label\": \"Address\",\n                \"key\": \"property_address\"\n            }\n        ], \n        \"team_id\": 1, \n        \"team_name\": \"My Team\",\n        \"team_user_id\": 101, \n        \"team_user_name\": \"Peter Griffin\",\n        \"agent_id\": 2, \t\n        \"agent_name\": \"Stewie Griffin\", \n        \"api_data\": [\n            {\n                \"follow_up_boss\": [\n                    {\n                        \"id\": 1, \n                        \"name\": \"Peter Griffin\"\n                    }, \n                    {\n                        \"id\": 2, \n                        \"name\": \"Peter Griffin\"\n                    }\n                ], \n                \"dotloop\": [\n                    {\n                        \"id\": 1\n                    }\n                ], \n                \"brokermint\": [\n                    {\n                        \"id\": 1\n                    }\n                ], \n                \"skyslope\": [\n                    {\n                        \"id\": 1\n                    }\n                ]\n            }\n        ]\n    }\n]"}],"_postman_id":"723529d3-8121-422d-80ba-19cf7e9f25ec"},{"name":"Property","id":"3e8e97b4-88af-4a2e-bfa7-c7401283876a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.opentoclose.com/v1/properties/:property_id","description":"<p>Retrieve a single Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"9bcd8f47-f8ce-4a6e-867d-578202b01ec8","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"}]}},"response":[{"id":"d5927bce-6028-4a13-861f-0973d18ae046","name":"GET Property","originalRequest":{"method":"GET","header":[{"key":"content-type","value":"application/json","type":"text"}],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id"],"variable":[{"key":"property_id","value":"{{property_id}}","description":"***(required)*** The Property Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.8"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Sat, 01 May 2021 01:25:05 GMT"},{"key":"X-Debug-Token","value":"7882f2"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Sat, 01 May 2021 01:25:05 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": \"2021-04-02 21:38:28\",\n        \"timezone\": \"US/Mountain\",\n        \"field_values\": [\n            {\n                \"id\": 1,\n                \"value\": \"999 Broadway, St Paul, MN 55555\",\n                \"type\": \"text\",\n                \"label\": \"Contract Title\",\n                \"key\": \"contract_title\"\n            },\n            {\n                \"id\": 2,\n                \"value\": \"Buyer\",\n                \"type\": \"choice\",\n                \"label\": \"Contract Client Type\",\n                \"key\": \"contract_client_type\"\n            },\n            {\n                \"id\": 3,\n                \"value\": \"Active\",\n                \"type\": \"choice\",\n                \"label\": \"Contract Status\",\n                \"key\": \"contract_status\"\n            },\n            {\n                \"id\": 4,\n                \"value\": \"999 Broadway\",\n                \"type\": \"text\",\n                \"label\": \"Address\",\n                \"key\": \"property_address\"\n            },\n            {\n                \"id\": 5,\n                \"value\": \"St Paul\",\n                \"type\": \"text\",\n                \"label\": \"City\",\n                \"key\": \"property_city\"\n            },\n            {\n                \"id\": 6,\n                \"value\": \"MN\",\n                \"type\": \"text\",\n                \"label\": \"State\",\n                \"key\": \"property_state\"\n            },\n            {\n                \"id\": 7,\n                \"value\": \"55555\",\n                \"type\": \"text\",\n                \"label\": \"Zip\",\n                \"key\": \"property_zip\"\n            }\n        ]\n    },\n    {\n        \"id\": 2,\n        \"created\": \"2021-04-01 20:51:30\",\n        \"field_values\": [\n            {\n                \"id\": 10,\n                \"value\": \"123 Main St, Boise, ID 83702\",\n                \"type\": \"text\",\n                \"label\": \"Contract Title\",\n                \"key\": \"contract_title\"\n            },\n            {\n                \"id\": 11,\n                \"value\": \"Buyer\",\n                \"type\": \"choice\",\n                \"label\": \"Contract Client Type\",\n                \"key\": \"contract_client_type\"\n            },\n            {\n                \"id\": 12,\n                \"value\": \"Pending\",\n                \"type\": \"choice\",\n                \"label\": \"Contract Status\",\n                \"key\": \"contract_status\"\n            },\n            {\n                \"id\": 13,\n                \"value\": \"123 Main St\",\n                \"type\": \"text\",\n                \"label\": \"Address\",\n                \"key\": \"property_address\"\n            }\n        ], \n        \"team_id\": 1, \n        \"team_name\": \"My Team\",\n        \"team_user_id\": 101, \n        \"team_user_name\": \"Peter Griffin\",\n        \"agent_id\": 2, \t\n        \"agent_name\": \"Stewie Griffin\", \n        \"api_data\": [\n            {\n                \"follow_up_boss\": [\n                    {\n                        \"id\": 1, \n                        \"name\": \"Peter Griffin\"\n                    }, \n                    {\n                        \"id\": 2, \n                        \"name\": \"Peter Griffin\"\n                    }\n                ], \n                \"dotloop\": [\n                    {\n                        \"id\": 1\n                    }\n                ], \n                \"brokermint\": [\n                    {\n                        \"id\": 1\n                    }\n                ], \n                \"skyslope\": [\n                    {\n                        \"id\": 1\n                    }\n                ]\n            }\n        ]\n    }\n]"}],"_postman_id":"3e8e97b4-88af-4a2e-bfa7-c7401283876a"},{"name":"Property","id":"77dadd1b-b385-4535-860e-e3752f78f194","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"field_identifier\": \"key\",\n    \"fields\": [\n        {\n            \"key\": \"property_county\",\n            \"value\": \"Orange County\"\n        }, \n        {\n            \"key\": \"property_city\",\n            \"value\": \"Beverly Hills\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.opentoclose.com/v1/properties/:property_id","description":"<p>Update a single property.</p>\n<table>\n<tr><td><b>field_identifier</b></td><td>Must be either \"key\" or \"id\".</td></tr>\n<tr><td><b>fields</b></td><td>An array of fields to be updated inside of the property. Requires \"key\" and \"value\" options for each field.</td></tr>\n</table>","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"9bcd8f47-f8ce-4a6e-867d-578202b01ec8","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"}]}},"response":[{"id":"0b037236-5a8d-4708-a024-d1fca55ceb79","name":"PATCH Property","originalRequest":{"method":"PATCH","header":[{"key":"content-type","value":"application/json","type":"text"}],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id"],"variable":[{"key":"property_id","value":"{{property_id}}","description":"***(required)*** The Property Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.8"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Sat, 01 May 2021 01:25:05 GMT"},{"key":"X-Debug-Token","value":"7882f2"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Sat, 01 May 2021 01:25:05 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"2 fields updated.\"\n}"}],"_postman_id":"77dadd1b-b385-4535-860e-e3752f78f194"},{"name":"Property","id":"9c886bef-0a2d-4579-90eb-6fa2c6c5144c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"team_member_id\": 1,\n    \"agent_id\":1,\n    \"time_zone_id\": 8,\n    \"field_identifier\": \"id\",\n    \"property_template_id\": 1,\n    \"fields\": [\n        {\n            \"id\": \"10\",\n            \"value\": \"123 Main St, Boise, ID 83702\"\n        },\n        {\n            \"id\": \"11\",\n            \"value\": \"Buyer\"\n        },\n        {\n            \"id\": \"12\",\n            \"value\": \"Pending\"\n        },\n        {\n            \"id\": \"13\",\n            \"value\": \"123 Main St\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.opentoclose.com/v1/properties/","description":"<p>Create a Property</p>\n<p>Required fields in JSON request payload:</p>\n<table>\n<tr><td><b>team_member_id</b></td><td>The Id of a Team Member associated with this Property.  Use <b>GET Teams</b> to look up Team Members.</td></tr>\n<tr><td><b>agent_id</b></td><td>The Id of an Agent associated with this Property.  Use <b>GET Agents</b> to look up Agents.</td></tr>\n<tr><td><b>time_zone_id</b></td><td>The Id of the Time Zone that this Property resides in.  Use <b>GET Time Zones</b> to look up Time Zones.</td></tr>\n<tr><td><b>field_identifier</b></td><td>Values: 'id' or 'key'<br />The type of identifier used on the field objects in the fields array</td></tr>\n<tr><td><b>fields</b></td><td>Array of <b>Field</b> objects. Each Field object must contain an 'id' or 'key' field, matching the value for <b>field_identifier</b>.<br />Field objects for <i>Contract Title</i>, <i>Contract Client Type</i>, and <i>Contract Status</i> are required.  Use <b>Get Property Fields</b> to look up Fields.</td></tr>\n<tr><td><b>property_template_id</b></td><td>The Id of a Property Template.  Use <b>GET Property Templates</b> to look up available Property Templates inside of your account.</td></tr>\n<tr><td><b>property_template_ids</b></td><td>An array of Property Template Ids. Use <b>GET Property Templates</b> to look up available Property Templates inside of your account. Do not use \"property_template_id\" if you are using \"property_template_ids\" to pass in template ids. <br /><br />e.g. \"property_template_ids\": [1,3,6,11]</td></tr>\n</table>","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",""],"host":["api","opentoclose","com"],"query":[],"variable":[]}},"response":[{"id":"c1207f6b-f367-4bec-8512-45963c61e39c","name":"POST Property","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"team_member_id\": 1301,\n    \"agent_id\": 682,\n    \"time_zone_id\": 8,\n    \"field_identifier\": \"id\",\n    \"property_template_id\": 1, \n    \"fields\": [\n        {\n            \"id\": 1050,\n            \"value\": \"999 Main St, Boise, Idaho 83706\"\n        },\n        {\n            \"id\": 948,\n            \"value\": \"999 Main St\"\n        },\n        {\n            \"id\": 949,\n            \"value\": \"Boise\"\n        },\n        {\n            \"id\": 950,\n            \"value\": \"Idaho\"\n        },\n        {\n            \"id\": 951,\n            \"value\": \"83707\"\n        },\n         {\n            \"id\": 961,\n            \"value\": \"Buyer\"\n        },\n       {\n            \"id\": 962,\n            \"value\": \"Pending\"\n        }\n     \n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.opentoclose.com/v1/properties/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Sat, 01 May 2021 02:26:30 GMT"},{"key":"Expires","value":"Sat, 01 May 2021 02:26:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2,\n    \"created\": 1619857590\n}"}],"_postman_id":"9c886bef-0a2d-4579-90eb-6fa2c6c5144c"}],"id":"9ec300b7-06e3-457b-a8c9-baa4b11c2fc6","_postman_id":"9ec300b7-06e3-457b-a8c9-baa4b11c2fc6","description":"","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Property Contacts","item":[{"name":"Property Contacts","id":"ef6c0d2e-edb0-4596-ac3d-c352e939e313","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/properties/:property_id/contacts","description":"<p>Get all Contacts associated with a given Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","contacts"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"description":{"content":"<p><em>(optional)</em> Search on Email</p>\n","type":"text/plain"},"key":"email","value":""},{"disabled":true,"description":{"content":"<p><em>(optional)</em> Search on Last Name</p>\n","type":"text/plain"},"key":"last_name","value":""},{"disabled":true,"description":{"content":"<p><em>(optional)</em> Search on First Name</p>\n","type":"text/plain"},"key":"first_name","value":""}],"variable":[{"id":"a33fb450-998f-47b6-b56d-0428f10be0fb","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"}]}},"response":[{"id":"8b1ae6c8-54fb-41d9-a1ed-82b515f9614b","name":"GET Property Contacts","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/contacts","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","contacts"],"variable":[{"key":"property_id","value":"{{property_id}}","description":"The Id of the Property"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Fri, 30 Apr 2021 14:41:10 GMT"},{"key":"Expires","value":"Fri, 30 Apr 2021 14:41:10 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": {\n            \"date\": \"2021-04-29 17:15:06.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"property\": {\n            \"id\": 1\n        },\n        \"contact\": {\n            \"id\": 1,\n            \"first_name\": \"Joe\",\n            \"last_name\": \"Buyer\",\n            \"middle_name\": null,\n            \"nick_name\": null,\n            \"email\": \"joe_buyer@test.com\",\n            \"office_email\": null,\n            \"address\": \"123 Main St\",\n            \"unit_number\": null,\n            \"city\": \"Boise\",\n            \"state\": \"ID\",\n            \"zip\": \"83702\",\n            \"country\": null,\n            \"county\": null,\n            \"office_name\": null,\n            \"office_address\": null,\n            \"office_unit_number\": null,\n            \"office_city\": null,\n            \"office_state\": null,\n            \"office_country\": null,\n            \"office_county\": null,\n            \"office_zip\": null,\n            \"phone\": null,\n            \"phone_ext\": null,\n            \"office_phone\": null,\n            \"office_phone_ext\": null,\n            \"fax\": null,\n            \"office_fax\": null,\n            \"cell_phone\": \"(555) 555-5555\",\n            \"cell_phone_ext\": null,\n            \"office_cell_phone\": null,\n            \"office_cell_phone_ext\": null,\n            \"personal_website\": null,\n            \"office_website\": null,\n            \"agent_license_number\": null,\n            \"office_license_number\": null\n        },\n        \"contact_role\": {\n            \"id\": 265,\n            \"title\": \"Buyer\"\n        }\n    },\n    {\n        \"id\": 58512,\n        \"created\": {\n            \"date\": \"2021-04-29 17:16:30.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"project\": {\n            \"id\": 7663\n        },\n        \"contact\": {\n            \"id\": 992435,\n            \"first_name\": \"Sue\",\n            \"last_name\": \"Seller\",\n            \"middle_name\": null,\n            \"nick_name\": null,\n            \"email\": \"sue_seller@test.com\",\n            \"office_email\": null,\n            \"address\": \"321 1st St\",\n            \"unit_number\": null,\n            \"city\": \"Boise\",\n            \"state\": \"ID\",\n            \"zip\": \"83701\",\n            \"country\": null,\n            \"county\": null,\n            \"office_name\": null,\n            \"office_address\": null,\n            \"office_unit_number\": null,\n            \"office_city\": null,\n            \"office_state\": null,\n            \"office_country\": null,\n            \"office_county\": null,\n            \"office_zip\": null,\n            \"phone\": null,\n            \"phone_ext\": null,\n            \"office_phone\": null,\n            \"office_phone_ext\": null,\n            \"fax\": null,\n            \"office_fax\": null,\n            \"cell_phone\": \"(555) 555-1212\",\n            \"cell_phone_ext\": null,\n            \"office_cell_phone\": null,\n            \"office_cell_phone_ext\": null,\n            \"personal_website\": null,\n            \"office_website\": null,\n            \"agent_license_number\": null,\n            \"office_license_number\": null\n        },\n        \"contact_role\": {\n            \"id\": 268,\n            \"title\": \"Seller\"\n        }\n    }\n]"}],"_postman_id":"ef6c0d2e-edb0-4596-ac3d-c352e939e313"},{"name":"Property Contact","id":"e5bdc190-e725-4350-8065-4474347b48bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/properties/:property_id/contacts/:contact_id","description":"<p>Get a single Contact associated with a given Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","contacts",":contact_id"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"cb72b6ce-9052-4c76-a7b4-4a1690cd2514","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"},{"id":"482fc801-ea06-4b19-ba68-48278a23ff5a","description":{"content":"<p><em><strong>(required)</strong></em> The Property Contact Id</p>\n","type":"text/plain"},"type":"any","value":"{{contact_id}}","key":"contact_id"}]}},"response":[{"id":"c0f38193-c4a3-41bc-9f2b-4c3b5b9a8d94","name":"GET Property Contact","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/contacts/:contact_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","contacts",":contact_id"],"variable":[{"key":"property_id","value":"{{property_id}}","description":"The Property Id"},{"key":"contact_id","value":"{{contact_id}}","description":"The Property Contact Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Fri, 30 Apr 2021 14:40:44 GMT"},{"key":"Expires","value":"Fri, 30 Apr 2021 14:40:44 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"created\": {\n        \"date\": \"2021-04-29 17:15:06.000000\",\n        \"timezone_type\": 3,\n        \"timezone\": \"UTC\"\n    },\n    \"property\": {\n        \"id\": 1\n    },\n    \"contact\": {\n        \"id\": 1,\n        \"first_name\": \"Joe\",\n        \"last_name\": \"Buyer\",\n        \"middle_name\": null,\n        \"nick_name\": null,\n        \"email\": \"joe_buyer@test.com\",\n        \"office_email\": null,\n        \"address\": \"123 Main St\",\n        \"unit_number\": null,\n        \"city\": \"Boise\",\n        \"state\": \"ID\",\n        \"zip\": \"83702\",\n        \"country\": null,\n        \"county\": null,\n        \"office_name\": null,\n        \"office_address\": null,\n        \"office_unit_number\": null,\n        \"office_city\": null,\n        \"office_state\": null,\n        \"office_country\": null,\n        \"office_county\": null,\n        \"office_zip\": null,\n        \"phone\": null,\n        \"phone_ext\": null,\n        \"office_phone\": null,\n        \"office_phone_ext\": null,\n        \"fax\": null,\n        \"office_fax\": null,\n        \"cell_phone\": \"(555) 555-5555\",\n        \"cell_phone_ext\": null,\n        \"office_cell_phone\": null,\n        \"office_cell_phone_ext\": null,\n        \"personal_website\": null,\n        \"office_website\": null,\n        \"agent_license_number\": null,\n        \"office_license_number\": null\n    },\n    \"contact_role\": {\n        \"id\": 265,\n        \"title\": \"Buyer\"\n    }\n}"}],"_postman_id":"e5bdc190-e725-4350-8065-4474347b48bb"},{"name":"Property Contact","id":"3f51e937-909b-4603-b667-231f336aca2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n        \"contact_id\" : \"991912\",\n        \"contact_role_id\" : \"269\"\n}"},"url":"https://api.opentoclose.com/v1/properties/:property_id/contacts","description":"<p>Associate a Contact &amp; Contact Role with a given Property</p>\n<p>Required fields in JSON request payload:</p>\n<table>\n<tr><td><b>contact_id</b></td><td>The Id of a Contact associated with this Property.  Use <b>GET Contacts</b> to look up Contacts.</td></tr>\n<tr><td><b>contact_role_id</b></td><td>The Id of a Contact Role to assign to this Contact for this Property.  Use <b>GET Contact Roles</b> to look up Contact Roles.</td></tr>\n</table>","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","contacts"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"42cfe732-14ed-4fce-8186-3e183fe625be","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"}]}},"response":[{"id":"a59344f5-93fa-43dc-b3a2-4e34e5f35dab","name":"POST Property Contact","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n        \"contact_id\" : \"991912\",\n        \"contact_role_id\" : \"269\"\n}"},"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/contacts","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","contacts"],"variable":[{"key":"property_id","value":"{{property_id}}","description":"The Id of the Property"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Fri, 30 Apr 2021 17:37:16 GMT"},{"key":"Expires","value":"Fri, 30 Apr 2021 17:37:16 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"created\": {\n        \"date\": \"2021-04-30 17:37:16.713109\",\n        \"timezone_type\": 3,\n        \"timezone\": \"GMT\"\n    },\n    \"property\": {\n        \"id\": 1\n    },\n    \"contact\": {\n        \"id\": 1,\n        \"first_name\": \"Joe\",\n        \"last_name\": \"Jones\",\n        \"middle_name\": \"\",\n        \"nick_name\": null,\n        \"email\": \"joex@test.com\",\n        \"office_email\": \"shane@opentoclose.com\",\n        \"address\": \"123 Happy Lane\",\n        \"unit_number\": null,\n        \"city\": \"Boise\",\n        \"state\": \"Idaho\",\n        \"zip\": \"83301\",\n        \"country\": \"United States\",\n        \"county\": \"Ada\",\n        \"office_name\": null,\n        \"office_address\": \"123 Happy Lane\",\n        \"office_unit_number\": null,\n        \"office_city\": \"Boise\",\n        \"office_state\": \"Idaho\",\n        \"office_country\": \"United States\",\n        \"office_county\": \"Ada\",\n        \"office_zip\": \"83301\",\n        \"phone\": \"2223334444\",\n        \"phone_ext\": \"555\",\n        \"office_phone\": \"2223334444\",\n        \"office_phone_ext\": \"555\",\n        \"fax\": null,\n        \"office_fax\": null,\n        \"cell_phone\": \"1112223333\",\n        \"cell_phone_ext\": \"555\",\n        \"office_cell_phone\": \"1112223333\",\n        \"office_cell_phone_ext\": \"555\",\n        \"personal_website\": null,\n        \"office_website\": null,\n        \"agent_license_number\": \"123123123\",\n        \"office_license_number\": \"123123123\"\n    },\n    \"contact_role\": {\n        \"id\": 269,\n        \"title\": \"Listing Agent\"\n    }\n}"}],"_postman_id":"3f51e937-909b-4603-b667-231f336aca2a"}],"id":"eebe5dd3-0806-49f0-b36d-a7ec08ee2389","description":"<p>Interact with Contacts associated with a given Property</p>\n","_postman_id":"eebe5dd3-0806-49f0-b36d-a7ec08ee2389","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Property Documents","item":[{"name":"Property Documents","id":"31b2dae0-d9ac-4c27-bd2b-d5fd3cd3e78b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/properties/:property_id/documents","description":"<p>Retrieve all Documents associated with a given Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","documents"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[{"id":"20316cba-39f2-488b-a799-0f1a3e42f75e","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"}]}},"response":[{"id":"ceec7c1d-b42a-4daf-a953-32cef7752b52","name":"GET Property Documents","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/documents","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","documents"],"query":[{"key":"file_name","value":"{{file_name}}","description":"The file name of an uploaded Document","disabled":true},{"key":"","value":"","disabled":true}],"variable":[{"key":"property_id","value":"{{property_id}}","description":"The Property Id the Documents are associated with"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Fri, 30 Apr 2021 18:34:16 GMT"},{"key":"Expires","value":"Fri, 30 Apr 2021 18:34:16 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"folders\": [\n        {\n            \"id\": 1,\n            \"title\": \"Main Folder\",\n            \"excluded\": null,\n            \"property\": {\n                \"id\": 1\n            },\n            \"notes\": [],\n            \"documents\": [\n                {\n                    \"id\": 1,\n                    \"file_name\": \"test.pdf\",\n                    \"file_url\": \"https://app.opentoclose.com/document/download/fetch/1/rt1aw7DwxhjaoyRQC7PoSqJEVGOQ7uGJ\",\n                    \"file_ext\": \"pdf\",\n                    \"file_size\": 3908,\n                    \"notes\": [],\n                    \"buttons\": []\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"31b2dae0-d9ac-4c27-bd2b-d5fd3cd3e78b"},{"name":"Property Document","id":"34ff1751-ae18-4392-a9b8-9c0b3b1c7fcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/properties/:property_id/documents/:document_id","description":"<p>Retrieve a single Document associated with a given Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","documents",":document_id"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"51effa65-aa2d-46a5-b9bf-ba779eee9f9b","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"},{"id":"16b0a4ea-8fe8-4ccf-9055-c5fff8422cfa","description":{"content":"<p><em><strong>(required</strong></em> The Document Id</p>\n","type":"text/plain"},"type":"any","value":"{{document_id}}","key":"document_id"}]}},"response":[{"id":"e7fa952f-d238-44e5-8115-960562098410","name":"GET Property Document","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/documents/:document_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","documents",":document_id"],"variable":[{"key":"property_id","value":"{{property_id}}","description":"The Property Id the Document is associated with"},{"key":"document_id","value":"{{document_id}}","description":"The Id of the Document"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Fri, 30 Apr 2021 18:35:12 GMT"},{"key":"Expires","value":"Fri, 30 Apr 2021 18:35:12 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"created\": {\n        \"date\": \"2021-04-29 21:41:56.000000\",\n        \"timezone_type\": 3,\n        \"timezone\": \"UTC\"\n    },\n    \"project\": {\n        \"id\": 1\n    },\n    \"file_name\": \"test.pdf\",\n    \"file_url\": \"https://app.opentoclose.com/document/download/fetch/1/rt1aw7DwxhjaoyRQC7PoSqJEVGOQ7uGJ\",\n    \"file_ext\": \"pdf\",\n    \"file_size\": 3908\n}"}],"_postman_id":"34ff1751-ae18-4392-a9b8-9c0b3b1c7fcc"},{"name":"Property Document","id":"e896c057-f3cd-4170-ad99-745dca065283","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"file_name\" : \"test.pdf\",\n \"base64_data\" : \"JVBERi0xLjINJeLjz9MNCjMgMCBvYmoNPDwgDS9MaW5lYXJpemVkIDEgDS9PIDUgDS9IIFsgNzYwIDE1NyBdIA0vTCAzOTA4IA0vRSAzNjU4IA0vTiAxIA0vVCAzNzMxIA0+PiANZW5kb2JqDSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB4cmVmDTMgMTUgDTAwMDAwMDAwMTYgMDAwMDAgbg0KMDAwMDAwMDY0NCAwMDAwMCBuDQowMDAwMDAwOTE3IDAwMDAwIG4NCjAwMDAwMDEwNjggMDAwMDAgbg0KMDAwMDAwMTIyNCAwMDAwMCBuDQowMDAwMDAxNDEwIDAwMDAwIG4NCjAwMDAwMDE1ODkgMDAwMDAgbg0KMDAwMDAwMTc2OCAwMDAwMCBuDQowMDAwMDAyMTk3IDAwMDAwIG4NCjAwMDAwMDIzODMgMDAwMDAgbg0KMDAwMDAwMjc2OSAwMDAwMCBuDQowMDAwMDAzMTcyIDAwMDAwIG4NCjAwMDAwMDMzNTEgMDAwMDAgbg0KMDAwMDAwMDc2MCAwMDAwMCBuDQowMDAwMDAwODk3IDAwMDAwIG4NCnRyYWlsZXINPDwNL1NpemUgMTgNL0luZm8gMSAwIFIgDS9Sb290IDQgMCBSIA0vUHJldiAzNzIyIA0vSURbPGQ3MGY0NmM1YmE0ZmU4YmQ0OWE5ZGQwNTk5YjBiMTUxPjxkNzBmNDZjNWJhNGZlOGJkNDlhOWRkMDU5OWIwYjE1MT5dDT4+DXN0YXJ0eHJlZg0wDSUlRU9GDSAgICAgIA00IDAgb2JqDTw8IA0vVHlwZSAvQ2F0YWxvZyANL1BhZ2VzIDIgMCBSIA0vT3BlbkFjdGlvbiBbIDUgMCBSIC9YWVogbnVsbCBudWxsIG51bGwgXSANL1BhZ2VNb2RlIC9Vc2VOb25lIA0+PiANZW5kb2JqDTE2IDAgb2JqDTw8IC9TIDM2IC9GaWx0ZXIgL0ZsYXRlRGVjb2RlIC9MZW5ndGggMTcgMCBSID4+IA1zdHJlYW0NCkiJYmBg4GVgYPrBAAScFxiwAQ4oLQDE3FDMwODHwKkyubctWLfmpsmimQ5AEYAAAwC3vwe0DWVuZHN0cmVhbQ1lbmRvYmoNMTcgMCBvYmoNNTMgDWVuZG9iag01IDAgb2JqDTw8IA0vVHlwZSAvUGFnZSANL1BhcmVudCAyIDAgUiANL1Jlc291cmNlcyA2IDAgUiANL0NvbnRlbnRzIDEwIDAgUiANL01lZGlhQm94IFsgMCAwIDYxMiA3OTIgXSANL0Nyb3BCb3ggWyAwIDAgNjEyIDc5MiBdIA0vUm90YXRlIDAgDT4+IA1lbmRvYmoNNiAwIG9iag08PCANL1Byb2NTZXQgWyAvUERGIC9UZXh0IF0gDS9Gb250IDw8IC9UVDIgOCAwIFIgL1RUNCAxMiAwIFIgL1RUNiAxMyAwIFIgPj4gDS9FeHRHU3RhdGUgPDwgL0dTMSAxNSAwIFIgPj4gDS9Db2xvclNwYWNlIDw8IC9DczUgOSAwIFIgPj4gDT4+IA1lbmRvYmoNNyAwIG9iag08PCANL1R5cGUgL0ZvbnREZXNjcmlwdG9yIA0vQXNjZW50IDg5MSANL0NhcEhlaWdodCAwIA0vRGVzY2VudCAtMjE2IA0vRmxhZ3MgMzQgDS9Gb250QkJveCBbIC01NjggLTMwNyAyMDI4IDEwMDcgXSANL0ZvbnROYW1lIC9UaW1lc05ld1JvbWFuIA0vSXRhbGljQW5nbGUgMCANL1N0ZW1WIDAgDT4+IA1lbmRvYmoNOCAwIG9iag08PCANL1R5cGUgL0ZvbnQgDS9TdWJ0eXBlIC9UcnVlVHlwZSANL0ZpcnN0Q2hhciAzMiANL0xhc3RDaGFyIDMyIA0vV2lkdGhzIFsgMjUwIF0gDS9FbmNvZGluZyAvV2luQW5zaUVuY29kaW5nIA0vQmFzZUZvbnQgL1RpbWVzTmV3Um9tYW4gDS9Gb250RGVzY3JpcHRvciA3IDAgUiANPj4gDWVuZG9iag05IDAgb2JqDVsgDS9DYWxSR0IgPDwgL1doaXRlUG9pbnQgWyAwLjk1MDUgMSAxLjA4OSBdIC9HYW1tYSBbIDIuMjIyMjEgMi4yMjIyMSAyLjIyMjIxIF0gDS9NYXRyaXggWyAwLjQxMjQgMC4yMTI2IDAuMDE5MyAwLjM1NzYgMC43MTUxOSAwLjExOTIgMC4xODA1IDAuMDcyMiAwLjk1MDUgXSA+PiANDV0NZW5kb2JqDTEwIDAgb2JqDTw8IC9MZW5ndGggMzU1IC9GaWx0ZXIgL0ZsYXRlRGVjb2RlID4+IA1zdHJlYW0NCkiJdJDBTsMwEETv/oo92ohuvXHsJEeggOCEwDfEIU1SCqIJIimIv2dthyJVQpGc0Xo88+xzL5beZ0DgN4IIq6oCzd8sK43amAyK3GKmTQV+J5YXo4VmjDYNYyOW1w8Ez6PQ4JuwfAkJyr+yXNgSSwt+NU+4Kp+rcg4uy9Q1a6MdarLcpgvUeUGh7RBFSLk1f1n+5FgsHJaZttFqA+tKLJhfZ3kEY+VcoHuUfvui2O3kCL9COSwk1Ok3deMEd6srUCVa2Q7Nftf1Ewar5a4nfxuu4v59NcLMGAKXlcjMLtwj1BsTQCITUSK52cC3IoNGDnto6l5VmEv4YAwjO8VWJ+s2DSeGttw/qmA/PZyLu3vY1p9p0MGZIs2iHdZxjwdNSkzedT0pJiW+CWl5H0O7uu2SB1JLn8rHlMkH2F+/xa20Rjp+nAQ39Ec8c1gz7KJ4T3H7uXnuwvSWl178CDAA/bGPlAplbmRzdHJlYW0NZW5kb2JqDTExIDAgb2JqDTw8IA0vVHlwZSAvRm9udERlc2NyaXB0b3IgDS9Bc2NlbnQgOTA1IA0vQ2FwSGVpZ2h0IDAgDS9EZXNjZW50IC0yMTEgDS9GbGFncyAzMiANL0ZvbnRCQm94IFsgLTYyOCAtMzc2IDIwMzQgMTA0OCBdIA0vRm9udE5hbWUgL0FyaWFsLEJvbGQgDS9JdGFsaWNBbmdsZSAwIA0vU3RlbVYgMTMzIA0+PiANZW5kb2JqDTEyIDAgb2JqDTw8IA0vVHlwZSAvRm9udCANL1N1YnR5cGUgL1RydWVUeXBlIA0vRmlyc3RDaGFyIDMyIA0vTGFzdENoYXIgMTE3IA0vV2lkdGhzIFsgMjc4IDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMjc4IDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgDTAgMCAwIDAgMCA3MjIgMCA2MTEgMCAwIDAgMCAwIDAgMCAwIDAgNjY3IDAgMCAwIDYxMSAwIDAgMCAwIDAgMCANMCAwIDAgMCAwIDAgNTU2IDAgNTU2IDYxMSA1NTYgMCAwIDYxMSAyNzggMCAwIDAgODg5IDYxMSA2MTEgMCAwIA0wIDU1NiAzMzMgNjExIF0gDS9FbmNvZGluZyAvV2luQW5zaUVuY29kaW5nIA0vQmFzZUZvbnQgL0FyaWFsLEJvbGQgDS9Gb250RGVzY3JpcHRvciAxMSAwIFIgDT4+IA1lbmRvYmoNMTMgMCBvYmoNPDwgDS9UeXBlIC9Gb250IA0vU3VidHlwZSAvVHJ1ZVR5cGUgDS9GaXJzdENoYXIgMzIgDS9MYXN0Q2hhciAxMjEgDS9XaWR0aHMgWyAyNzggMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDI3OCAwIDI3OCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCANMCAwIDAgNjY3IDAgMCAwIDAgMCAwIDAgMjc4IDAgMCAwIDAgMCAwIDAgMCA3MjIgMCAwIDAgMCAwIDAgMCAwIA0wIDAgMCAwIDAgMCA1NTYgNTU2IDUwMCA1NTYgNTU2IDI3OCAwIDU1NiAyMjIgMCAwIDIyMiA4MzMgNTU2IDU1NiANNTU2IDAgMzMzIDUwMCAyNzggNTU2IDUwMCAwIDAgNTAwIF0gDS9FbmNvZGluZyAvV2luQW5zaUVuY29kaW5nIA0vQmFzZUZvbnQgL0FyaWFsIA0vRm9udERlc2NyaXB0b3IgMTQgMCBSIA0+PiANZW5kb2JqDTE0IDAgb2JqDTw8IA0vVHlwZSAvRm9udERlc2NyaXB0b3IgDS9Bc2NlbnQgOTA1IA0vQ2FwSGVpZ2h0IDAgDS9EZXNjZW50IC0yMTEgDS9GbGFncyAzMiANL0ZvbnRCQm94IFsgLTY2NSAtMzI1IDIwMjggMTAzNyBdIA0vRm9udE5hbWUgL0FyaWFsIA0vSXRhbGljQW5nbGUgMCANL1N0ZW1WIDAgDT4+IA1lbmRvYmoNMTUgMCBvYmoNPDwgDS9UeXBlIC9FeHRHU3RhdGUgDS9TQSBmYWxzZSANL1NNIDAuMDIgDS9UUiAvSWRlbnRpdHkgDT4+IA1lbmRvYmoNMSAwIG9iag08PCANL1Byb2R1Y2VyIChBY3JvYmF0IERpc3RpbGxlciA0LjA1IGZvciBXaW5kb3dzKQ0vQ3JlYXRvciAoTWljcm9zb2Z0IFdvcmQgOS4wKQ0vTW9kRGF0ZSAoRDoyMDAxMDgyOTA5NTUwMS0wNycwMCcpDS9BdXRob3IgKEdlbmUgQnJ1bWJsYXkpDS9UaXRsZSAoVGhpcyBpcyBhIHRlc3QgUERGIGRvY3VtZW50KQ0vQ3JlYXRpb25EYXRlIChEOjIwMDEwODI5MDk1NDU3KQ0+PiANZW5kb2JqDTIgMCBvYmoNPDwgDS9UeXBlIC9QYWdlcyANL0tpZHMgWyA1IDAgUiBdIA0vQ291bnQgMSANPj4gDWVuZG9iag14cmVmDTAgMyANMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAzNDI5IDAwMDAwIG4NCjAwMDAwMDM2NTggMDAwMDAgbg0KdHJhaWxlcg08PA0vU2l6ZSAzDS9JRFs8ZDcwZjQ2YzViYTRmZThiZDQ5YTlkZDA1OTliMGIxNTE+PGQ3MGY0NmM1YmE0ZmU4YmQ0OWE5ZGQwNTk5YjBiMTUxPl0NPj4Nc3RhcnR4cmVmDTE3Mw0lJUVPRg0=\"\n}"},"url":"https://api.opentoclose.com/v1/properties/:property_id/documents","description":"<p>Create a Document associated with a given Property and upload a base64-encoded file.</p>\n<p>File uploads are restricted to the following file mime types: doc, docx, jpeg, jpg, png, gif, xls, csv, pdf, xls, xlsx, zip.</p>\n<p>Required fields in JSON request payload:</p>\n<table><tbody><tr><td><b>file_name</b></td><td>The name of a Document associated with this Property.</td></tr><tr><td><b>base64_data</b></td><td>The Base64-encoded Document associated with this Property.</td></tr></tbody></table>","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","documents"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"24d08f7f-b62d-4ede-888b-abe68f4103b5","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"}]}},"response":[{"id":"bed8c3ad-231f-49b3-a3df-0e65c5a79a95","name":"POST Property Document","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"file_name\" : \"test.pdf\",\n \"base64_data\" : \"JVBERi0xLjINJeLjz9MNCjMgMCBvYmoNPDwgDS9MaW5lYXJpemVkIDEgDS9PIDUgDS9IIFsgNzYwIDE1NyBdIA0vTCAzOTA4IA0vRSAzNjU4IA0vTiAxIA0vVCAzNzMxIA0+PiANZW5kb2JqDSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB4cmVmDTMgMTUgDTAwMDAwMDAwMTYgMDAwMDAgbg0KMDAwMDAwMDY0NCAwMDAwMCBuDQowMDAwMDAwOTE3IDAwMDAwIG4NCjAwMDAwMDEwNjggMDAwMDAgbg0KMDAwMDAwMTIyNCAwMDAwMCBuDQowMDAwMDAxNDEwIDAwMDAwIG4NCjAwMDAwMDE1ODkgMDAwMDAgbg0KMDAwMDAwMTc2OCAwMDAwMCBuDQowMDAwMDAyMTk3IDAwMDAwIG4NCjAwMDAwMDIzODMgMDAwMDAgbg0KMDAwMDAwMjc2OSAwMDAwMCBuDQowMDAwMDAzMTcyIDAwMDAwIG4NCjAwMDAwMDMzNTEgMDAwMDAgbg0KMDAwMDAwMDc2MCAwMDAwMCBuDQowMDAwMDAwODk3IDAwMDAwIG4NCnRyYWlsZXINPDwNL1NpemUgMTgNL0luZm8gMSAwIFIgDS9Sb290IDQgMCBSIA0vUHJldiAzNzIyIA0vSURbPGQ3MGY0NmM1YmE0ZmU4YmQ0OWE5ZGQwNTk5YjBiMTUxPjxkNzBmNDZjNWJhNGZlOGJkNDlhOWRkMDU5OWIwYjE1MT5dDT4+DXN0YXJ0eHJlZg0wDSUlRU9GDSAgICAgIA00IDAgb2JqDTw8IA0vVHlwZSAvQ2F0YWxvZyANL1BhZ2VzIDIgMCBSIA0vT3BlbkFjdGlvbiBbIDUgMCBSIC9YWVogbnVsbCBudWxsIG51bGwgXSANL1BhZ2VNb2RlIC9Vc2VOb25lIA0+PiANZW5kb2JqDTE2IDAgb2JqDTw8IC9TIDM2IC9GaWx0ZXIgL0ZsYXRlRGVjb2RlIC9MZW5ndGggMTcgMCBSID4+IA1zdHJlYW0NCkiJYmBg4GVgYPrBAAScFxiwAQ4oLQDE3FDMwODHwKkyubctWLfmpsmimQ5AEYAAAwC3vwe0DWVuZHN0cmVhbQ1lbmRvYmoNMTcgMCBvYmoNNTMgDWVuZG9iag01IDAgb2JqDTw8IA0vVHlwZSAvUGFnZSANL1BhcmVudCAyIDAgUiANL1Jlc291cmNlcyA2IDAgUiANL0NvbnRlbnRzIDEwIDAgUiANL01lZGlhQm94IFsgMCAwIDYxMiA3OTIgXSANL0Nyb3BCb3ggWyAwIDAgNjEyIDc5MiBdIA0vUm90YXRlIDAgDT4+IA1lbmRvYmoNNiAwIG9iag08PCANL1Byb2NTZXQgWyAvUERGIC9UZXh0IF0gDS9Gb250IDw8IC9UVDIgOCAwIFIgL1RUNCAxMiAwIFIgL1RUNiAxMyAwIFIgPj4gDS9FeHRHU3RhdGUgPDwgL0dTMSAxNSAwIFIgPj4gDS9Db2xvclNwYWNlIDw8IC9DczUgOSAwIFIgPj4gDT4+IA1lbmRvYmoNNyAwIG9iag08PCANL1R5cGUgL0ZvbnREZXNjcmlwdG9yIA0vQXNjZW50IDg5MSANL0NhcEhlaWdodCAwIA0vRGVzY2VudCAtMjE2IA0vRmxhZ3MgMzQgDS9Gb250QkJveCBbIC01NjggLTMwNyAyMDI4IDEwMDcgXSANL0ZvbnROYW1lIC9UaW1lc05ld1JvbWFuIA0vSXRhbGljQW5nbGUgMCANL1N0ZW1WIDAgDT4+IA1lbmRvYmoNOCAwIG9iag08PCANL1R5cGUgL0ZvbnQgDS9TdWJ0eXBlIC9UcnVlVHlwZSANL0ZpcnN0Q2hhciAzMiANL0xhc3RDaGFyIDMyIA0vV2lkdGhzIFsgMjUwIF0gDS9FbmNvZGluZyAvV2luQW5zaUVuY29kaW5nIA0vQmFzZUZvbnQgL1RpbWVzTmV3Um9tYW4gDS9Gb250RGVzY3JpcHRvciA3IDAgUiANPj4gDWVuZG9iag05IDAgb2JqDVsgDS9DYWxSR0IgPDwgL1doaXRlUG9pbnQgWyAwLjk1MDUgMSAxLjA4OSBdIC9HYW1tYSBbIDIuMjIyMjEgMi4yMjIyMSAyLjIyMjIxIF0gDS9NYXRyaXggWyAwLjQxMjQgMC4yMTI2IDAuMDE5MyAwLjM1NzYgMC43MTUxOSAwLjExOTIgMC4xODA1IDAuMDcyMiAwLjk1MDUgXSA+PiANDV0NZW5kb2JqDTEwIDAgb2JqDTw8IC9MZW5ndGggMzU1IC9GaWx0ZXIgL0ZsYXRlRGVjb2RlID4+IA1zdHJlYW0NCkiJdJDBTsMwEETv/oo92ohuvXHsJEeggOCEwDfEIU1SCqIJIimIv2dthyJVQpGc0Xo88+xzL5beZ0DgN4IIq6oCzd8sK43amAyK3GKmTQV+J5YXo4VmjDYNYyOW1w8Ez6PQ4JuwfAkJyr+yXNgSSwt+NU+4Kp+rcg4uy9Q1a6MdarLcpgvUeUGh7RBFSLk1f1n+5FgsHJaZttFqA+tKLJhfZ3kEY+VcoHuUfvui2O3kCL9COSwk1Ok3deMEd6srUCVa2Q7Nftf1Ewar5a4nfxuu4v59NcLMGAKXlcjMLtwj1BsTQCITUSK52cC3IoNGDnto6l5VmEv4YAwjO8VWJ+s2DSeGttw/qmA/PZyLu3vY1p9p0MGZIs2iHdZxjwdNSkzedT0pJiW+CWl5H0O7uu2SB1JLn8rHlMkH2F+/xa20Rjp+nAQ39Ec8c1gz7KJ4T3H7uXnuwvSWl178CDAA/bGPlAplbmRzdHJlYW0NZW5kb2JqDTExIDAgb2JqDTw8IA0vVHlwZSAvRm9udERlc2NyaXB0b3IgDS9Bc2NlbnQgOTA1IA0vQ2FwSGVpZ2h0IDAgDS9EZXNjZW50IC0yMTEgDS9GbGFncyAzMiANL0ZvbnRCQm94IFsgLTYyOCAtMzc2IDIwMzQgMTA0OCBdIA0vRm9udE5hbWUgL0FyaWFsLEJvbGQgDS9JdGFsaWNBbmdsZSAwIA0vU3RlbVYgMTMzIA0+PiANZW5kb2JqDTEyIDAgb2JqDTw8IA0vVHlwZSAvRm9udCANL1N1YnR5cGUgL1RydWVUeXBlIA0vRmlyc3RDaGFyIDMyIA0vTGFzdENoYXIgMTE3IA0vV2lkdGhzIFsgMjc4IDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMjc4IDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgDTAgMCAwIDAgMCA3MjIgMCA2MTEgMCAwIDAgMCAwIDAgMCAwIDAgNjY3IDAgMCAwIDYxMSAwIDAgMCAwIDAgMCANMCAwIDAgMCAwIDAgNTU2IDAgNTU2IDYxMSA1NTYgMCAwIDYxMSAyNzggMCAwIDAgODg5IDYxMSA2MTEgMCAwIA0wIDU1NiAzMzMgNjExIF0gDS9FbmNvZGluZyAvV2luQW5zaUVuY29kaW5nIA0vQmFzZUZvbnQgL0FyaWFsLEJvbGQgDS9Gb250RGVzY3JpcHRvciAxMSAwIFIgDT4+IA1lbmRvYmoNMTMgMCBvYmoNPDwgDS9UeXBlIC9Gb250IA0vU3VidHlwZSAvVHJ1ZVR5cGUgDS9GaXJzdENoYXIgMzIgDS9MYXN0Q2hhciAxMjEgDS9XaWR0aHMgWyAyNzggMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDI3OCAwIDI3OCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCANMCAwIDAgNjY3IDAgMCAwIDAgMCAwIDAgMjc4IDAgMCAwIDAgMCAwIDAgMCA3MjIgMCAwIDAgMCAwIDAgMCAwIA0wIDAgMCAwIDAgMCA1NTYgNTU2IDUwMCA1NTYgNTU2IDI3OCAwIDU1NiAyMjIgMCAwIDIyMiA4MzMgNTU2IDU1NiANNTU2IDAgMzMzIDUwMCAyNzggNTU2IDUwMCAwIDAgNTAwIF0gDS9FbmNvZGluZyAvV2luQW5zaUVuY29kaW5nIA0vQmFzZUZvbnQgL0FyaWFsIA0vRm9udERlc2NyaXB0b3IgMTQgMCBSIA0+PiANZW5kb2JqDTE0IDAgb2JqDTw8IA0vVHlwZSAvRm9udERlc2NyaXB0b3IgDS9Bc2NlbnQgOTA1IA0vQ2FwSGVpZ2h0IDAgDS9EZXNjZW50IC0yMTEgDS9GbGFncyAzMiANL0ZvbnRCQm94IFsgLTY2NSAtMzI1IDIwMjggMTAzNyBdIA0vRm9udE5hbWUgL0FyaWFsIA0vSXRhbGljQW5nbGUgMCANL1N0ZW1WIDAgDT4+IA1lbmRvYmoNMTUgMCBvYmoNPDwgDS9UeXBlIC9FeHRHU3RhdGUgDS9TQSBmYWxzZSANL1NNIDAuMDIgDS9UUiAvSWRlbnRpdHkgDT4+IA1lbmRvYmoNMSAwIG9iag08PCANL1Byb2R1Y2VyIChBY3JvYmF0IERpc3RpbGxlciA0LjA1IGZvciBXaW5kb3dzKQ0vQ3JlYXRvciAoTWljcm9zb2Z0IFdvcmQgOS4wKQ0vTW9kRGF0ZSAoRDoyMDAxMDgyOTA5NTUwMS0wNycwMCcpDS9BdXRob3IgKEdlbmUgQnJ1bWJsYXkpDS9UaXRsZSAoVGhpcyBpcyBhIHRlc3QgUERGIGRvY3VtZW50KQ0vQ3JlYXRpb25EYXRlIChEOjIwMDEwODI5MDk1NDU3KQ0+PiANZW5kb2JqDTIgMCBvYmoNPDwgDS9UeXBlIC9QYWdlcyANL0tpZHMgWyA1IDAgUiBdIA0vQ291bnQgMSANPj4gDWVuZG9iag14cmVmDTAgMyANMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAzNDI5IDAwMDAwIG4NCjAwMDAwMDM2NTggMDAwMDAgbg0KdHJhaWxlcg08PA0vU2l6ZSAzDS9JRFs8ZDcwZjQ2YzViYTRmZThiZDQ5YTlkZDA1OTliMGIxNTE+PGQ3MGY0NmM1YmE0ZmU4YmQ0OWE5ZGQwNTk5YjBiMTUxPl0NPj4Nc3RhcnR4cmVmDTE3Mw0lJUVPRg0=\"\n}"},"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/documents","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","documents"],"variable":[{"key":"property_id","value":"{{property_id}}","description":"The Property Id the Document is associated with"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Fri, 30 Apr 2021 18:37:01 GMT"},{"key":"Expires","value":"Fri, 30 Apr 2021 18:37:01 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"created\": {\n        \"date\": \"2021-04-30 18:37:01.058215\",\n        \"timezone_type\": 3,\n        \"timezone\": \"GMT\"\n    },\n    \"project\": {\n        \"id\": 1\n    },\n    \"file_name\": \"test.pdf\",\n    \"file_url\": \"https://app.opentoclose.com/document/download/fetch/1/rt1aw7DwxhjaoyRQC7PoSqJEVGOQ7uGJ\",\n    \"file_ext\": \"pdf\",\n    \"file_size\": 3908\n}"}],"_postman_id":"e896c057-f3cd-4170-ad99-745dca065283"}],"id":"6428c6b6-385d-480c-aec2-f3fddee4e5de","description":"<p>Interact with Documents associated with a given Property and upload base64-encoded files.</p>\n","_postman_id":"6428c6b6-385d-480c-aec2-f3fddee4e5de","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Property Emails","item":[{"name":"Property Emails","id":"2966c7d1-0155-47d4-9f13-b5e06247e378","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/properties/:property_id/emails","description":"<p>Get all Emails associated with a given Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","emails"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"186f6f05-74c1-4131-9271-2ea0809de90e","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"}]}},"response":[{"id":"f3b36e0b-b9a6-4d1b-b02b-c257a1793b82","name":"GET Property Email","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/emails","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","emails"],"variable":[{"id":"186f6f05-74c1-4131-9271-2ea0809de90e","key":"property_id","value":"{{property_id}}","description":"***(required)*** The Property Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.8"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Wed, 09 Jun 2021 14:42:14 GMT"},{"key":"X-Debug-Token","value":"8153ab"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Wed, 09 Jun 2021 14:42:15 GMT"},{"key":"Set-Cookie","value":"sf_redirect=deleted; expires=Tue, 09-Jun-2020 14:42:14 GMT; Max-Age=0; path=/; httponly"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": {\n            \"date\": \"2021-06-02 14:40:35.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"subject\": \"123 Main St, Boise, ID, USA\",\n        \"property\": {\n            \"id\": 10\n        }\n    },\n    {\n        \"id\": 2,\n        \"created\": {\n            \"date\": \"2021-06-03 14:40:35.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"subject\": \"123 Main St, Boise, ID, USA\",\n        \"property\": {\n            \"id\": 10\n        }\n    }\n]"}],"_postman_id":"2966c7d1-0155-47d4-9f13-b5e06247e378"},{"name":"Property Email","id":"06493c73-315e-469c-ac53-3c203513185f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/properties/:property_id/emails/:email_id","description":"<p>Retrieve a single Note associated with a given Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","emails",":email_id"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"9aac204c-b4c6-492c-8142-2daeb3811e1b","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"},{"id":"b570db9c-6a6b-4381-947a-3ab8a773b9b9","description":{"content":"<p><em><strong>(required)</strong></em> The Email Id</p>\n","type":"text/plain"},"type":"any","value":"{{email_id}}","key":"email_id"}]}},"response":[{"id":"88b1c9d8-039b-4e68-b711-2b7dee1bd2e7","name":"GET Property Email","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/emails/:email_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","emails",":email_id"],"variable":[{"key":"property_id","value":"{{property_id}}","description":"***(required)*** The Property Id"},{"key":"email_id","value":"{{email_id}}","description":"***(required)*** The Email Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.15.8"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Wed, 09 Jun 2021 14:49:11 GMT"},{"key":"X-Debug-Token","value":"7fe910"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Wed, 09 Jun 2021 14:49:11 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"created\": {\n        \"date\": \"2021-06-09 14:40:35.000000\",\n        \"timezone_type\": 3,\n        \"timezone\": \"UTC\"\n    },\n    \"subject\": \"123 Main St, Boise, ID, USA\",\n    \"property\": {\n        \"id\": 10\n    }\n}"}],"_postman_id":"06493c73-315e-469c-ac53-3c203513185f"}],"id":"3748ce43-d6b1-4092-b9e1-b35948edd06d","description":"<p>Interact with Notes associated with a given Property</p>\n","_postman_id":"3748ce43-d6b1-4092-b9e1-b35948edd06d","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Property Fields","item":[{"name":"Property Fields","id":"2938c936-4347-40a1-b64c-4df3cfa9f47f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/propertyFields","description":"<p>Get all Property Fields</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","propertyFields"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"6eeaaf91-4c46-40bd-a1f3-e8804bd99b7c","name":"GET Property Fields","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/propertyFields","protocol":"https","host":["api","opentoclose","com"],"path":["v1","propertyFields"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Thu, 29 Apr 2021 20:46:40 GMT"},{"key":"Expires","value":"Thu, 29 Apr 2021 20:46:40 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"group\": {\n            \"id\": 1,\n            \"label\": \"Loan\",\n            \"key\": \"loan\",\n            \"visible\": true,\n            \"sections\": [\n                {\n                    \"section\": {\n                        \"id\": 1,\n                        \"label\": \"Loan Details\",\n                        \"key\": \"loan_details\",\n                        \"visible\": true,\n                        \"fields\": [\n                            {\n                                \"id\": 1,\n                                \"label\": \"Financing Type\",\n                                \"key\": \"financing_type\",\n                                \"merge_field\": \"financing_type\",\n                                \"type\": \"choice\",\n                                \"options\": [\n                                    {\n                                        \"id\": 1,\n                                        \"title\": \"Conventional\"\n                                    },\n                                    {\n                                        \"id\": 2,\n                                        \"title\": \"VA\"\n                                    },\n                                    {\n                                        \"id\": 3,\n                                        \"title\": \"FHA\"\n                                    },\n                                    {\n                                        \"id\": 4,\n                                        \"title\": \"Cash\"\n                                    },\n                                    {\n                                        \"id\": 5,\n                                        \"title\": \"Construction\"\n                                    },\n                                    {\n                                        \"id\": 6,\n                                        \"title\": \"USDA\"\n                                    },\n                                    {\n                                        \"id\": 7,\n                                        \"title\": \"Other\"\n                                    }\n                                ],\n                                \"visible\": true\n                            },\n                            {\n                                \"id\": 2,\n                                \"label\": \"Loan Amount\",\n                                \"key\": \"loan_amount\",\n                                \"merge_field\": \"loan_amount\",\n                                \"type\": \"decimal\",\n                                \"visible\": true\n                            },\n                            {\n                                \"id\": 3,\n                                \"label\": \"Down Payment\",\n                                \"key\": \"down_payment\",\n                                \"merge_field\": \"down_payment\",\n                                \"type\": \"decimal\",\n                                \"visible\": true\n                            },\n                            {\n                                \"id\": 4,\n                                \"label\": \"Additional Deposit\",\n                                \"key\": \"additional_deposit\",\n                                \"merge_field\": \"additional_deposit\",\n                                \"type\": \"decimal\",\n                                \"visible\": true\n                            },\n                            {\n                                \"id\": 5,\n                                \"label\": \"Appraisal Value\",\n                                \"key\": \"appraisal_value\",\n                                \"merge_field\": \"appraisal_value\",\n                                \"type\": \"decimal\",\n                                \"visible\": true\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    },\n    {\n        \"group\": {\n            \"id\": 2,\n            \"label\": \"Commission\",\n            \"key\": \"commission\",\n            \"visible\": true,\n            \"sections\": [\n                {\n                    \"section\": {\n                        \"id\": 2,\n                        \"label\": \"Commission Details\",\n                        \"key\": \"commission_details\",\n                        \"visible\": true,\n                        \"fields\": [\n                            {\n                                \"id\": 6,\n                                \"label\": \"Commission Rate\",\n                                \"key\": \"commission_rate\",\n                                \"merge_field\": \"commission_rate\",\n                                \"type\": \"decimal\",\n                                \"visible\": true\n                            },\n                            {\n                                \"id\": 7,\n                                \"label\": \"Total Commission\",\n                                \"key\": \"total_commission\",\n                                \"merge_field\": \"total_commission\",\n                                \"type\": \"decimal\",\n                                \"visible\": true\n                            },\n                            {\n                                \"id\": 8,\n                                \"label\": \"Listing Side Commission $\",\n                                \"key\": \"listing_side_commission_amount\",\n                                \"merge_field\": \"listing_side_commission_amount\",\n                                \"type\": \"decimal\",\n                                \"visible\": true\n                            },\n                            {\n                                \"id\": 9,\n                                \"label\": \"Listing Side Commission %\",\n                                \"key\": \"listing_side_commission_percent\",\n                                \"merge_field\": \"listing_side_commission_percent\",\n                                \"type\": \"decimal\",\n                                \"visible\": true\n                            },\n                            {\n                                \"id\": 10,\n                                \"label\": \"Buying Side Commission $\",\n                                \"key\": \"buying_side_commission_amount\",\n                                \"merge_field\": \"buying_side_commission_amount\",\n                                \"type\": \"decimal\",\n                                \"visible\": true\n                            },\n                            {\n                                \"id\": 11,\n                                \"label\": \"Buying Side Commission %\",\n                                \"key\": \"buying_side_commission_percent\",\n                                \"merge_field\": \"buying_side_commission_percent\",\n                                \"type\": \"decimal\",\n                                \"visible\": true\n                            }\n                        ]\n                    }\n                }\n            ]\n        }\n    }\n]"}],"_postman_id":"2938c936-4347-40a1-b64c-4df3cfa9f47f"},{"name":"Property Field","id":"4d94f7dc-c90a-48c5-9891-905b0b203fb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.opentoclose.com/v1/propertyFields","description":"<p>Create new Property Field</p>\n<p>Required fields in JSON request payload:</p>\n<table>\n<tr><td><b>section_id</b></td><td>Must be a valid Property Field Section ID</td></tr>\n<tr><td><b>title</b></td><td>Must not be blank and can only contain alpha numeric characters (all special characters will be stripped)</td></tr>\n<tr><td><b>type</b></td><td>Must be a valid type. Options include: text, textarea, decimal, number, date, choice</td></tr>\n<tr><td><b>merge_field</b></td><td>Must be a unique - we recommend making your title all lower case and replacing all spaces with underscores. E.g. hello_world</td></tr>\n<tr><td><b>placeholder_text</b></td><td>Must not be blank and can only contain alpha numeric characters (all special characters will be stripped)</td></tr>\n<tr><td><b>choice_options</b></td><td>Only applicable if the type is \"Choice\". Must be an array of values. Value title can only contain alpha numeric characters (all special characters will be stripped).</td></tr>\n<tr><td><b>attributes</b></td><td>Must be an array of values...</td></tr>\n<tr><td><b>dollar_percent</b></td><td>Attribute used if type is decimal. Options dollar or percent</td></tr>\n<tr><td><b>add_cents</b></td><td>Attribute used if type is decimal. Options true or false</td></tr>\n<tr><td><b>require_time</b></td><td>Attribute used if type is date. Options true or false</td></tr>\n<tr><td><b>multi_option</b></td><td>Attribute used if type is choice. Options true or false</td></tr>\n<tr><td><b>portal</b></td><td>Type is any of the available options. Options true or false. If true, field will be show in the agent or client portal if a field value exists inside of a property.</td></tr>\n</table>","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","propertyFields"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"a37a8f1d-5c97-4835-9542-654c60db08a5","name":"POST Property Field","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"section_id\": 1,\n    \"type\": \"choice\",\n    \"title\": \"Test Field\",\n    \"merge_field\": \"test_field\",\n    \"placeholder_text\": \"Test Field\",\n    \"choice_options\": [\n        {\n            \"title\": \"New Test Field Option 1\"\n        },\n        {\n            \"title\": \"New Test Field Option 2\"\n        }\n    ],\n    \"attributes\": {\n        \"dollar_percent\": \"dollar\",\n        \"add_cents\": true,\n        \"require_time\": true,\n        \"multi_option\": true,\n        \"portal\": true\n    }\n}"},"url":{"raw":"https://api.opentoclose.com/v1/propertyFields","protocol":"https","host":["api","opentoclose","com"],"path":["v1","propertyFields"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Thu, 29 Apr 2021 20:46:40 GMT"},{"key":"Expires","value":"Thu, 29 Apr 2021 20:46:40 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1\n}"}],"_postman_id":"4d94f7dc-c90a-48c5-9891-905b0b203fb8"}],"id":"08a886ef-86ed-4290-a8e8-5cb8215a3c5c","description":"<p>Interact with Property Fields</p>\n","_postman_id":"08a886ef-86ed-4290-a8e8-5cb8215a3c5c","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Property Field Sections","item":[{"name":"Property Field Sections","id":"5b234dd8-6cc6-4be9-ab9e-0f993233d1e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/propertyFieldSections","description":"<p>Get all Property Field Sections</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","propertyFieldSections"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"4935b817-bf26-4c5d-a338-f764ae8dead2","name":"GET Property Field Sections","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"group_id\": 1\n}"},"url":{"raw":"https://api.opentoclose.com/v1/propertyFieldSections","protocol":"https","host":["api","opentoclose","com"],"path":["v1","propertyFieldSections"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Thu, 29 Apr 2021 20:46:40 GMT"},{"key":"Expires","value":"Thu, 29 Apr 2021 20:46:40 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 18843,\n        \"title\": \"Hello World\",\n        \"key\": \"hello_world\",\n        \"sort_order\": 1\n    }\n]"}],"_postman_id":"5b234dd8-6cc6-4be9-ab9e-0f993233d1e0"},{"name":"Property Field Section","id":"ff57abee-46c1-46ad-9727-c72a82b26e60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.opentoclose.com/v1/propertyFieldSections","description":"<p>Create new Property Field Section</p>\n<p>Required fields in JSON request payload:</p>\n<table>\n<tr><td><b>group_id</b></td><td>Must be a valid Property Field Group ID</td></tr>\n<tr><td><b>title</b></td><td>Must not be blank and can only contain alpha numeric characters (all special characters will be stripped)</td></tr>\n</table>","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","propertyFieldSections"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"c809ee96-8608-4fd1-a525-cf38e9a8c306","name":"POST Property Field Section","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"group_id\": 1, \n    \"title\": \"Hello World\"    \n}"},"url":{"raw":"https://api.opentoclose.com/v1/propertyFieldSections","protocol":"https","host":["api","opentoclose","com"],"path":["v1","propertyFieldSections"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Thu, 29 Apr 2021 20:46:40 GMT"},{"key":"Expires","value":"Thu, 29 Apr 2021 20:46:40 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1\n}"}],"_postman_id":"ff57abee-46c1-46ad-9727-c72a82b26e60"}],"id":"19a0d1ce-66d0-44d8-82ee-be1156c6155e","description":"<p>Interact with Property Fields</p>\n","_postman_id":"19a0d1ce-66d0-44d8-82ee-be1156c6155e","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Property Field Groups","item":[{"name":"Property Field Groups","id":"87ed03a0-059a-4721-a483-00d0c1cda357","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/propertyFieldGroups","description":"<p>Get all Property Field Groups</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","propertyFieldGroups"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"56de5b65-f75e-4928-bbd9-ca0f68c0255e","name":"GET Property Field Groups","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"group_id\": 1,\n}"},"url":{"raw":"https://api.opentoclose.com/v1/propertyFieldSections","protocol":"https","host":["api","opentoclose","com"],"path":["v1","propertyFieldSections"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Thu, 29 Apr 2021 20:46:40 GMT"},{"key":"Expires","value":"Thu, 29 Apr 2021 20:46:40 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 18843,\n        \"title\": \"Hello World\",\n        \"key\": \"hello_world\",\n        \"sort_order\": 1\n    }\n]"}],"_postman_id":"87ed03a0-059a-4721-a483-00d0c1cda357"},{"name":"Property Field Group","id":"c24c2854-4d41-4292-8d7e-a82313bf098b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.opentoclose.com/v1/propertyFields","description":"<p>Create new Property Field Group</p>\n<p>Required fields in JSON request payload:</p>\n<table>\n<tr><td><b>title</b></td><td>Must not be blank and can only contain alpha numeric characters (all special characters will be stripped)</td></tr>\n</table>","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","propertyFields"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"30945bbb-4f4e-4431-80d1-6b001150ad4a","name":"POST Property Field Group","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Hello World\"\n}"},"url":{"raw":"https://api.opentoclose.com/v1/propertyFieldGroups","protocol":"https","host":["api","opentoclose","com"],"path":["v1","propertyFieldGroups"],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Thu, 29 Apr 2021 20:46:40 GMT"},{"key":"Expires","value":"Thu, 29 Apr 2021 20:46:40 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1\n}"}],"_postman_id":"c24c2854-4d41-4292-8d7e-a82313bf098b"}],"id":"fbdf743a-6c31-44a5-ae00-40242a94567e","description":"<p>Interact with Property Fields</p>\n","_postman_id":"fbdf743a-6c31-44a5-ae00-40242a94567e","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Property Notes","item":[{"name":"Property Notes","id":"9956b171-6ded-4729-80ad-c61457a1e3fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/properties/:property_id/notes","description":"<p>Get all Notes associated with a given Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","notes"],"host":["api","opentoclose","com"],"query":[{"disabled":true,"description":{"content":"<p>Offset from beginning of results. Default: 0</p>\n","type":"text/plain"},"key":"offset","value":null},{"disabled":true,"description":{"content":"<p>Limit results returned. Default: 20, Maximum: 100</p>\n","type":"text/plain"},"key":"limit","value":null}],"variable":[{"id":"186f6f05-74c1-4131-9271-2ea0809de90e","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"}]}},"response":[{"id":"1ac558a0-8be6-41e2-a8da-467b32327e8d","name":"GET Property Notes","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/notes","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","notes"],"variable":[{"id":"186f6f05-74c1-4131-9271-2ea0809de90e","key":"property_id","value":"{{property_id}}","description":"***(required)*** The Property Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 21:15:50 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 21:15:50 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": {\n            \"date\": \"2021-04-30 00:00:21.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"description\": \"This is a note description\",\n        \"private\": null,\n        \"pinned\": null,\n        \"personal\": null,\n        \"global\": null,\n        \"priority\": null,\n        \"priority_date\": null,\n        \"property\": {\n            \"id\": 10\n        }\n    },\n    {\n        \"id\": 2,\n        \"created\": {\n            \"date\": \"2021-06-08 21:15:25.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"description\": \"This is another note\",\n        \"private\": true,\n        \"pinned\": true,\n        \"personal\": null,\n        \"global\": null,\n        \"priority\": \"high\",\n        \"priority_date\": null,\n        \"property\": {\n            \"id\": 10\n        }\n    }\n]"}],"_postman_id":"9956b171-6ded-4729-80ad-c61457a1e3fa"},{"name":"Property Note","id":"d9e20b52-d846-4e69-81f9-733804b9fcb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/properties/:property_id/notes/:note_id","description":"<p>Retrieve a single Note associated with a given Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","notes",":note_id"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"d2a018e4-bd16-4657-b064-e1474dc19a53","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"},{"id":"d02b8d1e-359e-44ce-94bf-fb459a2447c0","description":{"content":"<p><em><strong>(required)</strong></em> The Note Id</p>\n","type":"text/plain"},"type":"any","value":"{{note_id}}","key":"note_id"}]}},"response":[{"id":"beafda5e-3406-44d7-af90-5db86e810d2b","name":"GET Property Note","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/notes/:note_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","notes",":note_id"],"variable":[{"id":"d2a018e4-bd16-4657-b064-e1474dc19a53","key":"property_id","value":"{{property_id}}","description":"***(required)*** The Property Id"},{"id":"d02b8d1e-359e-44ce-94bf-fb459a2447c0","key":"note_id","value":"{{note_id}}","description":"***(required)*** The Note Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 21:17:55 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 21:17:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"created\": {\n        \"date\": \"2021-04-30 00:00:21.000000\",\n        \"timezone_type\": 3,\n        \"timezone\": \"UTC\"\n    },\n    \"description\": \"This is a note description\",\n    \"private\": null,\n    \"pinned\": null,\n    \"personal\": null,\n    \"global\": null,\n    \"priority\": null,\n    \"priority_date\": null,\n    \"property\": {\n        \"id\": 10\n    }\n}"}],"_postman_id":"d9e20b52-d846-4e69-81f9-733804b9fcb2"},{"name":"Property Note","id":"4f63a0fe-3a60-42d0-a4c1-d00f51bbda57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"description\" : \"This is a note description\"\n}"},"url":"https://api.opentoclose.com/v1/properties/:property_id/notes","description":"<p>Create a Note associated with a given Property</p>\n<p>Fields in JSON request payload:</p>\n<table>\n<tr><td><b>description (required)</b></td><td>The text of the Note</td></tr>\n<tr><td><b>private</b> (optional)</td><td>true or false (Default: null)</td></tr>\n<tr><td><b>pinned</b> (optional)</td><td>true or false (Default: null)</td></tr>\n<tr><td><b>personal</b> (optional)</td><td>true or false (Default: null)</td></tr>\n<tr><td><b>global</b> (optional)</td><td>true or false (Default: null)</td></tr>\n<tr><td><b>priority</b> (optional)</td><td>low, medium, or high (Default: null)</td></tr>\n<tr><td><b>priority_date</b> (optional)</td><td>YYYY-MM-DD format</td></tr>\n</table>","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","notes"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"7b848150-7c6f-4402-9c7c-e36c184a7f84","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"}]}},"response":[{"id":"46b80c6f-4e68-4f0d-af5b-d666b8dbb281","name":"POST Property Note","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"description\" : \"This is a third note\",\n    \"private\": true,\n    \"pinned\": true\n}"},"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/notes","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","notes"],"variable":[{"id":"7b848150-7c6f-4402-9c7c-e36c184a7f84","key":"property_id","value":"{{property_id}}","description":"***(required)*** The Property Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 21:21:54 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 21:21:54 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3,\n    \"created\": {\n        \"date\": \"2021-06-08 21:21:54.107260\",\n        \"timezone_type\": 3,\n        \"timezone\": \"GMT\"\n    },\n    \"description\": \"This is a third note\",\n    \"private\": true,\n    \"pinned\": true,\n    \"personal\": null,\n    \"global\": null,\n    \"priority\": null,\n    \"priority_date\": null,\n    \"property\": {\n        \"id\": 10\n    }\n}"}],"_postman_id":"4f63a0fe-3a60-42d0-a4c1-d00f51bbda57"},{"name":"Property Note","id":"4b33238d-97a7-4b36-9727-1890fcffb535","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"description\" : \"This is an edited note description\"\n}"},"url":"https://api.opentoclose.com/v1/properties/:property_id/notes/:note_id","description":"<p>Update a Note associated with a given Property</p>\n<p>Fields in JSON request payload:</p>\n<table>\n<tr><td><b>description (required)</b></td><td>The text of the Note</td></tr>\n<tr><td><b>private</b> (optional)</td><td>true or false (Default: null)</td></tr>\n<tr><td><b>pinned</b> (optional)</td><td>true or false (Default: null)</td></tr>\n<tr><td><b>personal</b> (optional)</td><td>true or false (Default: null)</td></tr>\n<tr><td><b>global</b> (optional)</td><td>true or false (Default: null)</td></tr>\n<tr><td><b>priority</b> (optional)</td><td>low, medium, or high  (Default: null)</td></tr>\n<tr><td><b>priority_date</b> (optional)</td><td>YYYY-MM-DD format</td></tr>\n</table>","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","notes",":note_id"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"61b39b94-5962-4b64-92dd-e5f6e571a035","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"},{"id":"dcf32655-c115-4024-a4ff-d610cc86dc8f","description":{"content":"<p><em><strong>(required)</strong></em> The Note Id</p>\n","type":"text/plain"},"type":"any","value":"{{note_id}}","key":"note_id"}]}},"response":[{"id":"c8e17b65-a7cc-41ad-ad61-ddf83b2b22bb","name":"PUT Property Note","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"description\": \"This is an edited note\",\n    \"private\": true,\n    \"pinned\": false\n}"},"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/notes/:note_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","notes",":note_id"],"variable":[{"id":"61b39b94-5962-4b64-92dd-e5f6e571a035","key":"property_id","value":"{{property_id}}","description":"***(required)*** The Property Id"},{"id":"dcf32655-c115-4024-a4ff-d610cc86dc8f","key":"note_id","value":"{{note_id}}","description":"***(required)*** The Note Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 21:26:44 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 21:26:44 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 3,\n    \"created\": {\n        \"date\": \"2021-06-08 21:21:54.000000\",\n        \"timezone_type\": 3,\n        \"timezone\": \"UTC\"\n    },\n    \"description\": \"This is an edited note\",\n    \"private\": true,\n    \"pinned\": false,\n    \"personal\": null,\n    \"global\": null,\n    \"priority\": \"low\",\n    \"priority_date\": null,\n    \"property\": {\n        \"id\": 10\n    }\n}"}],"_postman_id":"4b33238d-97a7-4b36-9727-1890fcffb535"}],"id":"f978855a-ea32-4e3a-bb6a-eb9a704417ec","description":"<p>Interact with Notes associated with a given Property</p>\n","_postman_id":"f978855a-ea32-4e3a-bb6a-eb9a704417ec","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Property Tasks","item":[{"name":"Property Tasks","id":"ad698b1a-5de2-4f50-b138-e00882d4a0f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/properties/:property_id/tasks","description":"<p>Get all Tasks associated with a given Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","tasks"],"host":["api","opentoclose","com"],"query":[],"variable":[{"id":"186f6f05-74c1-4131-9271-2ea0809de90e","description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"}]}},"response":[{"id":"e73c9b26-b854-45cd-89ce-4efe1da4437f","name":"GET Property Tasks","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/tasks","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","tasks"],"variable":[{"id":"186f6f05-74c1-4131-9271-2ea0809de90e","key":"property_id","value":"{{property_id}}","description":"***(required)*** The Property Id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Wed, 09 Jun 2021 14:33:37 GMT"},{"key":"Expires","value":"Wed, 09 Jun 2021 14:33:37 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": {\n            \"date\": \"2021-06-09 14:19:58.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"title\": \"A Property Task\",\n        \"private\": null,\n        \"pinned\": true,\n        \"critical\": true,\n        \"completed\": null,\n        \"property\": {\n            \"id\": 10\n        }\n    },\n    {\n        \"id\": 2,\n        \"created\": {\n            \"date\": \"2021-06-09 14:20:13.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"title\": \"Another Property Task\",\n        \"private\": null,\n        \"pinned\": null,\n        \"critical\": null,\n        \"completed\": null,\n        \"property\": {\n            \"id\": 10\n        }\n    }\n]"}],"_postman_id":"ad698b1a-5de2-4f50-b138-e00882d4a0f9"},{"name":"Property Task","id":"2a01429c-03a6-4590-85ff-d5a452f9854a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/properties/:property_id/tasks/:task_id","description":"<p>Retrieve a single Task associated with a given Property</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","properties",":property_id","tasks",":task_id"],"host":["api","opentoclose","com"],"query":[],"variable":[{"description":{"content":"<p><em><strong>(required)</strong></em> The Property Id</p>\n","type":"text/plain"},"type":"any","value":"{{property_id}}","key":"property_id"},{"type":"any","value":"{{task_id}}","key":"task_id"}]}},"response":[{"id":"f7740699-0d65-4d62-871d-1ee6aa44ab3e","name":"GET Property Task","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/properties/:property_id/tasks/:task_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","properties",":property_id","tasks",":task_id"],"variable":[{"key":"property_id","value":"{{property_id}}","description":"***(required)*** The Property Id"},{"key":"task_id","value":"{{task_id}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Wed, 09 Jun 2021 14:35:21 GMT"},{"key":"Expires","value":"Wed, 09 Jun 2021 14:35:21 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"created\": {\n        \"date\": \"2021-06-09 14:19:58.000000\",\n        \"timezone_type\": 3,\n        \"timezone\": \"UTC\"\n    },\n    \"title\": \"A Property Task\",\n    \"private\": null,\n    \"pinned\": true,\n    \"critical\": true,\n    \"completed\": null,\n    \"property\": {\n        \"id\": 10\n    }\n}"}],"_postman_id":"2a01429c-03a6-4590-85ff-d5a452f9854a"}],"id":"f10e34d3-00a4-4444-b2b0-882d1d49db75","description":"<p>Interact with Tasks associated with a given Property</p>\n","_postman_id":"f10e34d3-00a4-4444-b2b0-882d1d49db75","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Property Templates","item":[{"name":"Property Templates","id":"bce27103-21fb-428f-ae61-c31a11930b6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/propertyTemplates/","description":"<p>Get all Property Templates</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","propertyTemplates",""],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"475133d1-5d6d-4ebb-abee-54509376ee44","name":"GET Property Templates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/propertyTemplates/","protocol":"https","host":["api","opentoclose","com"],"path":["v1","propertyTemplates",""],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Wed, 09 Jun 2021 14:03:48 GMT"},{"key":"Expires","value":"Wed, 09 Jun 2021 14:03:48 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": {\n            \"date\": \"2021-04-29 16:03:59.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"title\": \"Property Template #1\"\n    },\n    {\n        \"id\": 2,\n        \"created\": {\n            \"date\": \"2021-04-30 16:03:59.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"title\": \"Property Template #2\"\n    }\n]"}],"_postman_id":"bce27103-21fb-428f-ae61-c31a11930b6c"},{"name":"Property Template","id":"21606b83-3df5-4e93-98de-fb5b427c6e75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/propertyTemplates/","description":"<p>Get all Property Templates</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","propertyTemplates",""],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"2cb650bc-7fc0-4db2-bf26-3b28be19df79","name":"GET Property Template","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/propertyTemplates/:template_id","protocol":"https","host":["api","opentoclose","com"],"path":["v1","propertyTemplates",":template_id"],"query":[{"key":"","value":"","disabled":true}],"variable":[{"key":"template_id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Wed, 09 Jun 2021 14:07:11 GMT"},{"key":"Expires","value":"Wed, 09 Jun 2021 14:07:11 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"created\": {\n            \"date\": \"2021-04-29 16:03:59.000000\",\n            \"timezone_type\": 3,\n            \"timezone\": \"UTC\"\n        },\n        \"title\": \"Property Template #1\"\n    }\n]"}],"_postman_id":"21606b83-3df5-4e93-98de-fb5b427c6e75"}],"id":"51c7d975-2843-48b4-af40-8bea7670a0de","description":"<p>Interact with Property Templates</p>\n","_postman_id":"51c7d975-2843-48b4-af40-8bea7670a0de","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Teams","item":[{"name":"Teams","id":"25d85008-24e7-4ac3-999f-7eb61284ee5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/teams/","description":"<p>Get all Teams</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","teams",""],"host":["api","opentoclose","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"1b8607b8-8975-4915-abb4-291ab6ed1aff","name":"GET Teams","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/teams/","protocol":"https","host":["api","opentoclose","com"],"path":["v1","teams",""],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Thu, 29 Apr 2021 16:29:44 GMT"},{"key":"Expires","value":"Thu, 29 Apr 2021 16:29:44 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"title\": \"Team #1\",\n        \"team_members\": [\n            {\n                \"id\": 1,\n                \"title\": \"Member One\"\n            },\n            {\n                \"id\": 2,\n                \"title\": \"Peggy Sue\"\n            }\n        ]\n    },\n    {\n        \"id\": 2,\n        \"title\": \"Team #2\",\n        \"team_members\": [\n            {\n                \"id\": 3,\n                \"title\": \"Member One\"\n            },\n            {\n                \"id\": 4,\n                \"title\": \"Ellie May\"\n            }\n        ]\n    }\n]"}],"_postman_id":"25d85008-24e7-4ac3-999f-7eb61284ee5a"}],"id":"cc550f85-5ef1-4dbf-a67b-65de8a1d9d20","description":"<p>Interact with Teams</p>\n","_postman_id":"cc550f85-5ef1-4dbf-a67b-65de8a1d9d20","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Time Zones","item":[{"name":"Time Zones","id":"203f1076-54ca-4ce8-8482-da0fd2e20909","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/timeZones","description":"<p>Get all Time Zones</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","timeZones"],"host":["api","opentoclose","com"],"query":[],"variable":[]}},"response":[{"id":"7a40263f-92f9-4d83-936f-f3d12f9988f8","name":"GET Time Zones","originalRequest":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/timeZones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Thu, 29 Apr 2021 16:35:03 GMT"},{"key":"Expires","value":"Thu, 29 Apr 2021 16:35:03 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 112,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Pacific/Fiji\",\n        \"zone_abbreviation\": \"+12\"\n    },\n    {\n        \"id\": 111,\n        \"country_code\": \"Pacific/Auckland\",\n        \"country_zone\": \"Pacific/Auckland\",\n        \"zone_abbreviation\": \"NZST\"\n    },\n    {\n        \"id\": 110,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Magadan\",\n        \"zone_abbreviation\": \"+11\"\n    },\n    {\n        \"id\": 109,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Vladivostok\",\n        \"zone_abbreviation\": \"+10\"\n    },\n    {\n        \"id\": 108,\n        \"country_code\": \"Australia/Melbourne\",\n        \"country_zone\": \"Australia/Sydney\",\n        \"zone_abbreviation\": \"AEST\"\n    },\n    {\n        \"id\": 107,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Pacific/Port_Moresby\",\n        \"zone_abbreviation\": \"+10\"\n    },\n    {\n        \"id\": 106,\n        \"country_code\": \"Australia/Melbourne\",\n        \"country_zone\": \"Australia/Melbourne\",\n        \"zone_abbreviation\": \"AEST\"\n    },\n    {\n        \"id\": 105,\n        \"country_code\": \"Australia/Melbourne\",\n        \"country_zone\": \"Australia/Hobart\",\n        \"zone_abbreviation\": \"AEST\"\n    },\n    {\n        \"id\": 104,\n        \"country_code\": \"Pacific/Guam\",\n        \"country_zone\": \"Pacific/Guam\",\n        \"zone_abbreviation\": \"ChST\"\n    },\n    {\n        \"id\": 103,\n        \"country_code\": \"Australia/Melbourne\",\n        \"country_zone\": \"Australia/Canberra\",\n        \"zone_abbreviation\": \"AEST\"\n    },\n    {\n        \"id\": 102,\n        \"country_code\": \"Australia/Melbourne\",\n        \"country_zone\": \"Australia/Brisbane\",\n        \"zone_abbreviation\": \"AEST\"\n    },\n    {\n        \"id\": 101,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Yakutsk\",\n        \"zone_abbreviation\": \"+09\"\n    },\n    {\n        \"id\": 100,\n        \"country_code\": \"Australia/Adelaide\",\n        \"country_zone\": \"Australia/Darwin\",\n        \"zone_abbreviation\": \"ACST\"\n    },\n    {\n        \"id\": 99,\n        \"country_code\": \"Australia/Adelaide\",\n        \"country_zone\": \"Australia/Adelaide\",\n        \"zone_abbreviation\": \"ACST\"\n    },\n    {\n        \"id\": 98,\n        \"country_code\": \"Asia/Tokyo\",\n        \"country_zone\": \"Asia/Tokyo\",\n        \"zone_abbreviation\": \"JST\"\n    },\n    {\n        \"id\": 97,\n        \"country_code\": \"Asia/Seoul\",\n        \"country_zone\": \"Asia/Seoul\",\n        \"zone_abbreviation\": \"KST\"\n    },\n    {\n        \"id\": 96,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Irkutsk\",\n        \"zone_abbreviation\": \"+08\"\n    },\n    {\n        \"id\": 95,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Urumqi\",\n        \"zone_abbreviation\": \"+06\"\n    },\n    {\n        \"id\": 94,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Ulaanbaatar\",\n        \"zone_abbreviation\": \"+08\"\n    },\n    {\n        \"id\": 93,\n        \"country_code\": \"America/Chicago\",\n        \"country_zone\": \"Asia/Taipei\",\n        \"zone_abbreviation\": \"CST\"\n    },\n    {\n        \"id\": 92,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Singapore\",\n        \"zone_abbreviation\": \"+08\"\n    },\n    {\n        \"id\": 91,\n        \"country_code\": \"Australia/Perth\",\n        \"country_zone\": \"Australia/Perth\",\n        \"zone_abbreviation\": \"AWST\"\n    },\n    {\n        \"id\": 90,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Kuala_Lumpur\",\n        \"zone_abbreviation\": \"+08\"\n    },\n    {\n        \"id\": 89,\n        \"country_code\": \"Asia/Hong_Kong\",\n        \"country_zone\": \"Asia/Hong_Kong\",\n        \"zone_abbreviation\": \"HKT\"\n    },\n    {\n        \"id\": 88,\n        \"country_code\": \"America/Chicago\",\n        \"country_zone\": \"Asia/Chongqing\",\n        \"zone_abbreviation\": \"CST\"\n    },\n    {\n        \"id\": 87,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Krasnoyarsk\",\n        \"zone_abbreviation\": \"+07\"\n    },\n    {\n        \"id\": 86,\n        \"country_code\": \"Asia/Jakarta\",\n        \"country_zone\": \"Asia/Jakarta\",\n        \"zone_abbreviation\": \"WIB\"\n    },\n    {\n        \"id\": 85,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Bangkok\",\n        \"zone_abbreviation\": \"+07\"\n    },\n    {\n        \"id\": 84,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Novosibirsk\",\n        \"zone_abbreviation\": \"+07\"\n    },\n    {\n        \"id\": 83,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Dhaka\",\n        \"zone_abbreviation\": \"+06\"\n    },\n    {\n        \"id\": 82,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Almaty\",\n        \"zone_abbreviation\": \"+06\"\n    },\n    {\n        \"id\": 81,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Yekaterinburg\",\n        \"zone_abbreviation\": \"+05\"\n    },\n    {\n        \"id\": 80,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Kathmandu\",\n        \"zone_abbreviation\": \"+0545\"\n    },\n    {\n        \"id\": 79,\n        \"country_code\": \"Asia/Jerusalem\",\n        \"country_zone\": \"Asia/Kolkata\",\n        \"zone_abbreviation\": \"IST\"\n    },\n    {\n        \"id\": 78,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Tashkent\",\n        \"zone_abbreviation\": \"+05\"\n    },\n    {\n        \"id\": 77,\n        \"country_code\": \"Asia/Karachi\",\n        \"country_zone\": \"Asia/Karachi\",\n        \"zone_abbreviation\": \"PKT\"\n    },\n    {\n        \"id\": 76,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Kabul\",\n        \"zone_abbreviation\": \"+0430\"\n    },\n    {\n        \"id\": 75,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Yerevan\",\n        \"zone_abbreviation\": \"+04\"\n    },\n    {\n        \"id\": 74,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Tbilisi\",\n        \"zone_abbreviation\": \"+04\"\n    },\n    {\n        \"id\": 73,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Muscat\",\n        \"zone_abbreviation\": \"+04\"\n    },\n    {\n        \"id\": 72,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Europe/Volgograd\",\n        \"zone_abbreviation\": \"+04\"\n    },\n    {\n        \"id\": 71,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Baku\",\n        \"zone_abbreviation\": \"+04\"\n    },\n    {\n        \"id\": 70,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Tehran\",\n        \"zone_abbreviation\": \"+0430\"\n    },\n    {\n        \"id\": 69,\n        \"country_code\": \"Europe/Moscow\",\n        \"country_zone\": \"Europe/Moscow\",\n        \"zone_abbreviation\": \"MSK\"\n    },\n    {\n        \"id\": 68,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Riyadh\",\n        \"zone_abbreviation\": \"+03\"\n    },\n    {\n        \"id\": 67,\n        \"country_code\": \"Africa/Khartoum\",\n        \"country_zone\": \"Africa/Nairobi\",\n        \"zone_abbreviation\": \"EAT\"\n    },\n    {\n        \"id\": 66,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Kuwait\",\n        \"zone_abbreviation\": \"+03\"\n    },\n    {\n        \"id\": 65,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Asia/Baghdad\",\n        \"zone_abbreviation\": \"+03\"\n    },\n    {\n        \"id\": 64,\n        \"country_code\": \"Europe/Helsinki\",\n        \"country_zone\": \"Europe/Vilnius\",\n        \"zone_abbreviation\": \"EEST\"\n    },\n    {\n        \"id\": 63,\n        \"country_code\": \"Europe/Helsinki\",\n        \"country_zone\": \"Europe/Tallinn\",\n        \"zone_abbreviation\": \"EEST\"\n    },\n    {\n        \"id\": 62,\n        \"country_code\": \"Europe/Helsinki\",\n        \"country_zone\": \"Europe/Sofia\",\n        \"zone_abbreviation\": \"EEST\"\n    },\n    {\n        \"id\": 61,\n        \"country_code\": \"Europe/Helsinki\",\n        \"country_zone\": \"Europe/Riga\",\n        \"zone_abbreviation\": \"EEST\"\n    },\n    {\n        \"id\": 60,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Europe/Minsk\",\n        \"zone_abbreviation\": \"+03\"\n    },\n    {\n        \"id\": 59,\n        \"country_code\": \"Europe/Helsinki\",\n        \"country_zone\": \"Europe/Kiev\",\n        \"zone_abbreviation\": \"EEST\"\n    },\n    {\n        \"id\": 58,\n        \"country_code\": \"Asia/Jerusalem\",\n        \"country_zone\": \"Asia/Jerusalem\",\n        \"zone_abbreviation\": \"IDT\"\n    },\n    {\n        \"id\": 57,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Europe/Istanbul\",\n        \"zone_abbreviation\": \"+03\"\n    },\n    {\n        \"id\": 56,\n        \"country_code\": \"Europe/Helsinki\",\n        \"country_zone\": \"Europe/Helsinki\",\n        \"zone_abbreviation\": \"EEST\"\n    },\n    {\n        \"id\": 55,\n        \"country_code\": \"Africa/Khartoum\",\n        \"country_zone\": \"Africa/Harare\",\n        \"zone_abbreviation\": \"CAT\"\n    },\n    {\n        \"id\": 54,\n        \"country_code\": \"Europe/Helsinki\",\n        \"country_zone\": \"Africa/Cairo\",\n        \"zone_abbreviation\": \"EET\"\n    },\n    {\n        \"id\": 53,\n        \"country_code\": \"Europe/Helsinki\",\n        \"country_zone\": \"Europe/Bucharest\",\n        \"zone_abbreviation\": \"EEST\"\n    },\n    {\n        \"id\": 52,\n        \"country_code\": \"Europe/Helsinki\",\n        \"country_zone\": \"Europe/Athens\",\n        \"zone_abbreviation\": \"EEST\"\n    },\n    {\n        \"id\": 51,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Zagreb\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 50,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Warsaw\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 49,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Vienna\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 48,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Stockholm\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 47,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Skopje\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 46,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Sarajevo\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 45,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Rome\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 44,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Prague\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 43,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Paris\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 42,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Madrid\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 41,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Ljubljana\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 40,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Copenhagen\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 39,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Budapest\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 38,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Brussels\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 37,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Bratislava\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 36,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Berlin\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 35,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Belgrade\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 34,\n        \"country_code\": \"Europe/Berlin\",\n        \"country_zone\": \"Europe/Amsterdam\",\n        \"zone_abbreviation\": \"CEST\"\n    },\n    {\n        \"id\": 33,\n        \"country_code\": \"UTC\",\n        \"country_zone\": \"Africa/Monrovia\",\n        \"zone_abbreviation\": \"GMT\"\n    },\n    {\n        \"id\": 32,\n        \"country_code\": \"Europe/London\",\n        \"country_zone\": \"Europe/London\",\n        \"zone_abbreviation\": \"BST\"\n    },\n    {\n        \"id\": 31,\n        \"country_code\": \"Europe/Paris\",\n        \"country_zone\": \"Europe/Lisbon\",\n        \"zone_abbreviation\": \"WEST\"\n    },\n    {\n        \"id\": 30,\n        \"country_code\": \"Asia/Jerusalem\",\n        \"country_zone\": \"Europe/Dublin\",\n        \"zone_abbreviation\": \"IST\"\n    },\n    {\n        \"id\": 29,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Africa/Casablanca\",\n        \"zone_abbreviation\": \"+01\"\n    },\n    {\n        \"id\": 28,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Atlantic/Cape_Verde\",\n        \"zone_abbreviation\": \"-01\"\n    },\n    {\n        \"id\": 27,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Atlantic/Azores\",\n        \"zone_abbreviation\": \"+00\"\n    },\n    {\n        \"id\": 26,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"Atlantic/Stanley\",\n        \"zone_abbreviation\": \"-03\"\n    },\n    {\n        \"id\": 25,\n        \"country_code\": \"Greenland\",\n        \"country_zone\": \"Greenland\",\n        \"zone_abbreviation\": null\n    },\n    {\n        \"id\": 24,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"America/Buenos_Aires\",\n        \"zone_abbreviation\": \"-03\"\n    },\n    {\n        \"id\": 23,\n        \"country_code\": \"America/St_Johns\",\n        \"country_zone\": \"Canada/Newfoundland\",\n        \"zone_abbreviation\": \"NDT\"\n    },\n    {\n        \"id\": 22,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"America/Santiago\",\n        \"zone_abbreviation\": \"-04\"\n    },\n    {\n        \"id\": 21,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"America/La_Paz\",\n        \"zone_abbreviation\": \"-04\"\n    },\n    {\n        \"id\": 20,\n        \"country_code\": \"America/Halifax\",\n        \"country_zone\": \"Canada/Atlantic\",\n        \"zone_abbreviation\": \"ADT\"\n    },\n    {\n        \"id\": 19,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"America/Caracas\",\n        \"zone_abbreviation\": \"-04\"\n    },\n    {\n        \"id\": 18,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"America/Lima\",\n        \"zone_abbreviation\": \"-05\"\n    },\n    {\n        \"id\": 17,\n        \"country_code\": \"Not Defined\",\n        \"country_zone\": \"America/Bogota\",\n        \"zone_abbreviation\": \"-05\"\n    },\n    {\n        \"id\": 16,\n        \"country_code\": \"America/New_York\",\n        \"country_zone\": \"US/East-Indiana\",\n        \"zone_abbreviation\": \"EDT\"\n    },\n    {\n        \"id\": 15,\n        \"country_code\": \"America/New_York\",\n        \"country_zone\": \"US/Eastern\",\n        \"zone_abbreviation\": \"EDT\"\n    },\n    {\n        \"id\": 14,\n        \"country_code\": \"America/Chicago\",\n        \"country_zone\": \"US/Central\",\n        \"zone_abbreviation\": \"CDT\"\n    },\n    {\n        \"id\": 13,\n        \"country_code\": \"America/Chicago\",\n        \"country_zone\": \"Canada/Saskatchewan\",\n        \"zone_abbreviation\": \"CST\"\n    },\n    {\n        \"id\": 12,\n        \"country_code\": \"America/Chicago\",\n        \"country_zone\": \"America/Monterrey\",\n        \"zone_abbreviation\": \"CDT\"\n    },\n    {\n        \"id\": 11,\n        \"country_code\": \"America/Chicago\",\n        \"country_zone\": \"America/Mexico_City\",\n        \"zone_abbreviation\": \"CDT\"\n    },\n    {\n        \"id\": 10,\n        \"country_code\": \"America/Denver\",\n        \"country_zone\": \"America/Mazatlan\",\n        \"zone_abbreviation\": \"MDT\"\n    },\n    {\n        \"id\": 9,\n        \"country_code\": \"America/Denver\",\n        \"country_zone\": \"America/Chihuahua\",\n        \"zone_abbreviation\": \"MDT\"\n    },\n    {\n        \"id\": 8,\n        \"country_code\": \"America/Denver\",\n        \"country_zone\": \"US/Mountain\",\n        \"zone_abbreviation\": \"MDT\"\n    },\n    {\n        \"id\": 7,\n        \"country_code\": \"America/Denver\",\n        \"country_zone\": \"US/Arizona\",\n        \"zone_abbreviation\": \"MST\"\n    },\n    {\n        \"id\": 6,\n        \"country_code\": \"America/Los_Angeles\",\n        \"country_zone\": \"America/Tijuana\",\n        \"zone_abbreviation\": \"PDT\"\n    },\n    {\n        \"id\": 5,\n        \"country_code\": \"America/Los_Angeles\",\n        \"country_zone\": \"US/Pacific\",\n        \"zone_abbreviation\": \"PDT\"\n    },\n    {\n        \"id\": 4,\n        \"country_code\": \"America/Anchorage\",\n        \"country_zone\": \"US/Alaska\",\n        \"zone_abbreviation\": \"AKDT\"\n    },\n    {\n        \"id\": 3,\n        \"country_code\": \"Pacific/Honolulu\",\n        \"country_zone\": \"US/Hawaii\",\n        \"zone_abbreviation\": \"HST\"\n    },\n    {\n        \"id\": 2,\n        \"country_code\": \"Pacific/Samoa\",\n        \"country_zone\": \"US/Samoa\",\n        \"zone_abbreviation\": \"SST\"\n    },\n    {\n        \"id\": 1,\n        \"country_code\": \"Pacific/Samoa\",\n        \"country_zone\": \"Pacific/Midway\",\n        \"zone_abbreviation\": \"SST\"\n    }\n]"}],"_postman_id":"203f1076-54ca-4ce8-8482-da0fd2e20909"}],"id":"666afaef-b65e-47a0-b8d7-42bd856033b1","description":"<p>Get all Time Zones</p>\n","_postman_id":"666afaef-b65e-47a0-b8d7-42bd856033b1","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Tags","item":[{"name":"Tags","id":"2a5fb870-bc00-4e7d-a4f9-e7666b4b4767","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/tags","description":"<p>Get all Tags</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","tags"],"host":["api","opentoclose","com"],"query":[],"variable":[]}},"response":[{"id":"62f20afa-99fb-4478-9dbf-2dcc88a44c27","name":"GET Tags","originalRequest":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/tags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 15:41:18 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 15:41:18 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"title\": \"Contract\",\n        \"category\": \"document\",\n        \"color\": \"red\"\n    },\n    {\n        \"id\": 2,\n        \"title\": \"Appraisal\",\n        \"category\": \"task\",\n        \"color\": \"null\"\n    }\n]"}],"_postman_id":"2a5fb870-bc00-4e7d-a4f9-e7666b4b4767"}],"id":"df4e49f7-13ee-459d-82f2-1ec220a87787","_postman_id":"df4e49f7-13ee-459d-82f2-1ec220a87787","description":"","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}},{"name":"Users","item":[{"name":"Users","id":"ede3a911-446c-4733-87f3-881c2b032c05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.opentoclose.com/v1/users","description":"<p>Get all Users</p>\n","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","users"],"host":["api","opentoclose","com"],"query":[],"variable":[]}},"response":[{"id":"e4ca832b-2e0a-4584-9598-f95883d9ed56","name":"GET Agents","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.opentoclose.com/v1/users/","protocol":"https","host":["api","opentoclose","com"],"path":["v1","users",""],"query":[{"key":"","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Date","value":"Tue, 08 Jun 2021 15:56:12 GMT"},{"key":"Expires","value":"Tue, 08 Jun 2021 15:56:12 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"first_name\": \"Mary\",\n        \"last_name\": \"Realtor\",\n        \"email\": \"mary@test.com\",\n        \"name\": \"Mary Realtor\"\n    },\n    {\n        \"id\": 2,\n        \"first_name\": \"Joe\",\n        \"last_name\": \"Agent\",\n        \"email\": \"joe_agent@test.com\",\n        \"name\": \"Joe Agent\"\n    }\n]"}],"_postman_id":"ede3a911-446c-4733-87f3-881c2b032c05"}],"id":"692c5ab7-9d1a-4347-b789-cad627b6549d","description":"<p>Interact with Agents</p>\n","_postman_id":"692c5ab7-9d1a-4347-b789-cad627b6549d","auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"},"isInherited":true,"source":{"_postman_id":"858b719f-1276-42e7-83b7-c7b267345623","id":"858b719f-1276-42e7-83b7-c7b267345623","name":"Open To Close API","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"value":"{{api_token_value}}","key":"{{api_token_key}}"}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"3fd867f9-aab1-4b80-b7f4-d7438e16fb55"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"9fbecfad-2cc7-4b8b-b6bf-e5f72e8d508f"}}]}