{"info":{"_postman_id":"10b4ce93-40b9-4559-8787-1b3404d7763f","name":"Skyline Lien API Documentation","description":"<html><head></head><body><p>Welcome to the Skyline Lien Search public API documentation. Our goal is to provide you with easy-to-use tools for placing and managing property searches.</p>\n<h1 id=\"overview\">Overview</h1>\n<p>This is a RESTful API that accepts JSON objects.</p>\n<p>There are two levels of integration that you can accomplish with our API:</p>\n<h2 id=\"for-placing-and-managing-orders\">For Placing and Managing Orders</h2>\n<p>This feature is available by default for all users registered on our platform. You may navigate to the user settings page and get the <code>user_key</code>. This will allow you to create, list and manage your orders form the API.</p>\n<p><strong>Retrieving the User Key</strong></p>\n<ol>\n<li>Create an Account in the <a href=\"https://dev.skylinelien.com\">Development</a> or <a href=\"https://skylinelien.com\">Production</a> environment</li>\n<li>Go to <code>My Account</code></li>\n<li>Go to <code>Edit</code></li>\n<li>Find the <code>user_key</code> at the bottonm.</li>\n</ol>\n<h2 id=\"for-creating-companies-and-users\">For Creating Companies and Users</h2>\n<p>To prevent fraudulent accounts, we require verification for third-party developers that need to create companies or users on our platform. Please contact us and we will be happy to assist you. Once the verification process is completed you will receive a <code>partner_key</code>.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Token based authentication is used to provide stateless access to resources. <strong>A token must be provided on each request</strong>. There are two ways in which you can send the token:</p>\n<h2 id=\"on-the-http-header\">On the HTTP Header</h2>\n<p>If you prefer to add the token on the HTTP Header, you may use the OAuth2.0 specification for Bearer tokens:</p>\n<p><code>Authorization: Bearer YOUR_KEY</code></p>\n<p>Please, note that the string <code>Bearer </code> must precede the token string. Do not insert quotes or other symbols.</p>\n<h2 id=\"on-the-query-string\">On the Query String</h2>\n<p>You may add the token as as part of the query string (GET parameter). </p>\n<p><code>/api/orders?key=YOUR_KEY</code></p>\n<p>There are 2 types of tokens available:</p>\n<ul>\n<li><code>user_key</code> Used to place, list and manage orders of a user  (shown on the user settings page).</li>\n<li><code>partner_key</code> Used to create companies and users (provided after verification).</li>\n</ul>\n<h1 id=\"real-time-push-updates\">Real-Time Push Updates</h1>\n<p>Skyline can push data back to your system for real-time updates. When certain events are triggered (such as a change in order status), we can send a POST request with the order details back to a callback URL provided by you. Read more in Callbacks section.</p>\n<h1 id=\"headers\">Headers</h1>\n<p>Although it is optional, it is recommended to add the HTTP headers <code>Accept: application/json</code> when pulling data and <code>Content-Type: application/json</code> when pushing data.</p>\n<h1 id=\"error-codes\">Error Codes</h1>\n<p>Standard HTTP error codes are used. For example, 200 for OK, 401 for Unauthorized and 404 for Not Found. </p>\n<h1 id=\"enviroments\">Enviroments</h1>\n<p>You may use a sandbox environment while testing your API client implementation. Once you are ready to move to production, all you need to do is switch the domain name and API key.</p>\n<ul>\n<li>Production Domain: <code>https://skylinelien.com</code></li>\n<li>Sandbox Domain: <code>https://dev.skylinelien.com</code></li>\n</ul>\n<h1 id=\"rate-limit\">Rate limit</h1>\n<p>There is a maximum of 60 requests per second to ensure maximum performance.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"Real-Time Push Updates","slug":"real-time-push-updates"},{"content":"Headers","slug":"headers"},{"content":"Error Codes","slug":"error-codes"},{"content":"Enviroments","slug":"enviroments"},{"content":"Rate limit","slug":"rate-limit"}],"owner":"3072238","collectionId":"10b4ce93-40b9-4559-8787-1b3404d7763f","publishedId":"RW1hgv4x","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2018-05-17T15:05:10.000Z"},"item":[{"name":"Companies","item":[{"name":"Create Company","id":"2569721f-f986-447e-90e7-e9929fe82451","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{partner_key}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Example Title\",\n    \"email\": \"contact@exampletitle.com\",\n    \"phone\": \"888-777-6655\",\n    \"address\": {\n        \"line_1\": \"62 Yukon Street\",\n        \"line_2\": \"Unit 3\",\n        \"city\": \"Neenah\",\n        \"state\": \"WI\",\n        \"zip_code\": \"54956\"\n    }\n}"},"url":"{{domain}}/api/companies","description":"<blockquote>\n<p>To create an account with Skyline Lien all companies and users must read and accept our Terms and Conditions and Privacy Policy. Make sure to display the appropriate links: <a href=\"https://skylinelien.com/terms\">https://skylinelien.com/terms</a> and <a href=\"https://skylinelien.com/privacy-policy\">https://skylinelien.com/privacy-policy</a></p>\n</blockquote>\n","urlObject":{"path":["api","companies"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"60e38839-d38b-43f9-b53b-9efdbe8fd302","name":"Create Company","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{partner_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Example Title\",\n    \"email\": \"contact@exampletitle.com\",\n    \"phone\": \"888-777-6655\",\n    \"address\": {\n        \"line_1\": \"62 Yukon Street\",\n        \"line_2\": \"Unit 3\",\n        \"city\": \"Neenah\",\n        \"state\": \"WI\",\n        \"zip_code\": \"54956\"\n    }\n}"},"url":"{{domain}}/companies"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 17 May 2018 14:47:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Powered-By","value":"PHP/7.1.6","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"X-RateLimit-Limit","value":"30","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"29","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6IkVlZ3ptVHAwMnJvODZVNWpnTE16aGc9PSIsInZhbHVlIjoiOFpBSDl2MUlPbUlTQlhcL3R0a2hleHlwTVNZcDROT3k1aFY1b3lmM2pJZURWNWkwZ2xoZnBueHR5ZVZcLzdvTTZEK0ZsUzJvNjV6S3lXOEE1TEFZQm9TQT09IiwibWFjIjoiYWYzY2NlODc1ZWVjOWRkMmI0MGY1M2I4ZTIzMDhmZDQ5M2M5YWEzOTQ4ODIzYWM0NWY0M2U0Njg4M2NmNGIxNyJ9","key":"XSRF-TOKEN"},{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6Ijh3aGQrc0hZSGgxenpmWWVHdXJob0E9PSIsInZhbHVlIjoibUpjT09LV291eHNrYVozK1VYNnpab2lZbjRrdFVOYzBXSnBTZ0NWVG9SV252NmJWSzhsZnB2WnpVb1FJcjVzVjZzTmYzWnl6VzhWY3FVTTMyVjJuYXc9PSIsIm1hYyI6IjkzMzRjNzM2NDk2ZGU1NDkxZDhlMTU2MmRiM2NjZGQ2ZjViNGM2ODAzOWU3YzE5YmU3ZGI1ZGUzMmJkOWRhZDUifQ%3D%3D","key":"laravel_session"}],"responseTime":null,"body":"{\"data\":{\"company_id\":932,\"name\":\"Example Title\",\"slug\":\"example-title\",\"email\":\"contact@exampletitle.com\",\"phone\":\"888-777-6655\",\"address\":{\"line_1\":\"62 Yukon Street\",\"line_2\":\"Unit 3\",\"city\":\"Neenah\",\"state\":\"WI\",\"zip_code\":\"54956\",\"county\":null,\"inline\":\"62 Yukon Street Unit 3 Neenah, WI 54956\"},\"orders_count\":0,\"open_balance\":0,\"users\":[]}}"}],"_postman_id":"2569721f-f986-447e-90e7-e9929fe82451"},{"name":"List Companies","id":"3dee9798-41a4-474e-a121-1c78b439c4a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{partner_key}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{domain}}/api/companies","description":"<p>Returs a list of all companies created by an API partner.</p>\n","urlObject":{"path":["api","companies"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"7c79415a-e744-4d9e-b8ed-10fff2dd28fb","name":"List Companies","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{partner_key}}","type":"text"}],"url":"{{domain}}/companies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 17 May 2018 14:50:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Powered-By","value":"PHP/7.1.6","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"X-RateLimit-Limit","value":"30","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"29","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6IkVlZ3ptVHAwMnJvODZVNWpnTE16aGc9PSIsInZhbHVlIjoiOFpBSDl2MUlPbUlTQlhcL3R0a2hleHlwTVNZcDROT3k1aFY1b3lmM2pJZURWNWkwZ2xoZnBueHR5ZVZcLzdvTTZEK0ZsUzJvNjV6S3lXOEE1TEFZQm9TQT09IiwibWFjIjoiYWYzY2NlODc1ZWVjOWRkMmI0MGY1M2I4ZTIzMDhmZDQ5M2M5YWEzOTQ4ODIzYWM0NWY0M2U0Njg4M2NmNGIxNyJ9","key":"XSRF-TOKEN"},{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6Ijh3aGQrc0hZSGgxenpmWWVHdXJob0E9PSIsInZhbHVlIjoibUpjT09LV291eHNrYVozK1VYNnpab2lZbjRrdFVOYzBXSnBTZ0NWVG9SV252NmJWSzhsZnB2WnpVb1FJcjVzVjZzTmYzWnl6VzhWY3FVTTMyVjJuYXc9PSIsIm1hYyI6IjkzMzRjNzM2NDk2ZGU1NDkxZDhlMTU2MmRiM2NjZGQ2ZjViNGM2ODAzOWU3YzE5YmU3ZGI1ZGUzMmJkOWRhZDUifQ%3D%3D","key":"laravel_session"}],"responseTime":null,"body":"{\"data\":[{\"company_id\":932,\"name\":\"Example Title\",\"slug\":\"example-title\",\"email\":\"contact@exampletitle.com\",\"phone\":\"888-777-6655\",\"address\":{\"line_1\":\"62 Yukon Street\",\"line_2\":\"Unit 3\",\"city\":\"Neenah\",\"state\":\"WI\",\"zip_code\":\"54956\",\"county\":null,\"inline\":\"62 Yukon Street Unit 3 Neenah, WI 54956\"}}]}"}],"_postman_id":"3dee9798-41a4-474e-a121-1c78b439c4a2"},{"name":"Company Details","id":"7f14ced7-f155-4bd1-b73c-f9d31a160b55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{partner_key}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{domain}}/api/companies/{{company_id}}","description":"<p>Returns the details of a company.</p>\n<blockquote>\n<p>Note that you may also call this endpoint with the <code>user_key</code> of a user with role <code>Company Manager</code>. The user that first created the company is a <code>Company Manager</code> by default, but there can be multiple managers. Contact Skyline Lien to request configuring another user as a <code>Company Manager</code>.</p>\n</blockquote>\n","urlObject":{"path":["api","companies","{{company_id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"f80d84f6-cd1a-418a-9d35-0f69d9ba0a46","name":"Company Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{partner_key}}","type":"text"}],"url":"{{domain}}/companies/{{company_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 17 May 2018 15:02:36 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Powered-By","value":"PHP/7.1.6","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"X-RateLimit-Limit","value":"30","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"29","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6IkVlZ3ptVHAwMnJvODZVNWpnTE16aGc9PSIsInZhbHVlIjoiOFpBSDl2MUlPbUlTQlhcL3R0a2hleHlwTVNZcDROT3k1aFY1b3lmM2pJZURWNWkwZ2xoZnBueHR5ZVZcLzdvTTZEK0ZsUzJvNjV6S3lXOEE1TEFZQm9TQT09IiwibWFjIjoiYWYzY2NlODc1ZWVjOWRkMmI0MGY1M2I4ZTIzMDhmZDQ5M2M5YWEzOTQ4ODIzYWM0NWY0M2U0Njg4M2NmNGIxNyJ9","key":"XSRF-TOKEN"},{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6Ijh3aGQrc0hZSGgxenpmWWVHdXJob0E9PSIsInZhbHVlIjoibUpjT09LV291eHNrYVozK1VYNnpab2lZbjRrdFVOYzBXSnBTZ0NWVG9SV252NmJWSzhsZnB2WnpVb1FJcjVzVjZzTmYzWnl6VzhWY3FVTTMyVjJuYXc9PSIsIm1hYyI6IjkzMzRjNzM2NDk2ZGU1NDkxZDhlMTU2MmRiM2NjZGQ2ZjViNGM2ODAzOWU3YzE5YmU3ZGI1ZGUzMmJkOWRhZDUifQ%3D%3D","key":"laravel_session"}],"responseTime":null,"body":"{\"data\":{\"company_id\":932,\"name\":\"Example Title\",\"slug\":\"example-title\",\"email\":\"contact@exampletitle.com\",\"phone\":\"888-777-6655\",\"address\":{\"line_1\":\"62 Yukon Street\",\"line_2\":\"Unit 3\",\"city\":\"Neenah\",\"state\":\"WI\",\"zip_code\":\"54956\",\"county\":null,\"inline\":\"62 Yukon Street Unit 3 Neenah, WI 54956\"},\"orders_count\":3,\"open_balance\":160,\"users\":[{\"user_id\":1449,\"first_name\":\"Alicia\",\"last_name\":\"Gonzalez\",\"email\":\"agonzalez@exampletitle.com\",\"phone\":\"555-666-7788\",\"role_name\":\"Client\",\"created_at\":\"2018-05-17 10:49:51\",\"user_keys\":[{\"user_key\":\"0801d39dd88d0eac7aa7aedc0a5707c58c0638d4\",\"created_at\":\"2018-05-17 10:49:51\",\"last_used_at\":\"2018-05-17 11:01:57\"}]}]}}"}],"_postman_id":"7f14ced7-f155-4bd1-b73c-f9d31a160b55"}],"id":"21afaa3b-19f9-426c-a5e2-f112d7606173","description":"<p>A company may contain multiple users which in turn may place orders. Skyline Lien will bill companies for all the orders placed by its users. Contact information such as address, email and phone are required for billing purposes.</p>\n","event":[{"listen":"prerequest","script":{"id":"2c13a877-57bc-41ea-9d64-6e0731d5c61b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d00cd21a-407c-4e87-ab3b-fd55fc6c4b11","type":"text/javascript","exec":[""]}}],"_postman_id":"21afaa3b-19f9-426c-a5e2-f112d7606173"},{"name":"Users","item":[{"name":"Create User","id":"c4369e85-82b3-4090-8ce1-9f5cbda4e570","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{partner_key}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Alicia\",\n    \"last_name\": \"Gonzalez\",\n    \"email\": \"agonzalez@exampletitle.com\",\n    \"password\": \"MyStrongPassword123\",\n    \"phone\": \"555-666-7788\"\n}"},"url":"{{domain}}/api/companies/{{company_id}}/users","description":"<p>To create a new user in a company you will need the <code>partner_key</code> and the <code>company_id</code>. You can obtain the company id after creating a new company from the API. Also, if the company already exists, you can get its id from the company settings page on the Skyline Lien website.</p>\n<blockquote>\n<p>Note that you may also call this endpoint with the <code>user_key</code> of a user with role <code>Company Manager</code>. The user that first created the company is a <code>Company Manager</code> by default, but there can be multiple managers. Contact Skyline Lien to request configuring another user as a <code>Company Manager</code>.</p>\n</blockquote>\n","urlObject":{"path":["api","companies","{{company_id}}","users"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"b78b6c89-fea1-470a-9df2-e154cb7d71e1","name":"Create User","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer {{partner_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Alicia\",\n    \"last_name\": \"Gonzalez\",\n    \"email\": \"agonzalez@exampletitle.com\",\n    \"password\": \"MyStrongPassword123\",\n    \"phone\": \"555-666-7788\"\n}"},"url":"{{domain}}/companies/{{company_id}}/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 17 May 2018 14:49:50 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Powered-By","value":"PHP/7.1.6","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"X-RateLimit-Limit","value":"30","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"29","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6IkVlZ3ptVHAwMnJvODZVNWpnTE16aGc9PSIsInZhbHVlIjoiOFpBSDl2MUlPbUlTQlhcL3R0a2hleHlwTVNZcDROT3k1aFY1b3lmM2pJZURWNWkwZ2xoZnBueHR5ZVZcLzdvTTZEK0ZsUzJvNjV6S3lXOEE1TEFZQm9TQT09IiwibWFjIjoiYWYzY2NlODc1ZWVjOWRkMmI0MGY1M2I4ZTIzMDhmZDQ5M2M5YWEzOTQ4ODIzYWM0NWY0M2U0Njg4M2NmNGIxNyJ9","key":"XSRF-TOKEN"},{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6Ijh3aGQrc0hZSGgxenpmWWVHdXJob0E9PSIsInZhbHVlIjoibUpjT09LV291eHNrYVozK1VYNnpab2lZbjRrdFVOYzBXSnBTZ0NWVG9SV252NmJWSzhsZnB2WnpVb1FJcjVzVjZzTmYzWnl6VzhWY3FVTTMyVjJuYXc9PSIsIm1hYyI6IjkzMzRjNzM2NDk2ZGU1NDkxZDhlMTU2MmRiM2NjZGQ2ZjViNGM2ODAzOWU3YzE5YmU3ZGI1ZGUzMmJkOWRhZDUifQ%3D%3D","key":"laravel_session"}],"responseTime":null,"body":"{\"data\":{\"user_id\":1449,\"first_name\":\"Alicia\",\"last_name\":\"Gonzalez\",\"email\":\"agonzalez@exampletitle.com\",\"phone\":\"555-666-7788\",\"role_name\":\"Client\",\"created_at\":\"2018-05-17 10:49:51\",\"user_keys\":[{\"user_key\":\"0801d39dd88d0eac7aa7aedc0a5707c58c0638d4\",\"created_at\":\"2018-05-17 10:49:51\",\"last_used_at\":\"2018-05-17 10:49:51\"}]}}"}],"_postman_id":"c4369e85-82b3-4090-8ce1-9f5cbda4e570"},{"name":"List Users of a Company","id":"28e21e8d-c911-4464-aece-6b53bd60f3b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{partner_key}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{domain}}/api/companies/{{company_id}}/users","description":"<p>Returns a list of all users that belong to a company.</p>\n<blockquote>\n<p>Note that you may also call this endpoint with the <code>user_key</code> of a user with role <code>Company Manager</code>. The user that first created the company is a <code>Company Manager</code> by default, but there can be multiple managers. Contact Skyline Lien to request configuring another user as a <code>Company Manager</code>.</p>\n</blockquote>\n","urlObject":{"path":["api","companies","{{company_id}}","users"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"69325d98-8b1c-4d99-8f3d-c2eb8ea5f3b5","name":"List Users of a Company","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{partner_key}}","type":"text"}],"url":"{{domain}}/companies/{{company_id}}/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 17 May 2018 14:51:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Powered-By","value":"PHP/7.1.6","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"X-RateLimit-Limit","value":"30","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"29","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6IkVlZ3ptVHAwMnJvODZVNWpnTE16aGc9PSIsInZhbHVlIjoiOFpBSDl2MUlPbUlTQlhcL3R0a2hleHlwTVNZcDROT3k1aFY1b3lmM2pJZURWNWkwZ2xoZnBueHR5ZVZcLzdvTTZEK0ZsUzJvNjV6S3lXOEE1TEFZQm9TQT09IiwibWFjIjoiYWYzY2NlODc1ZWVjOWRkMmI0MGY1M2I4ZTIzMDhmZDQ5M2M5YWEzOTQ4ODIzYWM0NWY0M2U0Njg4M2NmNGIxNyJ9","key":"XSRF-TOKEN"},{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6Ijh3aGQrc0hZSGgxenpmWWVHdXJob0E9PSIsInZhbHVlIjoibUpjT09LV291eHNrYVozK1VYNnpab2lZbjRrdFVOYzBXSnBTZ0NWVG9SV252NmJWSzhsZnB2WnpVb1FJcjVzVjZzTmYzWnl6VzhWY3FVTTMyVjJuYXc9PSIsIm1hYyI6IjkzMzRjNzM2NDk2ZGU1NDkxZDhlMTU2MmRiM2NjZGQ2ZjViNGM2ODAzOWU3YzE5YmU3ZGI1ZGUzMmJkOWRhZDUifQ%3D%3D","key":"laravel_session"}],"responseTime":null,"body":"{\"data\":[{\"user_id\":1449,\"first_name\":\"Alicia\",\"last_name\":\"Gonzalez\",\"email\":\"agonzalez@exampletitle.com\",\"phone\":\"555-666-7788\",\"role_name\":\"Client\",\"created_at\":\"2018-05-17 10:49:51\",\"user_keys\":[{\"user_key\":\"0801d39dd88d0eac7aa7aedc0a5707c58c0638d4\",\"created_at\":\"2018-05-17 10:49:51\",\"last_used_at\":\"2018-05-17 10:49:51\"}]}],\"links\":{\"first\":\"http:\\/\\/skyline6\\/api\\/companies\\/932\\/users?page=1\",\"last\":\"http:\\/\\/skyline6\\/api\\/companies\\/932\\/users?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":1,\"last_page\":1,\"path\":\"http:\\/\\/skyline6\\/api\\/companies\\/932\\/users\",\"per_page\":100,\"to\":1,\"total\":1}}"}],"_postman_id":"28e21e8d-c911-4464-aece-6b53bd60f3b0"},{"name":"Get User","id":"93480a0f-da51-44b9-96a0-a66138b8e306","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user_key}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{domain}}/api/users/{{user_id}}","description":"<p>Finds a user by the <code>user_id</code>, and returns the user information including the <code>user_key</code> which can be used to make request on behalf of the user.</p>\n<blockquote>\n<p>Note that you may also call this endpoint with the <code>user_key</code> of a user with role <code>Company Manager</code>. The user that first created the company is a <code>Company Manager</code> by default, but there can be multiple managers. Contact Skyline Lien to request configuring another user as a <code>Company Manager</code>.</p>\n</blockquote>\n","urlObject":{"path":["api","users","{{user_id}}"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"d8e33a4a-01ff-4ed9-939c-f8e81d3cec3e","name":"User Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{user_key}}","type":"text"}],"url":"{{domain}}/users/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 17 May 2018 14:52:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Powered-By","value":"PHP/7.1.6","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"X-RateLimit-Limit","value":"30","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"29","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6IkVlZ3ptVHAwMnJvODZVNWpnTE16aGc9PSIsInZhbHVlIjoiOFpBSDl2MUlPbUlTQlhcL3R0a2hleHlwTVNZcDROT3k1aFY1b3lmM2pJZURWNWkwZ2xoZnBueHR5ZVZcLzdvTTZEK0ZsUzJvNjV6S3lXOEE1TEFZQm9TQT09IiwibWFjIjoiYWYzY2NlODc1ZWVjOWRkMmI0MGY1M2I4ZTIzMDhmZDQ5M2M5YWEzOTQ4ODIzYWM0NWY0M2U0Njg4M2NmNGIxNyJ9","key":"XSRF-TOKEN"},{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6Ijh3aGQrc0hZSGgxenpmWWVHdXJob0E9PSIsInZhbHVlIjoibUpjT09LV291eHNrYVozK1VYNnpab2lZbjRrdFVOYzBXSnBTZ0NWVG9SV252NmJWSzhsZnB2WnpVb1FJcjVzVjZzTmYzWnl6VzhWY3FVTTMyVjJuYXc9PSIsIm1hYyI6IjkzMzRjNzM2NDk2ZGU1NDkxZDhlMTU2MmRiM2NjZGQ2ZjViNGM2ODAzOWU3YzE5YmU3ZGI1ZGUzMmJkOWRhZDUifQ%3D%3D","key":"laravel_session"}],"responseTime":null,"body":"{\"data\":{\"user_id\":1449,\"first_name\":\"Alicia\",\"last_name\":\"Gonzalez\",\"email\":\"agonzalez@exampletitle.com\",\"phone\":\"555-666-7788\",\"role_name\":\"Client\",\"created_at\":\"2018-05-17 10:49:51\",\"user_keys\":[{\"user_key\":\"0801d39dd88d0eac7aa7aedc0a5707c58c0638d4\",\"created_at\":\"2018-05-17 10:49:51\",\"last_used_at\":\"2018-05-17 10:49:51\"}]}}"}],"_postman_id":"93480a0f-da51-44b9-96a0-a66138b8e306"},{"name":"Authenticate User","id":"22aa1b33-5232-422c-8eaa-ae0bc015999d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{partner_key}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"test@example.com\",\n\t\"password\": \"mySecurePassword\"\n}"},"url":"{{domain}}/api/users/authenticate","description":"<p>Finds a user by the <code>email</code> and <code>password</code>, and returns the user information including the <code>user_key</code> which can be used to make request on behalf of the user.</p>\n<p>If you don't have an option to add a body to the HTTP GET request, you may pass the email and password as part of the query string (<strong>make sure to URL encode these parameters</strong>):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>?email=test%40example.com&amp;password=mySecurePassword\n</code></pre><blockquote>\n<p>This endpoint works out-of-the-box for companies created via the API because the access is granted to the partner creating it. For companies created manually on the website please contact Skyline Lien to get access to it.</p>\n</blockquote>\n","urlObject":{"path":["api","users","authenticate"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"e6015a4c-63ab-4abc-a2dd-bf42867ed3e1","name":"Authenticate User","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{partner_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"agonzalez@exampletitle.com\",\n\t\"password\": \"MyStrongPassword123\"\n}"},"url":"{{domain}}/users/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 17 May 2018 14:52:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Powered-By","value":"PHP/7.1.6","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"X-RateLimit-Limit","value":"30","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"29","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6IkVlZ3ptVHAwMnJvODZVNWpnTE16aGc9PSIsInZhbHVlIjoiOFpBSDl2MUlPbUlTQlhcL3R0a2hleHlwTVNZcDROT3k1aFY1b3lmM2pJZURWNWkwZ2xoZnBueHR5ZVZcLzdvTTZEK0ZsUzJvNjV6S3lXOEE1TEFZQm9TQT09IiwibWFjIjoiYWYzY2NlODc1ZWVjOWRkMmI0MGY1M2I4ZTIzMDhmZDQ5M2M5YWEzOTQ4ODIzYWM0NWY0M2U0Njg4M2NmNGIxNyJ9","key":"XSRF-TOKEN"},{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6Ijh3aGQrc0hZSGgxenpmWWVHdXJob0E9PSIsInZhbHVlIjoibUpjT09LV291eHNrYVozK1VYNnpab2lZbjRrdFVOYzBXSnBTZ0NWVG9SV252NmJWSzhsZnB2WnpVb1FJcjVzVjZzTmYzWnl6VzhWY3FVTTMyVjJuYXc9PSIsIm1hYyI6IjkzMzRjNzM2NDk2ZGU1NDkxZDhlMTU2MmRiM2NjZGQ2ZjViNGM2ODAzOWU3YzE5YmU3ZGI1ZGUzMmJkOWRhZDUifQ%3D%3D","key":"laravel_session"}],"responseTime":null,"body":"{\"data\":{\"user_id\":1449,\"first_name\":\"Alicia\",\"last_name\":\"Gonzalez\",\"email\":\"agonzalez@exampletitle.com\",\"phone\":\"555-666-7788\",\"role_name\":\"Client\",\"created_at\":\"2018-05-17 10:49:51\",\"user_keys\":[{\"user_key\":\"0801d39dd88d0eac7aa7aedc0a5707c58c0638d4\",\"created_at\":\"2018-05-17 10:49:51\",\"last_used_at\":\"2018-05-17 10:49:51\"}]}}"}],"_postman_id":"22aa1b33-5232-422c-8eaa-ae0bc015999d"}],"id":"3ca813e1-3e6e-4574-a173-0cb814b7e8e2","description":"<p>A user may place orders such as lien searches, estoppels and tax certificates. Once the order is completed the user will receive an email with a link to the final report in PDF.</p>\n","_postman_id":"3ca813e1-3e6e-4574-a173-0cb814b7e8e2"},{"name":"Orders","item":[{"name":"Order Metadata","id":"f656c39b-7d08-42ab-84bb-f97b3fb26bd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user_key}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{domain}}/api/orders/meta","description":"<p>Returns an object with information about fields used in orders including the order types, the available services and the statuses. </p>\n<blockquote>\n<p>This endpoint is useful for populating the user interface.</p>\n</blockquote>\n","urlObject":{"path":["api","orders","meta"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"6e00dc69-fdbd-4aad-a576-e1f262221efd","name":"Order Metadata","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{user_key}}","type":"text"}],"url":"{{domain}}/api/orders/meta"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 17 Jan 2019 00:51:12 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Powered-By","value":"PHP/7.1.6"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"30"},{"key":"X-RateLimit-Remaining","value":"29"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"order_types\": [\n        {\n            \"order_type\": 1,\n            \"name\": \"Lien Search\",\n            \"available_services\": [\n                {\n                    \"service_key\": \"lien-taxes\",\n                    \"name\": \"Taxes\"\n                },\n                {\n                    \"service_key\": \"lien-waste\",\n                    \"name\": \"Waste\"\n                },\n                {\n                    \"service_key\": \"lien-utilities\",\n                    \"name\": \"Utilities\"\n                },\n                {\n                    \"service_key\": \"lien-work\",\n                    \"name\": \"Public Work\"\n                },\n                {\n                    \"service_key\": \"lien-code\",\n                    \"name\": \"Code Enforcement\"\n                },\n                {\n                    \"service_key\": \"lien-letter\",\n                    \"name\": \"Municipal Lien Letter\"\n                },\n                {\n                    \"service_key\": \"lien-permit\",\n                    \"name\": \"Open/Expired Permit\"\n                },\n                {\n                    \"service_key\": \"lien-zoning\",\n                    \"name\": \"Zoning Letter\"\n                }\n            ]\n        },\n        {\n            \"order_type\": 2,\n            \"name\": \"Association Estoppel\",\n            \"available_services\": []\n        },\n        {\n            \"order_type\": 3,\n            \"name\": \"Tax Certificate\",\n            \"available_services\": [\n                {\n                    \"service_key\": \"tax-certificate-waste\",\n                    \"name\": \"Waste\"\n                },\n                {\n                    \"service_key\": \"tax-certificate-utilities\",\n                    \"name\": \"Utilities\"\n                }\n            ]\n        }\n    ],\n    \"order_statuses\": [\n        {\n            \"status\": 1,\n            \"name\": \"New\"\n        },\n        {\n            \"status\": 2,\n            \"name\": \"Processing\"\n        },\n        {\n            \"status\": 3,\n            \"name\": \"Ready\"\n        },\n        {\n            \"status\": 4,\n            \"name\": \"On Hold\"\n        },\n        {\n            \"status\": 5,\n            \"name\": \"Cancelled\"\n        }\n    ],\n    \"property_types\": [\n        {\n            \"type\": \"residential\",\n            \"name\": \"Residential\"\n        },\n        {\n            \"type\": \"commercial\",\n            \"name\": \"Commercial\"\n        }\n    ],\n    \"attachment_types\": [\n        {\n            \"type\": 4,\n            \"name\": \"Final Report\"\n        }\n    ]\n}"}],"_postman_id":"f656c39b-7d08-42ab-84bb-f97b3fb26bd3"},{"name":"Create Order","id":"23cac760-09e9-4191-a046-d4deb9a091e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user_key}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"file_number\": \"FILE-1234\",\n    \"address\": {\n        \"line_1\": \"1593 Elkview Drive\",\n        \"line_2\": \"Unit 100\",\n        \"city\": \"Vero Beach\",\n        \"state\": \"FL\",\n        \"zip_code\": \"32960\",\n        \"county\": \"Indian River County\"\n    },\n    \"property_type\": \"residential\",\n    \"folios\": [\n        \"12345-67-8910\",\n        \"98764-43-2109\"\n    ],\n    \"orders\": [\n        {\n            \"order_type\": 1,\n            \"requested_service_keys\": [\n                \"lien-taxes\",\n                \"lien-waste\",\n                \"lien-utilities\",\n                \"lien-work\",\n                \"lien-code\",\n                \"lien-letter\",\n                \"lien-permit\",\n                \"lien-zoning\"\n            ]\n        },\n        {\n            \"order_type\": 2,\n            \"associations\": [\n                {\n                    \"name\": \"Home Owner Association A\",\n                    \"phone\": \"(999) 888-7766\"\n                }\n            ]\n        }\n    ],\n\t\"external_context\": {\n\t\t\"some_external_id\": \"987654321\",\n\t\t\"custom_key\": \"custom_value\"\n\t}\n}"},"url":"{{domain}}/api/orders","description":"<p>You may place one or multiple order types for the same property. Just append the corresponding order type attributes to the <code>orders</code> array. To find out more about the order types and the available services, go to the Order Metadata endpoint. There are two useful example on at the right </p>\n<blockquote>\n<p>Two sample requests (simple and complete) are shown at the right section of this documentation. You may include or exclude attributes according to your needs. Only a few basic attributes are required.</p>\n</blockquote>\n<p>To place a new order the <code>user_key</code> is required. You can obtain the user key after creating a new user from the API. You may also, obtain the user key from the user settings page on the Skyline Lien website. </p>\n<blockquote>\n<p>Please note that <code>is_rush</code> is optional. Setting it to <code>true</code> will expedite the order, but extra fees may apply.</p>\n</blockquote>\n","urlObject":{"path":["api","orders"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"0328ee55-3f4e-4cb3-8018-a03b9b7e76e9","name":"Create Order (Simple Example)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{user_key}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"file_number\": \"FILE-1234\",\n    \"address\": {\n        \"line_1\": \"1593 Elkview Drive\",\n        \"line_2\": \"Unit 100\",\n        \"city\": \"Vero Beach\",\n        \"state\": \"FL\",\n        \"zip_code\": \"32960\",\n        \"county\": \"Indian River County\"\n    },\n    \"folios\": [\n        \"12345-67-8910\",\n        \"98764-43-2109\"\n    ],\n    \"orders\": [\n        {\n            \"order_type\": 1,\n            \"requested_service_keys\": [\n                \"lien-taxes\",\n                \"lien-waste\",\n                \"lien-utilities\",\n                \"lien-work\",\n                \"lien-code\",\n                \"lien-letter\",\n                \"lien-permit\",\n                \"lien-zoning\"\n            ]\n        },\n        {\n            \"order_type\": 2,\n            \"associations\": [\n                {\n                    \"name\": \"Home Owner Association A\",\n                    \"phone\": \"(999) 888-7766\"\n                }\n            ]\n        },\n        {\n            \"order_type\": 3,\n            \"requested_service_keys\": [\n                \"tax-certificate-waste\",\n                \"tax-certificate-utilities\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{domain}}/api/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 03 Feb 2019 18:03:13 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Powered-By","value":"PHP/7.1.6"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"30"},{"key":"X-RateLimit-Remaining","value":"29"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"order_id\": 694093,\n            \"type\": 2,\n            \"type_name\": \"Association Estoppel\",\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"services\": [],\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"is_rush\": false,\n            \"requested_by\": \"George Weller\",\n            \"special_instructions\": null,\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"property_type\": null,\n            \"folios\": [\n                \"12345-67-8910\",\n                \"98764-43-2109\"\n            ],\n            \"legal_description\": null,\n            \"associations\": [\n                {\n                    \"name\": \"Home Owner Association A\",\n                    \"phone\": \"(999) 888-7766\"\n                }\n            ],\n            \"seller_name\": null,\n            \"borrower_name\": null,\n            \"closing_date\": null,\n            \"needed_date\": null,\n            \"created_date\": \"2019-02-03\",\n            \"completed_date\": null,\n            \"service_fee\": \"0.00\",\n            \"rush_fee\": \"0.00\",\n            \"expenses\": \"0.00\",\n            \"total\": \"0.00\",\n            \"is_paid\": false,\n            \"additional_email\": null,\n            \"attachments\": []\n        },\n        {\n            \"order_id\": 694092,\n            \"type\": 1,\n            \"type_name\": \"Lien Search\",\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"services\": [\n                \"lien-taxes\",\n                \"lien-waste\",\n                \"lien-utilities\",\n                \"lien-work\",\n                \"lien-code\",\n                \"lien-letter\",\n                \"lien-permit\",\n                \"lien-zoning\"\n            ],\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"is_rush\": false,\n            \"requested_by\": \"George Weller\",\n            \"special_instructions\": null,\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"property_type\": null,\n            \"folios\": [\n                \"12345-67-8910\",\n                \"98764-43-2109\"\n            ],\n            \"legal_description\": null,\n            \"associations\": [],\n            \"seller_name\": null,\n            \"borrower_name\": null,\n            \"closing_date\": null,\n            \"needed_date\": null,\n            \"created_date\": \"2019-02-03\",\n            \"completed_date\": \"2019-02-15\",\n            \"service_fee\": \"0.00\",\n            \"rush_fee\": \"0.00\",\n            \"expenses\": \"0.00\",\n            \"total\": \"0.00\",\n            \"is_paid\": false,\n            \"additional_email\": null,\n            \"attachments\": []\n        },\n        {\n            \"order_id\": 694094,\n            \"type\": 3,\n            \"type_name\": \"Tax Certificate\",\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"services\": [\n                \"tax-certificate-waste\",\n                \"tax-certificate-utilities\"\n            ],\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"is_rush\": false,\n            \"requested_by\": \"George Weller\",\n            \"special_instructions\": null,\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"property_type\": null,\n            \"folios\": [\n                \"12345-67-8910\",\n                \"98764-43-2109\"\n            ],\n            \"legal_description\": null,\n            \"associations\": [],\n            \"seller_name\": null,\n            \"borrower_name\": null,\n            \"closing_date\": null,\n            \"needed_date\": null,\n            \"created_date\": \"2019-02-03\",\n            \"completed_date\": \"2019-02-15\",\n            \"service_fee\": \"0.00\",\n            \"rush_fee\": \"0.00\",\n            \"expenses\": \"0.00\",\n            \"total\": \"0.00\",\n            \"is_paid\": false,\n            \"additional_email\": null,\n            \"attachments\": []\n        }\n    ]\n}"},{"id":"23cf6a5a-c8b8-4af2-9810-97179fc6b290","name":"Create Order (Complete Example)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{user_key}}","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"file_number\": \"FILE-1234\",\n    \n    \"address\": {\n        \"line_1\": \"1593 Elkview Drive\",\n        \"line_2\": \"Unit 100\",\n        \"city\": \"Vero Beach\",\n        \"state\": \"FL\",\n        \"zip_code\": \"32960\",\n        \"county\": \"Indian River County\"\n    },\n    \n    \"property_type\": \"residential\",\n    \n    \"folios\": [\n        \"12345-67-8910\",\n        \"98764-43-2109\"\n    ],\n    \"legal_description\": \"Some legal description about the property.\",\n\n    \"requested_by\": \"Ben Oneil\",\n    \"closing_date\": \"2018-07-12\",\n    \"needed_date\": \"2018-08-10\",\n    \"seller_name\": \"Gregory D. Sheffield\",\n    \"borrower_name\": \"Jerome Glenn\",\n    \n    \"special_instructions\": \"Please, send us an email with the results.\",\n    \n    \"orders\": [\n        {\n            \"order_type\": 1,\n            \"requested_service_keys\": [\n                \"lien-taxes\",\n                \"lien-waste\",\n                \"lien-utilities\",\n                \"lien-work\",\n                \"lien-code\",\n                \"lien-letter\",\n                \"lien-permit\",\n                \"lien-zoning\"\n            ],\n            \"is_rush\": false,\n            \"additional_email\": \"liens_department@example.com\"\n        },\n        {\n            \"order_type\": 2,\n            \"associations\": [\n                {\n                    \"name\": \"Home Owner Association A\",\n                    \"phone\": \"(999) 888-7766\"\n                }\n            ],\n            \"is_rush\": false,\n            \"additional_email\": \"hoa_department@example.com\"\n        },\n        {\n            \"order_type\": 3,\n            \"requested_service_keys\": [\n                \"tax-certificate-waste\",\n                \"tax-certificate-utilities\"\n            ],\n            \"is_rush\": false,\n            \"additional_email\": \"tax_department@example.com\"\n        }\n\t],\n\t\"external_context\": {\n\t\t\"your_custom_key\": \"your_custom_value\"\n\t}\n}"},"url":"{{domain}}/api/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 03 Feb 2019 18:01:14 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Powered-By","value":"PHP/7.1.6"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"30"},{"key":"X-RateLimit-Remaining","value":"29"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"order_id\": 694090,\n            \"type\": 2,\n            \"type_name\": \"Association Estoppel\",\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"services\": [],\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"is_rush\": false,\n            \"requested_by\": \"Ben Oneil\",\n            \"special_instructions\": \"Please, send us an email with the results.\",\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"property_type\": \"residential\",\n            \"folios\": [\n                \"12345-67-8910\",\n                \"98764-43-2109\"\n            ],\n            \"legal_description\": \"Some legal description about the property.\",\n            \"associations\": [\n                {\n                    \"name\": \"Home Owner Association A\",\n                    \"phone\": \"(999) 888-7766\"\n                }\n            ],\n            \"seller_name\": \"Gregory D. Sheffield\",\n            \"borrower_name\": \"Jerome Glenn\",\n            \"closing_date\": \"2018-07-12\",\n            \"needed_date\": \"2018-08-10\",\n            \"created_date\": \"2019-02-03\",\n            \"completed_date\": null,\n            \"service_fee\": \"0.00\",\n            \"rush_fee\": \"0.00\",\n            \"expenses\": \"0.00\",\n            \"total\": \"0.00\",\n            \"is_paid\": false,\n            \"additional_email\": \"hoa_department@example.com\",\n            \"attachments\": [],\n            \"external_context\": {\n\t\t\t    \"your_custom_key\": \"your_custom_value\"\n\t\t\t}\n        },\n        {\n            \"order_id\": 694089,\n            \"type\": 1,\n            \"type_name\": \"Lien Search\",\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"services\": [\n                \"lien-taxes\",\n                \"lien-waste\",\n                \"lien-utilities\",\n                \"lien-work\",\n                \"lien-code\",\n                \"lien-letter\",\n                \"lien-permit\",\n                \"lien-zoning\"\n            ],\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"is_rush\": false,\n            \"requested_by\": \"Ben Oneil\",\n            \"special_instructions\": \"Please, send us an email with the results.\",\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"property_type\": \"commercial\",\n            \"folios\": [\n                \"12345-67-8910\",\n                \"98764-43-2109\"\n            ],\n            \"legal_description\": \"Some legal description about the property.\",\n            \"associations\": [],\n            \"seller_name\": \"Gregory D. Sheffield\",\n            \"borrower_name\": \"Jerome Glenn\",\n            \"closing_date\": \"2018-07-12\",\n            \"needed_date\": \"2018-08-10\",\n            \"created_date\": \"2019-02-03\",\n            \"completed_date\": \"2019-02-15\",\n            \"service_fee\": \"0.00\",\n            \"rush_fee\": \"0.00\",\n            \"expenses\": \"0.00\",\n            \"total\": \"0.00\",\n            \"is_paid\": false,\n            \"additional_email\": \"liens_department@example.com\",\n            \"attachments\": [],\n            \"external_context\": {\n\t\t\t\t\"your_custom_key\": \"your_custom_value\"\n\t\t\t}\n        },\n        {\n            \"order_id\": 694091,\n            \"type\": 3,\n            \"type_name\": \"Tax Certificate\",\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"services\": [\n                \"tax-certificate-waste\",\n                \"tax-certificate-utilities\"\n            ],\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"is_rush\": false,\n            \"requested_by\": \"Ben Oneil\",\n            \"special_instructions\": \"Please, send us an email with the results.\",\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"property_type\": \"commercial\",\n            \"folios\": [\n                \"12345-67-8910\",\n                \"98764-43-2109\"\n            ],\n            \"legal_description\": \"Some legal description about the property.\",\n            \"associations\": [],\n            \"seller_name\": \"Gregory D. Sheffield\",\n            \"borrower_name\": \"Jerome Glenn\",\n            \"closing_date\": \"2018-07-12\",\n            \"needed_date\": \"2018-08-10\",\n            \"created_date\": \"2019-02-03\",\n            \"completed_date\": \"2019-02-15\",\n            \"service_fee\": \"0.00\",\n            \"rush_fee\": \"0.00\",\n            \"expenses\": \"0.00\",\n            \"total\": \"0.00\",\n            \"is_paid\": false,\n            \"additional_email\": \"tax_department@example.com\",\n            \"attachments\": [],\n\t\t    \"external_context\": {\n\t\t\t\t\"your_custom_key\": \"your_custom_value\"\n\t\t\t}\n        }\n    ]\n}"}],"_postman_id":"23cac760-09e9-4191-a046-d4deb9a091e7"},{"name":"Create Order Update","id":"e4ac06f0-abe5-4d66-a7d2-1488e7de0437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user_key}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"requested_by\": \"Pedro Alvarez\",\n    \"closing_date\": \"2018-09-12\",\n    \"needed_date\": \"2018-08-10\",\n    \"borrower_name\": \"Martha Puzo\",\n    \"is_rush\": true,\n    \"special_instructions\": \"Please, provide as soon as possible.\"\n}"},"url":"{{domain}}/api/orders/{{order_id}}/updates","description":"<p>After an Order is completed, you may request multiple Order Updates to keep the information about a property up to date. </p>\n<blockquote>\n<p>When requesting an Order Update, you do not need to provide the property information or the services requested as they will be copied from the original Order. All other fields are are optional as well.</p>\n</blockquote>\n","urlObject":{"path":["api","orders","{{order_id}}","updates"],"host":["{{domain}}"],"query":[],"variable":[]}},"response":[{"id":"31f9f042-c934-44ba-8735-68e62d7d2dd9","name":"Create Order Update","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{user_key}}","type":"text"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"requested_by\": \"Pedro Alvarez\",\n    \"closing_date\": \"2018-09-12\",\n    \"needed_date\": \"2018-08-10\",\n    \"borrower_name\": \"Martha Puzo\",\n    \"is_rush\": true,\n    \"special_instructions\": \"Please, provide as soon as possible.\"\n}"},"url":"{{domain}}/api/orders/{{order_id}}/updates"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 03 Feb 2019 18:21:40 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Powered-By","value":"PHP/7.1.6"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"30"},{"key":"X-RateLimit-Remaining","value":"29"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"order_id\": 694101,\n        \"type\": 1,\n        \"type_name\": \"Lien Search\",\n        \"is_update\": true,\n        \"update_order_id\": 661268,\n        \"services\": [\n            \"lien-taxes\",\n            \"lien-waste\",\n            \"lien-utilities\",\n            \"lien-work\",\n            \"lien-code\",\n            \"lien-letter\",\n            \"lien-permit\"\n        ],\n        \"status\": 1,\n        \"status_name\": \"New\",\n        \"status_description\": null,\n        \"is_rush\": true,\n        \"requested_by\": \"Pedro Alvarez\",\n        \"special_instructions\": \"Please, provide as soon as possible.\",\n        \"file_number\": \"18-081\",\n        \"address\": {\n            \"line_1\": \"8160 Pine Circle\",\n            \"line_2\": null,\n            \"city\": \"Tamarac\",\n            \"state\": \"FL\",\n            \"zip_code\": \"33321\",\n            \"county\": \"Broward\",\n            \"inline\": \"8160 Pine Circle  Tamarac, FL 33321\"\n        },\n        \"property_type\": \"residential\",\n        \"folios\": [\n            \"4941 04 AC 0100\"\n        ],\n        \"legal_description\": \"\",\n        \"associations\": [],\n        \"seller_name\": \"ABC Bank\",\n        \"borrower_name\": \"Martha Puzo\",\n        \"closing_date\": \"2018-09-12\",\n        \"needed_date\": \"2018-08-10\",\n        \"created_date\": \"2019-02-03\",\n        \"completed_date\": \"2019-02-15\",\n        \"service_fee\": \"0.00\",\n        \"rush_fee\": \"0.00\",\n        \"expenses\": \"0.00\",\n        \"total\": \"0.00\",\n        \"is_paid\": false,\n        \"additional_email\": \"maria@example.com\",\n        \"attachments\": []\n    }\n}"}],"_postman_id":"e4ac06f0-abe5-4d66-a7d2-1488e7de0437"},{"name":"List Orders of a User","id":"89f5c5ef-1634-4947-8d35-0d08b1c41e09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user_key}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{domain}}/api/orders?type=1&status=3&start=2018-01-01&end=2018-12-01","description":"<p>Returns a list of orders placed by the user. You may filter orders by <code>type</code>, <code>status</code> and <code>created_date</code>. If no filter is provided, all orders will be returned.</p>\n<p><strong>Types:</strong></p>\n<ul>\n<li>1: Lien Search</li>\n<li>2: Association Estoppel</li>\n<li>3: Tax Certificate</li>\n</ul>\n<p><strong>Statuses:</strong></p>\n<ul>\n<li>1: New</li>\n<li>2: Processing</li>\n<li>3: Ready</li>\n<li>4: On Hold</li>\n<li>5: Cancelled</li>\n</ul>\n<blockquote>\n<p>The <code>share_url</code> provides public access to a web page that displays the order details, status and allows downloading the final documents. You may use this link if you don't need a custom user interface for the order details.</p>\n</blockquote>\n","urlObject":{"path":["api","orders"],"host":["{{domain}}"],"query":[{"description":{"content":"<p>Type of the order</p>\n","type":"text/plain"},"key":"type","value":"1"},{"description":{"content":"<p>Status of the order</p>\n","type":"text/plain"},"key":"status","value":"3"},{"description":{"content":"<p>Orders created after this date (yyyy-mm-dd)</p>\n","type":"text/plain"},"key":"start","value":"2018-01-01"},{"description":{"content":"<p>Orders created before this date (yyyy-mm-dd)</p>\n","type":"text/plain"},"key":"end","value":"2018-12-01"}],"variable":[]}},"response":[{"id":"67469e4a-229f-4737-9e77-134f5a93e23b","name":"List Orders of a User","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{user_key}}","type":"text"}],"url":{"raw":"{{domain}}/orders","host":["{{domain}}"],"path":["orders"],"query":[{"key":"type","value":"1","description":"Type of the order","disabled":true},{"key":"status","value":"3","description":"Status of the order","disabled":true},{"key":"start","value":"2018-04-01","description":"Orders created after this date (yyyy-mm-dd)","disabled":true},{"key":"end","value":"2018-04-30","description":"Orders created before this date (yyyy-mm-dd)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 17 May 2018 14:58:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Powered-By","value":"PHP/7.1.6","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"X-RateLimit-Limit","value":"30","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"29","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6IkVlZ3ptVHAwMnJvODZVNWpnTE16aGc9PSIsInZhbHVlIjoiOFpBSDl2MUlPbUlTQlhcL3R0a2hleHlwTVNZcDROT3k1aFY1b3lmM2pJZURWNWkwZ2xoZnBueHR5ZVZcLzdvTTZEK0ZsUzJvNjV6S3lXOEE1TEFZQm9TQT09IiwibWFjIjoiYWYzY2NlODc1ZWVjOWRkMmI0MGY1M2I4ZTIzMDhmZDQ5M2M5YWEzOTQ4ODIzYWM0NWY0M2U0Njg4M2NmNGIxNyJ9","key":"XSRF-TOKEN"},{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6Ijh3aGQrc0hZSGgxenpmWWVHdXJob0E9PSIsInZhbHVlIjoibUpjT09LV291eHNrYVozK1VYNnpab2lZbjRrdFVOYzBXSnBTZ0NWVG9SV252NmJWSzhsZnB2WnpVb1FJcjVzVjZzTmYzWnl6VzhWY3FVTTMyVjJuYXc9PSIsIm1hYyI6IjkzMzRjNzM2NDk2ZGU1NDkxZDhlMTU2MmRiM2NjZGQ2ZjViNGM2ODAzOWU3YzE5YmU3ZGI1ZGUzMmJkOWRhZDUifQ%3D%3D","key":"laravel_session"}],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"order_id\": 661270,\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"type\": 3,\n            \"type_name\": \"Tax Certificate\",\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"created_date\": \"2018-05-17\",\n            \"completed_date\": \"2018-05-31\",\n            \"total\": null,\n            \"is_paid\": false,\n            \"share_url\": \"https://skylinelien.com/orders/661270/share/447ba7a0-3f8b-11ea-aaef-0800200c9a66\"\n        },\n        {\n            \"order_id\": 661269,\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"type\": 2,\n            \"type_name\": \"Association Estoppel\",\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"created_date\": \"2018-05-17\",\n            \"completed_date\": null,\n            \"total\": null,\n            \"is_paid\": false,\n            \"share_url\": \"https://skylinelien.com/orders/661269/share/a5739687-a9a6-4420-aff7-32da593c53a3\"\n        },\n        {\n            \"order_id\": 661268,\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"type\": 1,\n            \"type_name\": \"Lien Search\",\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"created_date\": \"2018-05-17\",\n            \"completed_date\": \"2018-05-31\",\n            \"total\": null,\n            \"is_paid\": false,\n            \"share_url\": \"https://skylinelien.com/orders/661268/share/9869f706-8121-401c-a32c-768b66cff34e\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://skylinelien.com/api/orders?page=1\",\n        \"last\": \"https://skylinelien.com/api/orders?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"path\": \"https://skyline6/api/orders\",\n        \"per_page\": 100,\n        \"to\": 3,\n        \"total\": 3\n    }\n}"}],"_postman_id":"89f5c5ef-1634-4947-8d35-0d08b1c41e09"},{"name":"List Orders of a Company","id":"0c217219-4a61-4f2e-960f-255a5d96ae1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user_key}}"}]},"isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{user_key}}","type":"text"}],"url":"{{domain}}/api/companies/{{company_id}}/orders?type=1&status=3&start=2018-04-01&end=2018-04-30","description":"<p>Returns a list of orders of a company. The <code>partner_key</code> is required to grant access at the company level. You may filter orders by <code>type</code>, <code>status</code> and <code>created_date</code> just like in the order list of the users. If no filter is provided, all orders will be returned.</p>\n<blockquote>\n<p>Note that you may also call this endpoint with the <code>user_key</code> of a user with role <code>Company Manager</code>. The user that first created the company is a <code>Company Manager</code> by default, but there can be multiple managers. Contact Skyline Lien to request configuring another user as a <code>Company Manager</code>.</p>\n</blockquote>\n<blockquote>\n<p>The <code>share_url</code> provides public access to a web page that displays the order details, status and allows downloading the final documents. You may use this link if you don't need a custom user interface for the order details.</p>\n</blockquote>\n","urlObject":{"path":["api","companies","{{company_id}}","orders"],"host":["{{domain}}"],"query":[{"description":{"content":"<p>Type of the order</p>\n","type":"text/plain"},"key":"type","value":"1"},{"description":{"content":"<p>Status of the order</p>\n","type":"text/plain"},"key":"status","value":"3"},{"description":{"content":"<p>Orders created after this date (yyyy-mm-dd)</p>\n","type":"text/plain"},"key":"start","value":"2018-04-01"},{"description":{"content":"<p>Orders created before this date (yyyy-mm-dd)</p>\n","type":"text/plain"},"key":"end","value":"2018-04-30"}],"variable":[]}},"response":[{"id":"f42ffb7e-127d-4e2f-9ac8-dc7c6bb6a4e6","name":"List Orders of a Company","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{user_key}}","type":"text"}],"url":{"raw":"{{domain}}/companies/{{company_id}}/orders","host":["{{domain}}"],"path":["companies","{{company_id}}","orders"],"query":[{"key":"type","value":"1","description":"Type of the order","disabled":true},{"key":"status","value":"3","description":"Status of the order","disabled":true},{"key":"start","value":"2018-04-01","description":"Orders created after this date (yyyy-mm-dd)","disabled":true},{"key":"end","value":"2018-04-30","description":"Orders created before this date (yyyy-mm-dd)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache, private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 17 May 2018 14:59:28 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"X-Powered-By","value":"PHP/7.1.6","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"X-RateLimit-Limit","value":"30","name":"X-RateLimit-Limit","description":"Custom header"},{"key":"X-RateLimit-Remaining","value":"29","name":"X-RateLimit-Remaining","description":"Custom header"}],"cookie":[{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6IkVlZ3ptVHAwMnJvODZVNWpnTE16aGc9PSIsInZhbHVlIjoiOFpBSDl2MUlPbUlTQlhcL3R0a2hleHlwTVNZcDROT3k1aFY1b3lmM2pJZURWNWkwZ2xoZnBueHR5ZVZcLzdvTTZEK0ZsUzJvNjV6S3lXOEE1TEFZQm9TQT09IiwibWFjIjoiYWYzY2NlODc1ZWVjOWRkMmI0MGY1M2I4ZTIzMDhmZDQ5M2M5YWEzOTQ4ODIzYWM0NWY0M2U0Njg4M2NmNGIxNyJ9","key":"XSRF-TOKEN"},{"expires":"Fri May 18 2018 13:42:09 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"skyline6","path":"/","secure":false,"value":"eyJpdiI6Ijh3aGQrc0hZSGgxenpmWWVHdXJob0E9PSIsInZhbHVlIjoibUpjT09LV291eHNrYVozK1VYNnpab2lZbjRrdFVOYzBXSnBTZ0NWVG9SV252NmJWSzhsZnB2WnpVb1FJcjVzVjZzTmYzWnl6VzhWY3FVTTMyVjJuYXc9PSIsIm1hYyI6IjkzMzRjNzM2NDk2ZGU1NDkxZDhlMTU2MmRiM2NjZGQ2ZjViNGM2ODAzOWU3YzE5YmU3ZGI1ZGUzMmJkOWRhZDUifQ%3D%3D","key":"laravel_session"}],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"order_id\": 661270,\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"type\": 3,\n            \"type_name\": \"Tax Certificate\",\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"created_date\": \"2018-05-17\",\n            \"completed_date\": \"2018-05-31\",\n            \"total\": null,\n            \"is_paid\": false,\n            \"share_url\": \"https://skylinelien.com/orders/661270/share/9869f706-8121-401c-a32c-768b66cff34e\"\n        },\n        {\n            \"order_id\": 661269,\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"type\": 2,\n            \"type_name\": \"Association Estoppel\",\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"created_date\": \"2018-05-17\",\n            \"completed_date\": null,\n            \"total\": null,\n            \"is_paid\": false,\n            \"share_url\": \"https://skylinelien.com/orders/661269/share/9869f706-8121-401c-a32c-768b66cff34e\"\n        },\n        {\n            \"order_id\": 661268,\n            \"is_update\": false,\n            \"update_order_id\": null,\n            \"type\": 1,\n            \"type_name\": \"Lien Search\",\n            \"file_number\": \"FILE-1234\",\n            \"address\": {\n                \"line_1\": \"1593 Elkview Drive\",\n                \"line_2\": \"Unit 100\",\n                \"city\": \"Vero Beach\",\n                \"state\": \"FL\",\n                \"zip_code\": \"32960\",\n                \"county\": \"Indian River County\",\n                \"inline\": \"1593 Elkview Drive Unit 100 Vero Beach, FL 32960\"\n            },\n            \"status\": 1,\n            \"status_name\": \"New\",\n            \"status_description\": null,\n            \"created_date\": \"2018-05-17\",\n            \"completed_date\": \"2018-05-31\",\n            \"total\": null,\n            \"is_paid\": false,\n            \"share_url\": \"https://skylinelien.com/orders/661268/share/9869f706-8121-401c-a32c-768b66cff34e\"\n        }\n    ],\n    \"links\": {\n        \"first\": \"https://skylinelien.com/api/companies/932/orders?page=1\",\n        \"last\": \"https://skylinelien.com/api/companies/932/orders?page=1\",\n        \"prev\": null,\n        \"next\": null\n    },\n    \"meta\": {\n        \"current_page\": 1,\n        \"from\": 1,\n        \"last_page\": 1,\n        \"path\": \"https://skylinelien.com/api/companies/932/orders\",\n        \"per_page\": 100,\n        \"to\": 3,\n        \"total\": 3\n    }\n}"}],"_postman_id":"0c217219-4a61-4f2e-960f-255a5d96ae1d"},{"name":"Order Details","id":"2a7612e7-ea21-463a-8dca-9a7a2c14ab66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{user_key}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{domain}}/api/orders/{{order_id}}","description":"<p>Returns an object with all the details of an order and links to download the PDF attachments. </p>\n<blockquote>\n<p>The <code>share_url</code> provides public access to a web page that displays the order details, status and allows downloading the final documents. You may use this link if you don't need a custom user interface for the order details.</p>\n</blockquote>\n<blockquote>\n<p>Please, note that for security reasons download links expire after 1 week. You may download and store the documents during this timeframe, or use this endpoint again to regenerate the links.</p>\n</blockquote>\n","urlObject":{"path":["api","orders","{{order_id}}"],"host":["{{domain}}"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"fd1b7cb2-9a91-439b-9b9f-549d6aba2192","name":"Order Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{user_key}}","type":"text"}],"url":"{{domain}}/api/orders/{{order_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 03 Feb 2019 18:36:05 GMT"},{"key":"Server","value":"Apache"},{"key":"X-Powered-By","value":"PHP/7.1.6"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"30"},{"key":"X-RateLimit-Remaining","value":"29"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"order_id\": 661268,\n        \"type\": 1,\n        \"type_name\": \"Lien Search\",\n        \"is_update\": false,\n        \"update_order_id\": null,\n        \"services\": [\n            \"lien-taxes\",\n            \"lien-waste\",\n            \"lien-utilities\",\n            \"lien-work\",\n            \"lien-code\",\n            \"lien-letter\",\n            \"lien-permit\"\n        ],\n        \"status\": 3,\n        \"status_name\": \"Ready\",\n        \"status_description\": \"The report is ready.\",\n        \"is_rush\": false,\n        \"requested_by\": \"Ray Wright\",\n        \"special_instructions\": \"Needed ASAP, standard service.\",\n        \"file_number\": \"18-081\",\n        \"address\": {\n            \"line_1\": \"2030 Pine Circle\",\n            \"line_2\": null,\n            \"city\": \"Tamarac\",\n            \"state\": \"FL\",\n            \"zip_code\": \"33321\",\n            \"county\": \"Broward\",\n            \"inline\": \"2030 Pine Circle  Tamarac, FL 33321\"\n        },\n        \"property_type\": \"commercial\",\n        \"folios\": [\n            \"4941 04 AC 0100\",\n            \"4941 04 AC 0100\"\n        ],\n        \"associations\": [],\n        \"seller_name\": \"ABC Bank\",\n        \"borrower_name\": \"Ruben Dario\",\n        \"closing_date\": \"2018-05-31\",\n        \"needed_date\": \"2018-05-24\",\n        \"created_date\": \"2018-05-08\",\n        \"completed_date\": \"2018-05-22\",\n        \"service_fee\": \"10.00\",\n        \"rush_fee\": \"20.00\",\n        \"expenses\": \"30.00\",\n        \"total\": \"60.00\",\n        \"is_paid\": false,\n        \"additional_email\": \"maria@example.com\",\n        \"share_url\": \"https://skylinelien.com/orders/661268/share/f781214e-b582-4ee7-aae2-08d57d42abcd\",\n        \"attachments\": [\n            {\n                \"attachment_id\": 372535,\n                \"type\": 4,\n                \"type_name\": \"Final Report\",\n                \"created_at\": \"2019-02-03 13:35:59\",\n                \"download_url\": \"https://skylinelien-dev.s3.amazonaws.com/attachments/2019/2/3/661268_372535.pdf?response-content-disposition=filename%20%3D%20%22661268%20Final%20Report.pdf%22&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJOPONLK6N5XUHKDQ%2F20190203%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20190203T183606Z&X-Amz-SignedHeaders=host&X-Amz-Expires=600000&X-Amz-Signature=c2c5e65f022974b95d748beeb181a73e298f6756bfac4038b089bcad4e189997\"\n            }\n        ],\n        \"external_context\": {\n\t\t\t\"custom_key\": \"custom_value\"\n\t\t}\n    }\n}"}],"_postman_id":"2a7612e7-ea21-463a-8dca-9a7a2c14ab66"}],"id":"ff913c78-9ad8-4429-8ee3-20c9e8eb6603","description":"<p>An order is a request for searching information about a real estate property. Given a physical address and folios, Skyline Lien will conduct an investigation and produce a PDF report according to the services requested. There are three types of orders and each one has different services available:</p>\n<ul>\n<li>Lien Searches</li>\n<li>HOA/Condo Estoppels</li>\n<li>Tax Certificates</li>\n</ul>\n<p>Once an order is completed, an email will be sent to the user that placed it. The email contains a link to download the final report and the billing information for that order.</p>\n","event":[{"listen":"prerequest","script":{"id":"c63d1ac8-0d26-4d69-ac8c-4a0792652cc5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7b3e4ce6-3b74-4bfa-8181-d295918dcf95","type":"text/javascript","exec":[""]}}],"_postman_id":"ff913c78-9ad8-4429-8ee3-20c9e8eb6603"},{"name":"Callbacks","item":[{"name":"Order Status Changed","id":"f402cc8f-be39-4bd8-a834-8d72d93e2809","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"order_id\": 661268,\n    \"type\": 1,\n    \"type_name\": \"Lien Search\",\n    \"is_update\": false,\n    \"update_order_id\": null,\n    \"services\": [\n        \"lien-taxes\",\n        \"lien-waste\",\n        \"lien-utilities\",\n        \"lien-work\",\n        \"lien-code\",\n        \"lien-letter\",\n        \"lien-permit\"\n    ],\n    \"status\": 3,\n    \"status_name\": \"Ready\",\n    \"status_description\": \"The report is ready.\",\n    \"is_rush\": false,\n    \"requested_by\": \"Ray Wright\",\n    \"special_instructions\": \"Needed ASAP, standard service.\",\n    \"file_number\": \"18-081\",\n    \"address\": {\n        \"line_1\": \"2030 Pine Circle\",\n        \"line_2\": null,\n        \"city\": \"Tamarac\",\n        \"state\": \"FL\",\n        \"zip_code\": \"33321\",\n        \"county\": \"Broward\",\n        \"inline\": \"2030 Pine Circle  Tamarac, FL 33321\"\n    },\n    \"property_type\": \"commercial\",\n    \"folios\": [\n        \"4941 04 AC 0100\",\n        \"4941 04 AC 0100\"\n    ],\n    \"associations\": [],\n    \"seller_name\": \"ABC Bank\",\n    \"borrower_name\": \"Ruben Dario\",\n    \"closing_date\": \"2018-05-31\",\n    \"needed_date\": \"2018-05-24\",\n    \"created_date\": \"2018-05-08\",\n    \"completed_date\": \"2018-05-22\",\n    \"service_fee\": \"10.00\",\n    \"rush_fee\": \"20.00\",\n    \"expenses\": \"30.00\",\n    \"total\": \"60.00\",\n    \"is_paid\": false,\n    \"additional_email\": \"maria@example.com\",\n    \"share_url\": \"https://skylinelien.com/orders/661268/share/f781214e-b582-4ee7-aae2-08d57d42abcd\",\n    \"attachments\": [\n        {\n            \"attachment_id\": 372535,\n            \"type\": 4,\n            \"type_name\": \"Final Report\",\n            \"created_at\": \"2019-02-03 13:35:59\",\n            \"download_url\": \"https://skylinelien-dev.s3.amazonaws.com/attachments/2019/2/3/661268_372535.pdf?response-content-disposition=filename%20%3D%20%22661268%20Final%20Report.pdf%22&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJOPONLK6N5XUHKDQ%2F20190203%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20190203T183606Z&X-Amz-SignedHeaders=host&X-Amz-Expires=600000&X-Amz-Signature=c2c5e65f022974b95d748beeb181a73e298f6756bfac4038b089bcad4e189997\"\n        }\n    ],\n    \"external_context\": {\n\t\t\"custom_key\": \"custom_value\"\n\t}\n}"},"url":"https://{{callback_url}}","description":"<p>Sends a POST request to your endpoint with the order details when an order changes status. For example, to notify your users when the order is ready, or if there's an issue with the order when it's on hold.</p>\n<blockquote>\n<p>Note that the order resource schema is the same as in the order details <code>GET /api/orders/{{order_id}}</code> you may reuse the same parser and validator if you like. One difference is that the callback data is in the top level of the JSON object (not inside a <code>data</code> key like in the Order Details endpoint)</p>\n</blockquote>\n","urlObject":{"protocol":"https","host":["{{callback_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f402cc8f-be39-4bd8-a834-8d72d93e2809"}],"id":"ede0e099-2a8c-42f4-bbfe-7c6758208391","description":"<p>Callbacks are HTTP POST requests from Skyline Lien to your platform as soon as certain triggers happen such us a change in order status.</p>\n<p>When setting up the API Partner account with us, you will need to provide a <code>callback_url</code>, the authentication method and credentials for us to be able to send requests to your endpoint. For example, </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Endpoint: https://yourdomain.com/api/skylinelien/callback\nAuth: Bearer Token\nToken: abc123\n</code></pre><h3 id=\"callback-authentication\">Callback Authentication</h3>\n<p>We currently support the following authentiation methods:</p>\n<ul>\n<li>Bearer Token authentication passed in the HTTP header</li>\n<li>HTTP Basic Auth with username and password</li>\n</ul>\n<p>If your system requires another form of authentication, please let us know to develop a custom integration.</p>\n<h3 id=\"storing-custom-attributes\">Storing Custom Attributes</h3>\n<p>You may store custom extra attributes in the <code>external_context</code> of an order. It accepts as many properties as you need in valid JSON format. When the callback is triggered, we include the context data the same way you provided it. </p>\n<blockquote>\n<p>Note that the external context is not designed for storing secrets or sensitive data. </p>\n</blockquote>\n","event":[{"listen":"prerequest","script":{"id":"ea02a564-344b-423e-9e1c-f9622c284874","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"586179d5-222c-4db3-aced-18e49d3183f2","type":"text/javascript","exec":[""]}}],"_postman_id":"ede0e099-2a8c-42f4-bbfe-7c6758208391"}],"event":[{"listen":"prerequest","script":{"id":"785d7b76-9cb0-48d5-8525-7545aab6d931","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"60c63b03-464b-45f0-b60d-5fc4efe1e842","type":"text/javascript","exec":[""]}}]}