{"info":{"_postman_id":"1a92be5b-799c-47bf-b4b2-071e8b68570a","name":"Tap Inspect v2 API","description":"<html><head></head><body><p>The Tap Inspect API provides you full read/write access to all of your content in our system using the same interface that our official mobile applications use.</p>\n<p>To take advantage of our API, contact us for an API key.</p>\n<p>This document is copyright © 2023 Tap Inspect, Inc. All rights reserved.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Authenticating requests with the Tap Inspect API requires 2 things:</p>\n<ul>\n<li>An API key (contact us to get one)</li>\n<li>A user's API Authentication Token</li>\n</ul>\n<p>Users can generate their own API authentication token by visiting their <a href=\"https://app.tapinspect.com/integrations\">integration settings page</a>.</p>\n<p>Pass these values in the request headers with every request as follows:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>The string \"Bearer TOKEN\", substituting the token provided by the user</td>\n</tr>\n<tr>\n<td>X-API-Key</td>\n<td>The API key provided to you for your application</td>\n</tr>\n</tbody>\n</table>\n</div><p>All requests require HTTPS encryption.</p>\n<h1 id=\"environments\">Environments</h1>\n<p>We ❤️ automated testing!</p>\n<p>We have a development environment available for any automated tests you want to run, or if you just want a sandbox to play around in without risking any production data.</p>\n<p>We will provide you with a second API key for our development environment. You simply need to use a separate subdomain when making your request to target the development environment instead of the production environment.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Environment</th>\n<th>Domain</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Production</td>\n<td>app.tapinspect.com</td>\n</tr>\n<tr>\n<td>Development</td>\n<td>dev.tapinspect.com</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"device-management\">Device Management</h1>\n<p>Our system allows multiple devices to work on the same set of data simultaneously without losing changes. In order to accomplish this, our API is slightly more complicated than those you may have experience with. The first way we do this is by uniquely identifying each device that connects to our system.</p>\n<p>You must provide a 32 character <a href=\"https://en.wikipedia.org/wiki/Universally_unique_identifier\">universally unique identifier (UUID)</a> as a header in every request you send to our API to represent the device or system making the request. That device should consistently provide the same UUID across all requests that it makes over the API.</p>\n<p>If you will be connecting to our API using a Web server or cluster of Web servers, it is sufficient to use a single UUID to represent your entire system across all of your requests.</p>\n<p>If you are distributing multiple instances of a mobile or desktop application, each installation of the application should provide its own UUID. For our native mobile applications, we generate a UUID upon application installation.</p>\n<p>You may also provide a few other optional request headers to further identify the device as follows. Providing this information assists us when debugging problems you encounter.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>X-Device-UUID</td>\n<td>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests. (required) Example: 123e4567e89b12d3a456426655440000</td>\n</tr>\n<tr>\n<td>X-Device-Description</td>\n<td>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</td>\n</tr>\n<tr>\n<td>X-Platform</td>\n<td>iOS, Android, 3rd party service name, etc. (optional)</td>\n</tr>\n<tr>\n<td>X-OS-Version</td>\n<td>Version of the OS on the device (optional)</td>\n</tr>\n<tr>\n<td>X-SW-Version</td>\n<td>Version of the app interacting with the API (optional)</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"example-api-request\">Example API Request</h1>\n<p>Here is a simple Python script to give you an example of how to put an API request together.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>import requests\n# Substitute these values with information from your account\napi_key = 'ABCD'\napi_authentication_token = 'EFGH'\nteam_id = '123'\nheaders = {\n    'Content-Type':         'application/json',\n    'Accept':               'application/json',\n    'Authorization':        'Bearer ' + api_authentication_token,\n    'X-API-Key':            api_key,\n    'X-Device-UUID':        '123e4567e89b12d3a456426655440000', # Choose your own unique value to identify a specific device\n    'X-Device-Description': 'My Device',\n    'X-Platform':           'My Server App',\n    'X-OS-Version':         '1.0',\n    'X-SW-Version':         '1.0'\n}\n# Get a list of the first 100 jobs in your account\nurl = 'https://app.tapinspect.com/api/v2/teams/' + team_id + '/jobs?start=1&amp;limit=100'\nresponse = requests.get(url, headers = headers, timeout=500)\nprint(response.text)\n\n</code></pre><h1 id=\"transaction-keys\">Transaction Keys</h1>\n<p>The second way we ensure data consistency across multiple devices is the use of <strong>transaction keys</strong>. Every record accessible through the API has a transaction key property that uniquely identifies the state of the record. This transaction key is in the form of a 32 character UUID, and is changed any time a record is altered anywhere in the system.</p>\n<p>Tap Inspect uses these transaction keys to ensure that any update to our database done through the API does not accidentally overwrite data from another device. When creating or updating a record through the API, follow these rules:</p>\n<ul>\n<li>When creating a record, specify a new unique transaction key UUID for the <strong>transaction key</strong> parameter.</li>\n<li>When updating a record, provide the previous known transaction key under the parameter <strong>previous transaction key</strong> and provide a new unique transaction key UUID for the parameter <strong>transaction key</strong>.</li>\n<li>During an update transaction, if the <strong>previous transaction key</strong> value you specified does not match the current value of the record's transaction key, your transaction will be rejected with an \"out of sequence\" error. This means that the record in question has been modified elsewhere in the system, and there is a strong possibility your update transaction will cause data to be lost. When this occurs, you will need to perform a read transaction of that record through the API, merge any changes, and then perform the update transaction again using the updated transaction key.</li>\n</ul>\n<h1 id=\"primary-keys\">Primary Keys</h1>\n<p>With the exception of the user and team tables, every table accessible through the API also uses a UUID as the <strong>primary key</strong>. Most data in our system involves multiple relations with other tables. We use UUIDs for the primary key so that you can build multiple sets of related data simultaneously in your system without having to push them to the API in any specific order.</p>\n<ul>\n<li>When you create a record through the API, you will need to specify a unique UUID as the <strong>primary key</strong> for that record.</li>\n<li>When you perform any read or update transactions through the API, use the <strong>primary key UUID</strong> to specify the specific record in the URL.</li>\n</ul>\n<h1 id=\"data-hierarchy\">Data Hierarchy</h1>\n<p>A <strong>Team</strong></p>\n<ul>\n<li>has one or more <strong>Users</strong></li>\n<li>has zero or more <strong>Jobs</strong></li>\n<li>has zero or more <strong>Services</strong></li>\n<li>has zero or more <strong>Service Agreements</strong></li>\n<li>has one or more <strong>Service Roles</strong> (i.e. Client, Agent, etc)</li>\n<li>has zero or more <strong>Saved Comments</strong>, <strong>Saved Comment Categories</strong>, <strong>Saved Comment Ranks</strong>, and <strong>Saved Comment Types</strong></li>\n<li>has zero or more <strong>People</strong>, <strong>Person Emails</strong>, <strong>Person Phones</strong>, <strong>Person Roles</strong>, and <strong>Contact Roles</strong> representing the team's contacts</li>\n<li>has zero or more <strong>Message Templates</strong> that each may have <strong>Message Template Custom Recipients</strong>, <strong>Message Template Role Recipients</strong>, and <strong>Message Template Services</strong></li>\n<li>has one or more <strong>Change Events</strong> that comprise an audit log of changes to the team data as part of our synchronization scheme.</li>\n</ul>\n<p>A <strong>Service</strong></p>\n<ul>\n<li>has a title, price, and a duration</li>\n<li>has zero or more <strong>Agreements</strong> (through <strong>Service Agreements</strong>) indicating what kind of agreements should be generated when that service is performed as part of a <strong>Job</strong></li>\n<li>has zero or more <strong>Fees</strong> and <strong>Fee Options</strong> that define how to calculate the price for a service</li>\n<li>has zero or more <strong>Templates</strong> (through <strong>Service Templates</strong>) indicating what kind of reports should be generated when that service is performed as part of a <strong>Job</strong></li>\n<li>has zero or more <strong>Tax Rates</strong> (through <strong>Service Tax Rates</strong>) indicating tax rates that should automatically be applied to the invoice when that service is performed as part of a <strong>Job</strong></li>\n</ul>\n<p>A <strong>Job</strong></p>\n<ul>\n<li>has an address, inspection date/time, and a duration</li>\n<li>has an optional photo (i.e. cover page photo)</li>\n<li>has an optional <strong>Invoice</strong></li>\n<li>has zero or more <strong>Job Agreement</strong> representing documents that must be signed by the client</li>\n<li>has one or more <strong>Job Assignment</strong> indicating which team members are assigned as inspectors to the job</li>\n<li>has zero or more <strong>Job Discount</strong></li>\n<li>has zero or more <strong>Job Person</strong> (i.e. Client, Agents, etc.) that each may have <strong>Job Person Emails</strong> and <strong>Job Person Phones</strong></li>\n<li>has zero or more <strong>Job Services</strong> indicating what <strong>Services</strong> were performed for the Client and what the prices were</li>\n<li>has zero or more <strong>Job Tax Rate</strong></li>\n<li>has zero or more <strong>Notes</strong></li>\n<li>has zero or more <strong>Reports</strong></li>\n</ul>\n<p>An <strong>Invoice</strong></p>\n<ul>\n<li>has zero or more <strong>Payments</strong></li>\n</ul>\n<p>A <strong>Report</strong> or <strong>Template</strong></p>\n<ul>\n<li>has zero or more <strong>Sections</strong></li>\n<li>has zero or more <strong>Condition Ratings</strong></li>\n</ul>\n<p>A <strong>Section</strong></p>\n<ul>\n<li>has zero or more <strong>Items</strong></li>\n<li>has zero or more <strong>Comments</strong></li>\n<li>has zero or more <strong>Sections</strong> (sub-sections)</li>\n</ul>\n<p>An <strong>Item</strong></p>\n<ul>\n<li>has zero or more <strong>Item Options</strong> (if multiple choice)</li>\n<li>has zero or more <strong>Photos</strong></li>\n<li>has zero or more <strong>Comments</strong></li>\n</ul>\n<p>A <strong>Comment</strong></p>\n<ul>\n<li>has zero or more <strong>Photos</strong></li>\n</ul>\n<p>A <strong>Photo</strong></p>\n<ul>\n<li>has zero or more <strong>Photo Annotations</strong></li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Environments","slug":"environments"},{"content":"Device Management","slug":"device-management"},{"content":"Example API Request","slug":"example-api-request"},{"content":"Transaction Keys","slug":"transaction-keys"},{"content":"Primary Keys","slug":"primary-keys"},{"content":"Data Hierarchy","slug":"data-hierarchy"}],"owner":"3942037","collectionId":"1a92be5b-799c-47bf-b4b2-071e8b68570a","publishedId":"RWMBSAxq","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2018-07-12T20:10:29.000Z"},"item":[{"name":"Batch Requests","item":[{"name":"Batch Request","id":"00ba5a91-db5a-43b7-a5ab-2f0b2cccde78","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n    \"requests\": [\n        {\n            \"method\": \"GET\",\n            \"request_id\": \"ABC\",\n            \"url\": \"/api/v2/saved_comments/{{saved_comment_id}}\",\n            \"body\": {}\n        },\n        {\n            \"method\": \"POST\",\n            \"request_id\": \"DEF\",\n            \"url\": \"/api/v2/saved_comment_categories\",\n            \"body\": {\n                \"saved_comment_category\": {\n                    \"uuid\": \"a83a9a90-86f7-0136-cce4-aaaaed110002\",\n                    \"team_id\": 31809,\n                    \"name\": \"Kitchen\",\n                    \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n                    \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n                }            \n            }\n        }\n    ]\n}"},"url":"https://{{URL}}/api/v2/batch","description":"<p> The batch request API allows you to perform multiple API requests through a single network transaction by providing an array of request objects. The batch response will include an array of the individual responses, along with an optional request ID that you can specify.</p>\n","urlObject":{"protocol":"https","path":["api","v2","batch"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"8772b700-8f2b-4858-a41b-4ce0015102c7","name":"Batch Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text","disabled":false},{"key":"Accept","value":"application/json","type":"text","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","type":"text","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","type":"text","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","type":"text","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","type":"text","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","type":"text","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","type":"text","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n    \"requests\": [\n        {\n            \"method\": \"GET\",\n            \"request_id\": \"ABC\",\n            \"url\": \"/api/v2/saved_comments/{{saved_comment_id}}\",\n            \"body\": {}\n        },\n        {\n            \"method\": \"POST\",\n            \"request_id\": \"DEF\",\n            \"url\": \"/api/v2/saved_comment_categories\",\n            \"body\": {\n                \"saved_comment_category\": {\n                    \"uuid\": \"a83a9a90-86f7-0136-cce4-aaaaed110002\",\n                    \"team_id\": 31809,\n                    \"name\": \"Kitchen\",\n                    \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n                    \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n                }            \n            }\n        }\n    ]\n}"},"url":"https://{{URL}}/api/v2/batch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"466","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 02 Oct 2018 15:53:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5","name":"Server","description":"A name for the server"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5","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)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"cVVDQXhxZFNiUUc4dmR4VDlBOGpRakhGZlZaVDBaNW1qeGR0Y1lyZUxsc3YwZG0zT0FvTm9ybzlja2x6bWJEbC9NRzhVT3p0MGpRREU3UnlHVnRvcm80YjBvSU5HaDh1WUl1NGVoQlBZbndsMGxIWi8rMUtlSnRCV1NISndXa3ZnTUh4dU9jbUhjZ2RXME1TQ3RibUZnPT0tLWRlQ2FDUVZwYmFyMitDeUJ5emNEREE9PQ%3D%3D--f8fb605e41c4e754ead850c91f551e9b84fc35f2","key":"_lasso_session"}],"responseTime":null,"body":"{\"responses\":[{\"status\":200,\"response\":{\"text\":\"The siding is damaged\",\"saved_comment_type_id\":\"a83a9a90-86f7-0136-cce4-0242ac110002\",\"id\":229425,\"uuid\":\"a84056d0-86f7-0136-cce7-0242ac110002\",\"team_id\":31809,\"transaction_key\":\"dc7e01a0-879a-0136-d86a-deadac110003\",\"created_on_device_uuid\":null,\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T15:52:16.000Z\",\"created_at\":\"2018-08-20T22:38:18.000Z\",\"updated_at\":\"2018-08-22T15:52:16.000Z\",\"discarded_at\":\"2018-08-21T18:06:33.000Z\"},\"request_id\":\"ABC\"},{\"status\":200,\"response\":{\"name\":\"Kitchen\",\"id\":493,\"uuid\":\"a83a9a90-86f7-0136-cce4-aaaaed110002\",\"team_id\":31809,\"transaction_key\":\"a83d8f00-86f7-0136-cce6-0242ac110002\",\"created_on_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-10-02T15:53:41.000Z\",\"updated_at\":\"2018-10-02T15:53:41.000Z\",\"discarded_at\":null,\"message\":\"Saved comment category created\"},\"request_id\":\"DEF\"}]}"}],"_postman_id":"00ba5a91-db5a-43b7-a5ab-2f0b2cccde78"}],"id":"73732d0d-1381-474f-afce-57afc91803a0","_postman_id":"73732d0d-1381-474f-afce-57afc91803a0","description":""},{"name":"Agreements","item":[{"name":"List Agreements","id":"024aafbc-7676-4d9b-aabb-a7bd75cf90b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/agreements?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","agreements"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"024aafbc-7676-4d9b-aabb-a7bd75cf90b1"},{"name":"Get Agreement","id":"9cbc22e2-6c1f-4e23-8f0e-c681f0758fb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/agreements/{{agreement_id}}","urlObject":{"protocol":"https","path":["api","v2","agreements","{{agreement_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9cbc22e2-6c1f-4e23-8f0e-c681f0758fb8"},{"name":"Create Agreement","id":"d68e87cd-96a4-4486-b308-f567adf2825c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"agreement\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/agreements","urlObject":{"protocol":"https","path":["api","v2","agreements"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d68e87cd-96a4-4486-b308-f567adf2825c"},{"name":"Delete Agreement","id":"5df06c73-bdec-4e00-a887-4d4f73167d51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/agreements/{{agreement_id}}","urlObject":{"protocol":"https","path":["api","v2","agreements","{{agreement_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5df06c73-bdec-4e00-a887-4d4f73167d51"},{"name":"Update Agreement","id":"df7e59dc-18b8-4411-8764-50f840a8a703","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"agreement\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/agreements/{{agreement_id}}","urlObject":{"protocol":"https","path":["api","v2","agreements","{{agreement_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"df7e59dc-18b8-4411-8764-50f840a8a703"}],"id":"e6d3a15f-ac9c-461f-8b14-4d15ac3242ea","_postman_id":"e6d3a15f-ac9c-461f-8b14-4d15ac3242ea","description":""},{"name":"Comments","item":[{"name":"List Comments","id":"01bc0ac4-b5f6-4f3a-a78d-9dcc68b9cf9d","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/comments?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","comments"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"01bc0ac4-b5f6-4f3a-a78d-9dcc68b9cf9d"},{"name":"Get Comment","id":"d2365e79-8817-429f-8ee2-021a9ec1f708","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/comments/{{comment_id}}","urlObject":{"protocol":"https","path":["api","v2","comments","{{comment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2365e79-8817-429f-8ee2-021a9ec1f708"},{"name":"Create Comment","id":"6c256f4d-8f59-4b22-91be-93fc49f0b38a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"comment\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/comments","urlObject":{"protocol":"https","path":["api","v2","comments"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c256f4d-8f59-4b22-91be-93fc49f0b38a"},{"name":"Delete Comment","id":"17a36e77-45fe-44ed-a05d-3bdc3e607675","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/comments/{{comment_id}}","urlObject":{"protocol":"https","path":["api","v2","comments","{{comment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"17a36e77-45fe-44ed-a05d-3bdc3e607675"},{"name":"Update Comment","id":"d04a537e-051f-43de-9f44-e959cace06dc","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"comment\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/comments/{{comment_id}}","urlObject":{"protocol":"https","path":["api","v2","comments","{{comment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d04a537e-051f-43de-9f44-e959cace06dc"}],"id":"47cfca82-ee7f-4775-9cfb-6eb9036ec93f","_postman_id":"47cfca82-ee7f-4775-9cfb-6eb9036ec93f","description":""},{"name":"Condition Ratings","item":[{"name":"List Condition Ratings","id":"81363efc-7b7d-4744-9657-33e84d53c0dd","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/condition_ratings?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","condition_ratings"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"81363efc-7b7d-4744-9657-33e84d53c0dd"},{"name":"Get Condition Rating","id":"52fa7990-1c66-43f2-a0a9-25f9167fdf5a","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/condition_ratings/{{condition_rating_id}}","urlObject":{"protocol":"https","path":["api","v2","condition_ratings","{{condition_rating_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"52fa7990-1c66-43f2-a0a9-25f9167fdf5a"},{"name":"Create Condition Rating","id":"d4315a0f-7cc7-487c-8fca-4f18985ce49c","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"condition_rating\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/condition_ratings","urlObject":{"protocol":"https","path":["api","v2","condition_ratings"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d4315a0f-7cc7-487c-8fca-4f18985ce49c"},{"name":"Delete Condition Rating","id":"00b88665-b6f1-4266-bda6-8c4612a871b4","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/condition_ratings/{{condition_rating_id}}","urlObject":{"protocol":"https","path":["api","v2","condition_ratings","{{condition_rating_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"00b88665-b6f1-4266-bda6-8c4612a871b4"},{"name":"Update Condition Rating","id":"3843ef8f-5cd2-4ae4-a7df-f09d8d50b644","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"condition_rating\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/condition_ratings/{{condition_rating_id}}","urlObject":{"protocol":"https","path":["api","v2","condition_ratings","{{condition_rating_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3843ef8f-5cd2-4ae4-a7df-f09d8d50b644"}],"id":"95df6d80-a795-4996-94f9-8f652b1e4695","_postman_id":"95df6d80-a795-4996-94f9-8f652b1e4695","description":""},{"name":"Conflicts","item":[{"name":"List Conflicts","id":"158282dc-97d5-4e91-8c4b-91ec54a53c9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/conflicts?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","conflicts"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"158282dc-97d5-4e91-8c4b-91ec54a53c9c"},{"name":"Get Conflict","id":"3ae7f525-7581-4a0c-80be-c359375aefc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/conflicts/{{conflict_id}}","urlObject":{"protocol":"https","path":["api","v2","conflicts","{{conflict_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ae7f525-7581-4a0c-80be-c359375aefc4"},{"name":"Create Conflict","id":"4af11c2e-c671-4c6d-b6c9-76ef4f0fcea3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"conflict\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/conflicts","urlObject":{"protocol":"https","path":["api","v2","conflicts"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4af11c2e-c671-4c6d-b6c9-76ef4f0fcea3"},{"name":"Delete Conflict","id":"1ce0c99a-4377-4156-b942-e914c15e48c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/conflicts/{{conflict_id}}","urlObject":{"protocol":"https","path":["api","v2","conflicts","{{conflict_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ce0c99a-4377-4156-b942-e914c15e48c2"},{"name":"Update Conflict","id":"7b62b3d9-3f76-44f5-8f86-f9c26cfe116a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"conflict\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/conflicts/{{conflict_id}}","urlObject":{"protocol":"https","path":["api","v2","conflicts","{{conflict_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b62b3d9-3f76-44f5-8f86-f9c26cfe116a"}],"id":"1c079a35-3287-4e98-b40d-d6e249ebfb0c","_postman_id":"1c079a35-3287-4e98-b40d-d6e249ebfb0c","description":""},{"name":"Contact Roles","item":[{"name":"List Contact Roles","id":"419f4311-fd4e-4b93-84d9-46b0dcc79f4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/contact_roles?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","contact_roles"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"419f4311-fd4e-4b93-84d9-46b0dcc79f4f"},{"name":"Get Contact Role","id":"9a6dae83-f9e1-48f0-8dfe-efdefccf8338","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/contact_roles/{{contact_role_id}}","description":"<p>Include the parameter 'expand' (with any value) for the associated job info records to be included in the response.</p>\n","urlObject":{"protocol":"https","path":["api","v2","contact_roles","{{contact_role_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a6dae83-f9e1-48f0-8dfe-efdefccf8338"},{"name":"Create Contact Role","id":"81ab368c-a3b0-495d-bf30-b07e3700e3f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"contact_role\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/contact_roles","urlObject":{"protocol":"https","path":["api","v2","contact_roles"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81ab368c-a3b0-495d-bf30-b07e3700e3f3"},{"name":"Delete Contact Role","id":"60a4fdfb-2925-4bf7-9b05-36d9260a8a86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/contact_roles/{{contact_role_id}}","urlObject":{"protocol":"https","path":["api","v2","contact_roles","{{contact_role_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"60a4fdfb-2925-4bf7-9b05-36d9260a8a86"},{"name":"Update Contact Role","id":"5d2a6cd5-d681-42fb-87d7-9d4a33c14c34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"contact_role\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/contact_roles/{{contact_role_id}}","urlObject":{"protocol":"https","path":["api","v2","contact_roles","{{contact_role_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5d2a6cd5-d681-42fb-87d7-9d4a33c14c34"}],"id":"c0df1762-5147-412b-8376-61f54761d7c2","_postman_id":"c0df1762-5147-412b-8376-61f54761d7c2","description":""},{"name":"Discounts","item":[{"name":"List Discounts","id":"ab108d90-854c-4574-85ef-9c53d656070c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/discounts?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","discounts"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"ab108d90-854c-4574-85ef-9c53d656070c"},{"name":"Get Discount","id":"6c6faf3a-8eb7-4e10-9f5b-a278090b1013","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/discounts/{{discount_id}}","urlObject":{"protocol":"https","path":["api","v2","discounts","{{discount_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c6faf3a-8eb7-4e10-9f5b-a278090b1013"},{"name":"Create Discount","id":"15a1192b-bd9a-4c78-bfe4-4a61a01d6e5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"discount\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/discounts","urlObject":{"protocol":"https","path":["api","v2","discounts"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"15a1192b-bd9a-4c78-bfe4-4a61a01d6e5a"},{"name":"Delete Discount","id":"334ca5f5-1af6-49fb-8baa-62f5f90972d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/discounts/{{discount_id}}","urlObject":{"protocol":"https","path":["api","v2","discounts","{{discount_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"334ca5f5-1af6-49fb-8baa-62f5f90972d9"},{"name":"Update Discount","id":"bfbed95a-132d-44e7-84cf-555ca4477bf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"discount\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/discounts/{{discount_id}}","urlObject":{"protocol":"https","path":["api","v2","discounts","{{discount_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bfbed95a-132d-44e7-84cf-555ca4477bf5"}],"id":"eabd43d6-912c-4fa3-ab43-fc857009f05d","_postman_id":"eabd43d6-912c-4fa3-ab43-fc857009f05d","description":""},{"name":"Fees","item":[{"name":"List Fees","id":"76eab54b-9fd4-4d31-adde-074746b65483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/fees?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","fees"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"76eab54b-9fd4-4d31-adde-074746b65483"},{"name":"Get Fee","id":"f37cc4cb-cc1a-4a43-b88d-367826071e59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/fees/{{fee_id}}","urlObject":{"protocol":"https","path":["api","v2","fees","{{fee_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f37cc4cb-cc1a-4a43-b88d-367826071e59"},{"name":"Create Fee","id":"2b905bbd-1394-4f60-9dff-9c10e15f604a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"fee\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/fees","urlObject":{"protocol":"https","path":["api","v2","fees"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b905bbd-1394-4f60-9dff-9c10e15f604a"},{"name":"Delete Fee","id":"117d0363-2f7f-436f-a33a-3c8c3d9e72c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/fees/{{fee_id}}","urlObject":{"protocol":"https","path":["api","v2","fees","{{fee_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"117d0363-2f7f-436f-a33a-3c8c3d9e72c5"},{"name":"Update Fee","id":"3083e18a-f040-47cf-932d-3ecb5145bdef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"fee\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/fees/{{fee_id}}","urlObject":{"protocol":"https","path":["api","v2","fees","{{fee_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3083e18a-f040-47cf-932d-3ecb5145bdef"}],"id":"fbbc3163-07c8-4467-ac35-eaf8e7fd2766","_postman_id":"fbbc3163-07c8-4467-ac35-eaf8e7fd2766","description":""},{"name":"Fee Options","item":[{"name":"List Fee Options","id":"dd113d6f-4619-4bc8-95e2-892c070ca430","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/fee_options?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","fee_options"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"dd113d6f-4619-4bc8-95e2-892c070ca430"},{"name":"Get Fee Option","id":"13cc4e65-2593-481e-b044-a1b8a0cab212","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/fee_options/{{ffee_option_id}}","urlObject":{"protocol":"https","path":["api","v2","fee_options","{{ffee_option_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"13cc4e65-2593-481e-b044-a1b8a0cab212"},{"name":"Create Fee Option","id":"639b68a1-60e7-4a7b-a371-b18f08330f38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"fee_option\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/fee_options","urlObject":{"protocol":"https","path":["api","v2","fee_options"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"639b68a1-60e7-4a7b-a371-b18f08330f38"},{"name":"Delete Fee Option","id":"c1c6eb6e-2c86-4fb5-804a-26cc1e495d4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/fee_options/{{fee_option_id}}","urlObject":{"protocol":"https","path":["api","v2","fee_options","{{fee_option_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1c6eb6e-2c86-4fb5-804a-26cc1e495d4c"},{"name":"Update Fee Option","id":"cf873620-31e3-46c2-a680-beb4066f8ed2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"fee_option\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/fee_options/{{fee_option_id}}","urlObject":{"protocol":"https","path":["api","v2","fee_options","{{fee_option_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf873620-31e3-46c2-a680-beb4066f8ed2"}],"id":"3fd5d467-b0dd-4898-967a-9e0b4c97d2ff","_postman_id":"3fd5d467-b0dd-4898-967a-9e0b4c97d2ff","description":""},{"name":"Invoices","item":[{"name":"List Invoices","id":"622e38c1-b62b-43ee-9d5e-ac8b5d187b98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/invoices?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","invoices"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"622e38c1-b62b-43ee-9d5e-ac8b5d187b98"},{"name":"Get Invoice","id":"13a6a8e2-5abd-4262-a521-c3627a7f0b5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/invoices/{{invoice_id}}","urlObject":{"protocol":"https","path":["api","v2","invoices","{{invoice_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"13a6a8e2-5abd-4262-a521-c3627a7f0b5f"},{"name":"Create Invoice","id":"11097d88-2f2c-4c6c-bbb9-c986be90ce53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"invoice\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/invoices","urlObject":{"protocol":"https","path":["api","v2","invoices"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"11097d88-2f2c-4c6c-bbb9-c986be90ce53"},{"name":"Delete Invoice","id":"8e5b150f-6c92-403e-9435-325c903fa5b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/invoices/{{invoice_id}}","urlObject":{"protocol":"https","path":["api","v2","invoices","{{invoice_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e5b150f-6c92-403e-9435-325c903fa5b5"},{"name":"Update Invoice","id":"0c5c334a-7d47-4a73-9253-fb2923a66f57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"invoice\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/invoices/{{invoice_id}}","urlObject":{"protocol":"https","path":["api","v2","invoices","{{invoice_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c5c334a-7d47-4a73-9253-fb2923a66f57"}],"id":"ab044999-74a4-4293-a58d-e3b46a1cf105","_postman_id":"ab044999-74a4-4293-a58d-e3b46a1cf105","description":""},{"name":"Item Options","item":[{"name":"List Item Options","id":"e8b1347c-9ca6-48b1-8a82-2b9c70313469","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/item_options?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","item_options"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"e8b1347c-9ca6-48b1-8a82-2b9c70313469"},{"name":"Get Item Option","id":"7bf5366f-5443-4a79-8a36-6f4205450be5","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/item_options/{{item_options_id}}","urlObject":{"protocol":"https","path":["api","v2","item_options","{{item_options_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7bf5366f-5443-4a79-8a36-6f4205450be5"},{"name":"Create Item Option","id":"c75f02f3-f583-46b3-9a64-91de3c78d7c9","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"item_option\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/item_options","urlObject":{"protocol":"https","path":["api","v2","item_options"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c75f02f3-f583-46b3-9a64-91de3c78d7c9"},{"name":"Delete Item Option","id":"eedb730f-2963-4528-9996-f49ca576ed69","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/item_options/{{item_options_id}}","urlObject":{"protocol":"https","path":["api","v2","item_options","{{item_options_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eedb730f-2963-4528-9996-f49ca576ed69"},{"name":"Update Item Option","id":"af3e4591-530a-4435-be9f-b2ae24f64a2e","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"item_option\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/item_options/{{item_options_id}}","urlObject":{"protocol":"https","path":["api","v2","item_options","{{item_options_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"af3e4591-530a-4435-be9f-b2ae24f64a2e"}],"id":"06d32489-0c02-447f-8b22-56ac4a608eb1","_postman_id":"06d32489-0c02-447f-8b22-56ac4a608eb1","description":""},{"name":"Items","item":[{"name":"List Items","id":"a9e04a3c-dbf8-4169-9690-7ecb21d1f1c6","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/items?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","items"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"a9e04a3c-dbf8-4169-9690-7ecb21d1f1c6"},{"name":"Get Item","id":"749531b0-aefa-4e4e-b1f7-ac778830cf88","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/items/{{item_id}}","urlObject":{"protocol":"https","path":["api","v2","items","{{item_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"749531b0-aefa-4e4e-b1f7-ac778830cf88"},{"name":"Create Item","id":"9ba31f3b-4123-409c-a82c-8afc1203c904","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"item\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/items","urlObject":{"protocol":"https","path":["api","v2","items"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ba31f3b-4123-409c-a82c-8afc1203c904"},{"name":"Delete Item","id":"12cb6a7d-e149-42ff-8c41-c2637397c61f","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/items/{{item_id}}","urlObject":{"protocol":"https","path":["api","v2","items","{{item_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"12cb6a7d-e149-42ff-8c41-c2637397c61f"},{"name":"Update Item","id":"70486736-311c-4739-b79a-54fe322982de","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"item\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/items/{{item_id}}","urlObject":{"protocol":"https","path":["api","v2","items","{{item_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"70486736-311c-4739-b79a-54fe322982de"}],"id":"9c940a3e-bc13-493a-a8bc-e44bac651c75","_postman_id":"9c940a3e-bc13-493a-a8bc-e44bac651c75","description":""},{"name":"Job Agreements","item":[{"name":"List Job Agreements","id":"17a13e2a-567d-4cdc-855e-21500f377b16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/job_agreements?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","job_agreements"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"17a13e2a-567d-4cdc-855e-21500f377b16"},{"name":"Get Job Agreement","id":"a2e96343-ccbc-440a-af21-09091be5fac7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/job_agreements/{{job_agreement_id}}","urlObject":{"protocol":"https","path":["api","v2","job_agreements","{{job_agreement_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2e96343-ccbc-440a-af21-09091be5fac7"},{"name":"Create Job Agreement","id":"7baba738-f308-4533-9cfb-2c7a6fc3eb8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_agreement\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_agreements","urlObject":{"protocol":"https","path":["api","v2","job_agreements"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7baba738-f308-4533-9cfb-2c7a6fc3eb8b"},{"name":"Delete Job Agreement","id":"8fafe91c-eeaf-4691-a4a7-d214f82128b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/job_agreements/{{job_agreement_id}}","urlObject":{"protocol":"https","path":["api","v2","job_agreements","{{job_agreement_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8fafe91c-eeaf-4691-a4a7-d214f82128b1"},{"name":"Update Job Agreement","id":"7188953b-d127-404e-9dab-d3dd1e8a95c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_agreement\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_agreements/{{job_agreement_id}}","urlObject":{"protocol":"https","path":["api","v2","job_agreements","{{job_agreement_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7188953b-d127-404e-9dab-d3dd1e8a95c0"}],"id":"8e98e994-6e9a-4af2-a8ae-e26cf2340df3","_postman_id":"8e98e994-6e9a-4af2-a8ae-e26cf2340df3","description":""},{"name":"Job Assignments","item":[{"name":"List Job Assignments","id":"cb65e95f-2bd2-49e5-a393-0a74dca87cb8","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/job_assignments?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","job_assignments"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"cb65e95f-2bd2-49e5-a393-0a74dca87cb8"},{"name":"Get Job Assignment","id":"6e463b2c-5b44-4ae1-9784-26bf632f4536","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/job_assignments/{{job_assignment_id}}","urlObject":{"protocol":"https","path":["api","v2","job_assignments","{{job_assignment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e463b2c-5b44-4ae1-9784-26bf632f4536"},{"name":"Create Job Assignment","id":"96194352-5d99-4285-bff9-a563d6f526eb","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_assignment\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_assignments","urlObject":{"protocol":"https","path":["api","v2","job_assignments"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"96194352-5d99-4285-bff9-a563d6f526eb"},{"name":"Delete Job Assignment","id":"985d954d-b4b4-47de-b1aa-579ab895a12f","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/job_assignments/{{job_assignment_id}}","urlObject":{"protocol":"https","path":["api","v2","job_assignments","{{job_assignment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"985d954d-b4b4-47de-b1aa-579ab895a12f"},{"name":"Update Job Assignment","id":"4f2c9df8-1bbe-46cc-9573-9fd66cbab75c","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_assignment\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_assignments/{{job_assignment_id}}","urlObject":{"protocol":"https","path":["api","v2","job_assignments","{{job_assignment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f2c9df8-1bbe-46cc-9573-9fd66cbab75c"}],"id":"6888f61a-4bc8-4c40-9e1e-2b87a46cfba3","_postman_id":"6888f61a-4bc8-4c40-9e1e-2b87a46cfba3","description":""},{"name":"Job Discounts","item":[{"name":"List Job Discounts","id":"f1d36ba3-84ee-4ca7-8270-a14a9eb49942","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/job_discounts?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","job_discounts"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"f1d36ba3-84ee-4ca7-8270-a14a9eb49942"},{"name":"Get Job Discount","id":"df1bd75f-5bfc-491c-b4e7-95c89461a0be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/job_discounts/{{job_discount_id}}","urlObject":{"protocol":"https","path":["api","v2","job_discounts","{{job_discount_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"df1bd75f-5bfc-491c-b4e7-95c89461a0be"},{"name":"Create Job Discount","id":"119a0542-69a4-4e77-a8da-8aee28146ee7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_discount\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_discounts","urlObject":{"protocol":"https","path":["api","v2","job_discounts"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"119a0542-69a4-4e77-a8da-8aee28146ee7"},{"name":"Delete Job Discount","id":"3a982366-551f-43db-899e-ca4512aa1a00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/job_discounts/{{job_discount_id}}","urlObject":{"protocol":"https","path":["api","v2","job_discounts","{{job_discount_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a982366-551f-43db-899e-ca4512aa1a00"},{"name":"Update Job Discount","id":"b4ea62ee-1779-4902-8ba7-73593bc48462","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_discount\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_discounts/{{job_discount_id}}","urlObject":{"protocol":"https","path":["api","v2","job_discounts","{{job_discount_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b4ea62ee-1779-4902-8ba7-73593bc48462"}],"id":"8385a80e-bf1c-4f4e-8098-e89ef3f91391","_postman_id":"8385a80e-bf1c-4f4e-8098-e89ef3f91391","description":""},{"name":"Job People","item":[{"name":"List Job People","id":"4d852133-b599-4a96-9041-3e418e104a70","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/job_people?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","job_people"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"4d852133-b599-4a96-9041-3e418e104a70"},{"name":"Get Job Person","id":"6a5ccb0a-c5c8-417e-8490-d4e6db1a3557","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/job_people/{{job_person_id}}","description":"<p>Include the parameter 'expand' (with any value) for the associated job person email and job person phone records to be included in the response.</p>\n","urlObject":{"protocol":"https","path":["api","v2","job_people","{{job_person_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a5ccb0a-c5c8-417e-8490-d4e6db1a3557"},{"name":"Create Job Person","id":"e3971435-04c7-4304-9d28-5b6fc8b7fa9a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_person\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_people","urlObject":{"protocol":"https","path":["api","v2","job_people"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e3971435-04c7-4304-9d28-5b6fc8b7fa9a"},{"name":"Delete Job Person","id":"c35268dc-0c2c-4b68-ab07-b807f3af31cb","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/job_people/{{job_person_id}}","urlObject":{"protocol":"https","path":["api","v2","job_people","{{job_person_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c35268dc-0c2c-4b68-ab07-b807f3af31cb"},{"name":"Update Job Person","id":"5dce7ca0-44d7-4647-b004-0938b943cb52","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_person\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_people/{{job_person_id}}","urlObject":{"protocol":"https","path":["api","v2","job_people","{{job_person_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5dce7ca0-44d7-4647-b004-0938b943cb52"}],"id":"7c892cb9-8e40-4221-b4af-34f1f1ce7174","_postman_id":"7c892cb9-8e40-4221-b4af-34f1f1ce7174","description":""},{"name":"Job Person Emails","item":[{"name":"List Job Person Email","id":"d3cbf3b3-5f6a-400e-b964-6a81f3c85533","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/job_person_emails?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","job_person_emails"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"d3cbf3b3-5f6a-400e-b964-6a81f3c85533"},{"name":"Get Job Person Email","id":"8d3d820c-05e6-4d03-874e-2227761f62e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/job_person_emails/{{job_person_email_id}}","urlObject":{"protocol":"https","path":["api","v2","job_person_emails","{{job_person_email_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d3d820c-05e6-4d03-874e-2227761f62e7"},{"name":"Create Job Person Email","id":"fd02879e-46e2-41d2-ac8c-1349b265c603","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_person_email\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_person_emails","urlObject":{"protocol":"https","path":["api","v2","job_person_emails"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd02879e-46e2-41d2-ac8c-1349b265c603"},{"name":"Delete Job Person Email","id":"dce8cb4a-0772-4a8e-9af6-5aa7233ce7ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/job_person_emails/{{job_person_email_id}}","urlObject":{"protocol":"https","path":["api","v2","job_person_emails","{{job_person_email_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dce8cb4a-0772-4a8e-9af6-5aa7233ce7ab"},{"name":"Update Job Person Email","id":"b8b3ac5f-9cf4-419f-9cde-7cd1901f7498","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_person_email\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_person_emails/{{job_person_email_id}}","urlObject":{"protocol":"https","path":["api","v2","job_person_emails","{{job_person_email_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8b3ac5f-9cf4-419f-9cde-7cd1901f7498"}],"id":"d5eef8ec-2c4d-4ca6-ba93-e6f74e589605","_postman_id":"d5eef8ec-2c4d-4ca6-ba93-e6f74e589605","description":""},{"name":"Job Person Phones","item":[{"name":"List Job People","id":"00e1f72d-bb32-49d2-a205-5b46cf35b508","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/job_person_phones?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","job_person_phones"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"00e1f72d-bb32-49d2-a205-5b46cf35b508"},{"name":"Get Job Person","id":"7081f20b-bc9a-4c04-9d84-80783ae2b690","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/job_person_phones/{{job_person_phone_id}}","urlObject":{"protocol":"https","path":["api","v2","job_person_phones","{{job_person_phone_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7081f20b-bc9a-4c04-9d84-80783ae2b690"},{"name":"Create Job Person","id":"bc8d2db1-55cd-494f-992b-1b1d506bf3f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_person_phone\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_person_phones","urlObject":{"protocol":"https","path":["api","v2","job_person_phones"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc8d2db1-55cd-494f-992b-1b1d506bf3f8"},{"name":"Delete Job Person","id":"d0cc21b1-2ff5-403a-acf2-573259d655ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/job_person_phones/{{job_person_phone_id}}","urlObject":{"protocol":"https","path":["api","v2","job_person_phones","{{job_person_phone_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d0cc21b1-2ff5-403a-acf2-573259d655ed"},{"name":"Update Job Person","id":"48e81275-43d2-44e7-b66d-d12d172b664e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_person_phone\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_person_phones/{{job_person_phone_id}}","urlObject":{"protocol":"https","path":["api","v2","job_person_phones","{{job_person_phone_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"48e81275-43d2-44e7-b66d-d12d172b664e"}],"id":"6d6e79e9-d5e8-40e8-b2c0-6c02ff613fec","_postman_id":"6d6e79e9-d5e8-40e8-b2c0-6c02ff613fec","description":""},{"name":"Job Services","item":[{"name":"List Job Services","id":"d1f8b2ad-8c46-479d-bc8c-29d98c637a8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/job_services?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","job_services"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"d1f8b2ad-8c46-479d-bc8c-29d98c637a8e"},{"name":"Get Job Service","id":"8d4b1cc5-6f97-46a6-8e89-029e1cb676ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/job_services/{{job_service_id}}","urlObject":{"protocol":"https","path":["api","v2","job_services","{{job_service_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d4b1cc5-6f97-46a6-8e89-029e1cb676ac"},{"name":"Create Job Service","id":"a2276c60-6b05-4237-b80c-a8e4ee6bcff0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_service\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_services","urlObject":{"protocol":"https","path":["api","v2","job_services"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2276c60-6b05-4237-b80c-a8e4ee6bcff0"},{"name":"Delete Job Service","id":"0e9bfba0-a1e0-4b16-bd71-255d33af0ce6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/job_services/{{job_service_id}}","urlObject":{"protocol":"https","path":["api","v2","job_services","{{job_service_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e9bfba0-a1e0-4b16-bd71-255d33af0ce6"},{"name":"Update Job Service","id":"69ff929d-b67b-4ee7-923d-25f162973ec8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_service\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_services/{{job_service_id}}","urlObject":{"protocol":"https","path":["api","v2","job_services","{{job_service_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"69ff929d-b67b-4ee7-923d-25f162973ec8"}],"id":"f776ca9b-7a5d-4b22-bf92-27a5548de01d","_postman_id":"f776ca9b-7a5d-4b22-bf92-27a5548de01d","description":""},{"name":"Job Tax Rates","item":[{"name":"List Job Tax Rates","id":"2fe69379-d51e-4934-bafb-ea417bc24cda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/job_tax_rates?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","job_tax_rates"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"2fe69379-d51e-4934-bafb-ea417bc24cda"},{"name":"Get Job Tax Rate","id":"526965ca-fb8c-49a7-b309-828c08138469","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/job_tax_rates/{{job_tax_rate_id}}","urlObject":{"protocol":"https","path":["api","v2","job_tax_rates","{{job_tax_rate_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"526965ca-fb8c-49a7-b309-828c08138469"},{"name":"Create Job Tax Rate","id":"23c075e6-d193-4251-9a6a-b3726cc18e98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_tax_rate\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_tax_rates","urlObject":{"protocol":"https","path":["api","v2","job_tax_rates"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"23c075e6-d193-4251-9a6a-b3726cc18e98"},{"name":"Delete Job Tax Rate","id":"b784c771-5003-4d91-a7a4-df471885f3dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/job_tax_rates/{{job_tax_rate_id}}","urlObject":{"protocol":"https","path":["api","v2","job_tax_rates","{{job_tax_rate_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b784c771-5003-4d91-a7a4-df471885f3dc"},{"name":"Update Job Tax Rate","id":"bce1866e-e90a-4434-a51d-5af1cf34bcfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"job_tax_rate\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/job_tax_rates/{{job_tax_rate_id}}","urlObject":{"protocol":"https","path":["api","v2","job_tax_rates","{{job_tax_rate_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bce1866e-e90a-4434-a51d-5af1cf34bcfa"}],"id":"c6e77b88-35f0-424d-a229-57b255e33510","_postman_id":"c6e77b88-35f0-424d-a229-57b255e33510","description":""},{"name":"Jobs","item":[{"name":"Events","item":[{"name":"New Event","id":"428384b9-c3f1-464e-856a-65605944354c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/jobs/{{JOB_UUID}}/events/new?triggers[]=1&triggers[]=5","description":"<p>This endpoint allows for a remote device to query the server and see if any messages will be sent to any <code>JobPeople</code> for a given event trigger. This can be used to build props in applications to confirm with a user if they would like messages to be sent when a certain event occurs.</p>\n<p>The API takes an array of events trigger values and returns a structure listing each <code>JobPerson</code> that would receive a message if the event were to occur.</p>\n<p>Valid values for the trigger are:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>TRIGGER_JOB_CONFIRMED                 = 0\nTRIGGER_JOB_RESCHEDULED               = 1\nTRIGGER_JOB_CANCELED                  = 2\nTRIGGER_JOB_INSPECTION_DATE           = 3\nTRIGGER_RESEND_CONFIRMATION           = 4\nTRIGGER_AGREEMENT_SIGNATURE_REQUIRED  = 5\nTRIGGER_PAYMENT_REQUIRED              = 6\n\n</code></pre>","urlObject":{"protocol":"https","path":["api","v2","jobs","{{JOB_UUID}}","events","new"],"host":["{{URL}}"],"query":[{"key":"triggers[]","value":"1"},{"key":"triggers[]","value":"5"}],"variable":[]}},"response":[],"_postman_id":"428384b9-c3f1-464e-856a-65605944354c"}],"id":"a05cccdd-12e2-4e91-b71d-a5fb66deabef","_postman_id":"a05cccdd-12e2-4e91-b71d-a5fb66deabef","description":""},{"name":"List Jobs","id":"636ffb02-5b0d-4308-96c4-240e768917e3","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/jobs?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","jobs"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"636ffb02-5b0d-4308-96c4-240e768917e3"},{"name":"List Job Document Data","id":"1b7488f7-9508-4602-bb84-fc4343c1ab0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/jobs/{{job_id}}/document_data","urlObject":{"protocol":"https","path":["api","v2","jobs","{{job_id}}","document_data"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b7488f7-9508-4602-bb84-fc4343c1ab0c"},{"name":"Get Job","id":"81a7b71a-b508-4018-a453-e3277d759eca","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/jobs/{{job_id}}","description":"<p>Include the parameter 'expand' (with any value) for the associated job info records to be included in the response.</p>\n","urlObject":{"protocol":"https","path":["api","v2","jobs","{{job_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81a7b71a-b508-4018-a453-e3277d759eca"},{"name":"Create Job","id":"699e9d3a-845e-44a2-bac2-ac3cf263a6c4","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"job\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/jobs","urlObject":{"protocol":"https","path":["api","v2","jobs"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"699e9d3a-845e-44a2-bac2-ac3cf263a6c4"},{"name":"Delete Job","id":"03c6720f-a588-4c63-92c7-88892559e4af","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/jobs/{{job_id}}","urlObject":{"protocol":"https","path":["api","v2","jobs","{{job_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"03c6720f-a588-4c63-92c7-88892559e4af"},{"name":"Update Job","id":"01acfe0a-6dde-4e00-94d8-2bdac20e0f77","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"job\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/jobs/{{job_id}}","urlObject":{"protocol":"https","path":["api","v2","jobs","{{job_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"01acfe0a-6dde-4e00-94d8-2bdac20e0f77"},{"name":"Confirm Job","id":"6df4762a-c819-4aaf-96d5-d981f6a92a60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"skip_messaging\": 0\n}"},"url":"https://{{URL}}/api/v2/jobs/{{job_id}}/confirm?skip_messaging=1","description":"<p>Transitions a job into the confirmed state and sends messages, triggers webhooks, and runs integrations that have been configured by the user.</p>\n","urlObject":{"protocol":"https","path":["api","v2","jobs","{{job_id}}","confirm"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Use a value of \"1\" if the user has requested that NO messages be sent, or a value of \"0\" if not.</p>\n","type":"text/plain"},"key":"skip_messaging","value":"1"}],"variable":[]}},"response":[],"_postman_id":"6df4762a-c819-4aaf-96d5-d981f6a92a60"},{"name":"Reschedule Job","id":"1d3145a7-fe2e-4fd7-9d8a-78664578214b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"skip_messaging\": 0\n}"},"url":"https://{{URL}}/api/v2/jobs/{{job_id}}/reschedule?skip_messaging=1","description":"<p>Sends messages, triggers webhooks, and runs integrations that have been configured by the user.</p>\n","urlObject":{"protocol":"https","path":["api","v2","jobs","{{job_id}}","reschedule"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Use a value of \"1\" if the user has requested that NO messages be sent, or a value of \"0\" if not.</p>\n","type":"text/plain"},"key":"skip_messaging","value":"1"}],"variable":[]}},"response":[],"_postman_id":"1d3145a7-fe2e-4fd7-9d8a-78664578214b"},{"name":"Share Job","id":"8a02944a-e9b4-4bbe-ac33-88668e9e3f4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":""},"url":"https://{{URL}}/api/v2/jobs/{{job_id}}/share","urlObject":{"protocol":"https","path":["api","v2","jobs","{{job_id}}","share"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a02944a-e9b4-4bbe-ac33-88668e9e3f4a"},{"name":"Cancel Job","id":"14212f06-c803-44db-b9c0-d3ec71f96d2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"skip_messaging\": 0,\n\t\"reason\": \"Financing fell through\"\n}"},"url":"https://{{URL}}/api/v2/jobs/{{job_id}}/cancel?skip_messaging=1&reason=Financing Fell Through","description":"<p>Transitions a job into the canceled state and sends messages, triggers webhooks, and runs integrations that have been configured by the user.</p>\n","urlObject":{"protocol":"https","path":["api","v2","jobs","{{job_id}}","cancel"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Use a value of \"1\" if the user has requested that NO messages be sent, or a value of \"0\" if not.</p>\n","type":"text/plain"},"key":"skip_messaging","value":"1"},{"description":{"content":"<p>An optional string recording the reason the job was canceled for posterity</p>\n","type":"text/plain"},"key":"reason","value":"Financing Fell Through"}],"variable":[]}},"response":[],"_postman_id":"14212f06-c803-44db-b9c0-d3ec71f96d2e"}],"id":"095ac58c-4717-434b-8504-a6ff71a1f782","_postman_id":"095ac58c-4717-434b-8504-a6ff71a1f782","description":""},{"name":"Notes","item":[{"name":"List Notes","id":"b5a70893-e2b5-4c9e-8daa-7f83cdb372c3","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/notes?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","notes"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"b5a70893-e2b5-4c9e-8daa-7f83cdb372c3"},{"name":"Get Note","id":"3d7de138-7871-40f0-9e04-65d91118fc0b","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/notes/{{note_id}}","urlObject":{"protocol":"https","path":["api","v2","notes","{{note_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d7de138-7871-40f0-9e04-65d91118fc0b"},{"name":"Create Note","id":"181344f2-4aa7-4984-9d1d-ca37bdf19271","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"note\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/notes","urlObject":{"protocol":"https","path":["api","v2","notes"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"181344f2-4aa7-4984-9d1d-ca37bdf19271"},{"name":"Delete Note","id":"7d4f6667-1e7b-44fa-b939-a28c7bd47a7d","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/notes/{{note_id}}","urlObject":{"protocol":"https","path":["api","v2","notes","{{note_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d4f6667-1e7b-44fa-b939-a28c7bd47a7d"},{"name":"Update Note","id":"2404c601-1336-4d68-97d5-11dc1cc05598","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"note\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/notes/{{note_id}}","urlObject":{"protocol":"https","path":["api","v2","notes","{{note_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2404c601-1336-4d68-97d5-11dc1cc05598"}],"id":"c699edda-e717-4395-b36c-8a7c56e02d7d","_postman_id":"c699edda-e717-4395-b36c-8a7c56e02d7d","description":""},{"name":"Payments","item":[{"name":"List Payments","id":"e3177516-5eda-4142-880c-0af9f30bc896","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/payments?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","payments"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"e3177516-5eda-4142-880c-0af9f30bc896"},{"name":"Get Payment","id":"a5c315a2-cc9d-4544-9163-c2883594b4b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/payments/{{payment_id}}","urlObject":{"protocol":"https","path":["api","v2","payments","{{payment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5c315a2-cc9d-4544-9163-c2883594b4b6"},{"name":"Create Payment","id":"13c46ab0-0dad-4cc6-9b3b-54291bfd17e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"payment\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/payments","urlObject":{"protocol":"https","path":["api","v2","payments"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"13c46ab0-0dad-4cc6-9b3b-54291bfd17e0"},{"name":"Delete Payment","id":"a60121c4-54b5-4083-9ee4-4dc32267c64e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/payments/{{payment_id}}","urlObject":{"protocol":"https","path":["api","v2","payments","{{payment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a60121c4-54b5-4083-9ee4-4dc32267c64e"},{"name":"Update Payment","id":"7b9ef209-23f2-4b73-9c92-aa63e91e7672","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"payment\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/payments/{{payment_id}}","urlObject":{"protocol":"https","path":["api","v2","payments","{{payment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b9ef209-23f2-4b73-9c92-aa63e91e7672"}],"id":"7b0fd036-cd4f-46b3-af35-1a51a56d1e53","_postman_id":"7b0fd036-cd4f-46b3-af35-1a51a56d1e53","description":""},{"name":"People","item":[{"name":"List People","id":"adbd81ea-a0bf-4971-8e60-dbc2bc9f517a","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/people?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","people"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"adbd81ea-a0bf-4971-8e60-dbc2bc9f517a"},{"name":"Get Person","id":"0f5bf686-ddcf-40f0-92ef-47f20660540e","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/people/{{person_id}}","urlObject":{"protocol":"https","path":["api","v2","people","{{person_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f5bf686-ddcf-40f0-92ef-47f20660540e"},{"name":"Create Person","id":"7e1249fc-24c3-446d-bcd2-ab71ff3a96fe","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"person\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/people","urlObject":{"protocol":"https","path":["api","v2","people"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e1249fc-24c3-446d-bcd2-ab71ff3a96fe"},{"name":"Delete Person","id":"7c172458-d071-498d-a612-174138d30cf2","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/people/{{person_id}}","urlObject":{"protocol":"https","path":["api","v2","people","{{person_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c172458-d071-498d-a612-174138d30cf2"},{"name":"Update Person","id":"4cd730bf-798c-41b8-a00e-1ba19cbb6187","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"person\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/people/{{person_id}}","urlObject":{"protocol":"https","path":["api","v2","people","{{person_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4cd730bf-798c-41b8-a00e-1ba19cbb6187"}],"id":"2dbd794a-762a-4eb8-8a90-a875dd2452b4","_postman_id":"2dbd794a-762a-4eb8-8a90-a875dd2452b4","description":""},{"name":"Person Emails","item":[{"name":"List Person Emails","id":"d989108f-a378-4276-bbed-ed174a4f8e2b","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/person_emails?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","person_emails"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"d989108f-a378-4276-bbed-ed174a4f8e2b"},{"name":"Get Person Email","id":"89a62e78-b71c-41fa-996d-9e09e2960180","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/person_emails/{{person_email_id}}","urlObject":{"protocol":"https","path":["api","v2","person_emails","{{person_email_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"89a62e78-b71c-41fa-996d-9e09e2960180"},{"name":"Create Person Email","id":"4fb24ef4-6f8c-4705-8504-f6acf86f5ee2","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"person_email\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/person_emails","urlObject":{"protocol":"https","path":["api","v2","person_emails"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4fb24ef4-6f8c-4705-8504-f6acf86f5ee2"},{"name":"Delete Person Email","id":"6edc2b18-da0e-4df2-9c20-b37a40af56a6","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/person_emails/{{person_email_id}}","urlObject":{"protocol":"https","path":["api","v2","person_emails","{{person_email_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6edc2b18-da0e-4df2-9c20-b37a40af56a6"},{"name":"Update Person Email","id":"958ac7c1-3691-4151-845a-b1b0c384914c","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"person_email\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/person_emails/{{person_email_id}}","urlObject":{"protocol":"https","path":["api","v2","person_emails","{{person_email_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"958ac7c1-3691-4151-845a-b1b0c384914c"}],"id":"2c1b318d-62d7-4405-9788-f715c98acaed","_postman_id":"2c1b318d-62d7-4405-9788-f715c98acaed","description":""},{"name":"Person Phones","item":[{"name":"List Person Phones","id":"221a3ba0-502f-430a-8772-b2028549b284","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/person_phones?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","person_phones"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"221a3ba0-502f-430a-8772-b2028549b284"},{"name":"Get Person Phone","id":"b87f9046-3a1e-4c2c-b699-1d35e8958b37","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/person_phones/{{person_phone_id}}","urlObject":{"protocol":"https","path":["api","v2","person_phones","{{person_phone_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b87f9046-3a1e-4c2c-b699-1d35e8958b37"},{"name":"Create Person Phone","id":"a8fcf6c9-d5e2-4360-b7d1-46940e142508","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"person_phone\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/person_phones","urlObject":{"protocol":"https","path":["api","v2","person_phones"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8fcf6c9-d5e2-4360-b7d1-46940e142508"},{"name":"Delete Person Phone","id":"fd4a0d1d-0a64-4762-9cdf-da8fd0d94c03","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/person_phones/{{person_phone_id}}","urlObject":{"protocol":"https","path":["api","v2","person_phones","{{person_phone_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd4a0d1d-0a64-4762-9cdf-da8fd0d94c03"},{"name":"Update Person Phone","id":"6328b541-69a3-4873-bd07-6a9827101c5f","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"person_phone\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/person_phones/{{person_phone_id}}","urlObject":{"protocol":"https","path":["api","v2","person_phones","{{person_phone_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6328b541-69a3-4873-bd07-6a9827101c5f"}],"id":"0bf795ba-24d1-4f76-94e2-7e75e3a05cce","_postman_id":"0bf795ba-24d1-4f76-94e2-7e75e3a05cce","description":""},{"name":"Person Roles","item":[{"name":"List Person Roles","id":"f4fb0ff3-767f-48e9-ace2-cd999478fc62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/person_roles?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","person_roles"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"f4fb0ff3-767f-48e9-ace2-cd999478fc62"},{"name":"Get Person Role","id":"983d7185-fae6-4748-9d4b-b2fa6aef1441","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/person_roles/{{person_role_id}}","description":"<p>Include the parameter 'expand' (with any value) for the associated job info records to be included in the response.</p>\n","urlObject":{"protocol":"https","path":["api","v2","person_roles","{{person_role_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"983d7185-fae6-4748-9d4b-b2fa6aef1441"},{"name":"Create Person Role","id":"20cea379-d1ee-41e1-b4bb-b36548db566f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"person_role\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/person_roles","urlObject":{"protocol":"https","path":["api","v2","person_roles"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"20cea379-d1ee-41e1-b4bb-b36548db566f"},{"name":"Delete Person Role","id":"3c7dd6ff-7377-472e-ab91-dfdf09b9d9cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/person_roles/{{person_role_id}}","urlObject":{"protocol":"https","path":["api","v2","person_roles","{{person_role_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c7dd6ff-7377-472e-ab91-dfdf09b9d9cf"},{"name":"Update Person Role","id":"a380a818-67c3-4813-938a-3308c77924ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"person_role\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/person_roles/{{person_role_id}}","urlObject":{"protocol":"https","path":["api","v2","person_roles","{{person_role_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a380a818-67c3-4813-938a-3308c77924ec"}],"id":"3adeffdd-2558-4071-a872-4fb5aa9f3187","_postman_id":"3adeffdd-2558-4071-a872-4fb5aa9f3187","description":""},{"name":"Photo Annotations","item":[{"name":"List Photo Annotations","id":"2a56432c-ee6d-4216-a5da-3a3413223bbe","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/photo_annotations?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","photo_annotations"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"2a56432c-ee6d-4216-a5da-3a3413223bbe"},{"name":"Get Photo Annotation","id":"aac9a19d-73c8-4c98-92ff-2bdcf2a44db1","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/photo_annotations/{{photo_annotation_id}}","urlObject":{"protocol":"https","path":["api","v2","photo_annotations","{{photo_annotation_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aac9a19d-73c8-4c98-92ff-2bdcf2a44db1"},{"name":"Create Photo Annotation","id":"7d7562d7-ed3f-4fa4-a72d-78f069cbffce","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"photo_annotation\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/photo_annotations","urlObject":{"protocol":"https","path":["api","v2","photo_annotations"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d7562d7-ed3f-4fa4-a72d-78f069cbffce"},{"name":"Delete Photo Annotation","id":"4882d6e4-eeaf-4c3e-821d-9108529372c1","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/photo_annotations/{{photo_annotation_id}}","urlObject":{"protocol":"https","path":["api","v2","photo_annotations","{{photo_annotation_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4882d6e4-eeaf-4c3e-821d-9108529372c1"},{"name":"Update Photo Annotation","id":"9943e435-ffbe-40d2-82e9-fed35a23aaa6","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"photo_annotation\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/photo_annotations/{{photo_annotation_id}}","urlObject":{"protocol":"https","path":["api","v2","photo_annotations","{{photo_annotation_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9943e435-ffbe-40d2-82e9-fed35a23aaa6"}],"id":"b5f11499-62c5-41cb-acec-1bd668155078","_postman_id":"b5f11499-62c5-41cb-acec-1bd668155078","description":""},{"name":"Photos","item":[{"name":"List Photos","id":"a8c9a317-b5ad-4a7d-bd42-7e67c4645e6f","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/photos?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","photos"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"a8c9a317-b5ad-4a7d-bd42-7e67c4645e6f"},{"name":"List Report Photos","id":"07dc37f0-81fd-4f3c-b5ee-c6bf1ab8fca1","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/reports/{{report_id}}/photos?start=1&limit=5","description":"<p>List all of the photos for a specific report</p>\n","urlObject":{"protocol":"https","path":["api","v2","reports","{{report_id}}","photos"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"07dc37f0-81fd-4f3c-b5ee-c6bf1ab8fca1"},{"name":"Get Photo","id":"a863a582-5818-4e5c-a6c8-f1b9800a07c1","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/photos/{{photo_id}}","urlObject":{"protocol":"https","path":["api","v2","photos","{{photo_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a863a582-5818-4e5c-a6c8-f1b9800a07c1"},{"name":"Get Photo File","id":"bd0f5bd7-3027-4759-bbbf-24c20f10656a","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/photos/{{photo_id}}/file","description":"<p>Retrieve the original full-sized image file for this photo record</p>\n","urlObject":{"protocol":"https","path":["api","v2","photos","{{photo_id}}","file"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd0f5bd7-3027-4759-bbbf-24c20f10656a"},{"name":"Get Photo Annotated File","id":"1ec0b501-3578-4c4a-82b0-d33e3f5607e9","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/photos/{{photo_id}}/annotated_file","description":"<p>Retrieve the annotated version of the image file for this photo record</p>\n","urlObject":{"protocol":"https","path":["api","v2","photos","{{photo_id}}","annotated_file"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ec0b501-3578-4c4a-82b0-d33e3f5607e9"},{"name":"Create Photo","id":"6f8a9da5-9c9c-49a8-8740-aad7ec2318ac","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"photo\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/photos","urlObject":{"protocol":"https","path":["api","v2","photos"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f8a9da5-9c9c-49a8-8740-aad7ec2318ac"},{"name":"Delete Photo","id":"614b2ee6-0159-4384-bcf7-b4bde714c5d0","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/photos/{{photo_id}}","urlObject":{"protocol":"https","path":["api","v2","photos","{{photo_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"614b2ee6-0159-4384-bcf7-b4bde714c5d0"},{"name":"Update Photo","id":"b725fbe8-5cf0-4503-87f2-cab442b9db20","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"photo\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/photos/{{photo_id}}","urlObject":{"protocol":"https","path":["api","v2","photos","{{photo_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b725fbe8-5cf0-4503-87f2-cab442b9db20"},{"name":"Attach File To Photo","id":"095fc45f-f956-4346-942d-0f88c42957de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n    \"file\": {\n        \"data\":         \"Replace me with base64 encoded image data\",\n        \"filename\":     \"photo.jpg\",\n        \"content_type\": \"image/jpeg\"\n    }\n}"},"url":"https://{{URL}}/api/v2/photos/{{profile_image_id}}/attach_file","urlObject":{"protocol":"https","path":["api","v2","photos","{{profile_image_id}}","attach_file"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"095fc45f-f956-4346-942d-0f88c42957de"}],"id":"ef746fde-0345-4720-b356-b8295be3dc44","_postman_id":"ef746fde-0345-4720-b356-b8295be3dc44","description":""},{"name":"Profile Images","item":[{"name":"List Profile Images","id":"ba436da4-1725-4fa7-a4b9-036806aa6753","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/profile_images?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","profile_images"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"ba436da4-1725-4fa7-a4b9-036806aa6753"},{"name":"Get Profile Image","id":"9f0b2b5d-4b0e-4c2a-bf08-044f7d030deb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/profile_images/{{profile_image_id}}","urlObject":{"protocol":"https","path":["api","v2","profile_images","{{profile_image_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f0b2b5d-4b0e-4c2a-bf08-044f7d030deb"},{"name":"Get Profile Image File","id":"6dbcfc1f-b006-4e0b-b8d8-28dbca984004","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/profile_images/{{profile_image_id}}/file","description":"<p>Retrieve the original full-sized image file for this photo record</p>\n","urlObject":{"protocol":"https","path":["api","v2","profile_images","{{profile_image_id}}","file"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6dbcfc1f-b006-4e0b-b8d8-28dbca984004"},{"name":"Create Profile Image","id":"2916d9fd-cc78-4ba4-811c-632ee1116f46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"profile_image\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/profile_images","urlObject":{"protocol":"https","path":["api","v2","profile_images"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2916d9fd-cc78-4ba4-811c-632ee1116f46"},{"name":"Delete Profile Image","id":"679c0c81-ed2f-4f65-80d4-3611e11f57cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/profile_images/{{profile_image_id}}","urlObject":{"protocol":"https","path":["api","v2","profile_images","{{profile_image_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"679c0c81-ed2f-4f65-80d4-3611e11f57cf"},{"name":"Update Profile Image","id":"0f83030d-f107-43b5-aebd-5ba918e00a92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"profile_image\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/profile_images/{{profile_image_id}}","urlObject":{"protocol":"https","path":["api","v2","profile_images","{{profile_image_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f83030d-f107-43b5-aebd-5ba918e00a92"},{"name":"Attach File To Profile Image","id":"5fcfa91b-ecca-4886-8ced-088a3ae26c37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n    \"file\": {\n        \"data\":         \"Replace me with base64 encoded image data\",\n        \"filename\":     \"photo.jpg\",\n        \"content_type\": \"image/jpeg\"\n    }\n}"},"url":"https://{{URL}}/api/v2/profile_images/{{profile_image_id}}/attach_file","urlObject":{"protocol":"https","path":["api","v2","profile_images","{{profile_image_id}}","attach_file"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5fcfa91b-ecca-4886-8ced-088a3ae26c37"}],"id":"9000c1ef-b387-46de-a068-217b6730090b","_postman_id":"9000c1ef-b387-46de-a068-217b6730090b","description":""},{"name":"Reports","item":[{"name":"List Reports","id":"74c700bf-1796-492c-ab44-b7db48dd14c7","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/reports?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","reports"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"74c700bf-1796-492c-ab44-b7db48dd14c7"},{"name":"List Report Document Data","id":"ed5b1bbe-a1b3-4e6a-96e7-76990b786f37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/reports/{{report_id}}/document_data","description":"<p>Include the parameter 'expand' (with any value) for the entire document tree associated with this report to be included in the response.</p>\n<p>Include the parameter 'human_readable' (with any value) for the entire document tree associated with this report to be included in the response, but in a simpler and easier to read format.</p>\n","urlObject":{"protocol":"https","path":["api","v2","reports","{{report_id}}","document_data"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ed5b1bbe-a1b3-4e6a-96e7-76990b786f37"},{"name":"Get Report","id":"8711120e-e979-4406-8f97-52b384d1bbd0","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/reports/{{report_id}}","description":"<p>Include the parameter 'expand' (with any value) for the entire document tree associated with this report to be included in the response.</p>\n<p>Include the parameter 'human_readable' (with any value) for the entire document tree associated with this report to be included in the response, but in a simpler and easier to read format.</p>\n","urlObject":{"protocol":"https","path":["api","v2","reports","{{report_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8711120e-e979-4406-8f97-52b384d1bbd0"},{"name":"Get Report PDF","id":"84003e9a-c0d0-4bb3-a08e-53e94a1e9bf1","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/reports/{{report_id}}/pdf","description":"<p>Get the published PDF for this report</p>\n","urlObject":{"protocol":"https","path":["api","v2","reports","{{report_id}}","pdf"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"84003e9a-c0d0-4bb3-a08e-53e94a1e9bf1"},{"name":"Create Report","id":"2312d1a6-0d3d-4fec-baab-b8e283a6f83f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"report\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/reports","urlObject":{"protocol":"https","path":["api","v2","reports"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2312d1a6-0d3d-4fec-baab-b8e283a6f83f"},{"name":"Delete Report","id":"e7c8433a-66ac-4643-adf9-76cc008a6fa0","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/reports/{{report_id}}","urlObject":{"protocol":"https","path":["api","v2","reports","{{report_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7c8433a-66ac-4643-adf9-76cc008a6fa0"},{"name":"Update Report","id":"a1d93100-4373-4dde-b473-d26a1af7085c","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"report\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/reports/{{report_id}}","urlObject":{"protocol":"https","path":["api","v2","reports","{{report_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1d93100-4373-4dde-b473-d26a1af7085c"}],"id":"41063779-2d5f-444a-9ef9-2c94cae0c755","_postman_id":"41063779-2d5f-444a-9ef9-2c94cae0c755","description":""},{"name":"Saved Comment Categories","item":[{"name":"List Saved Comment Categories","id":"d020c798-b4c9-47e3-8af9-389af8ab2cac","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/saved_comment_categories?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","saved_comment_categories"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[{"id":"87262d80-3a8e-4663-ba93-4666c4c67e63","name":"List Saved Comment Categories","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://{{URL}}/api/v2/teams/{{team_id}}/saved_comment_categories?start=1&limit=5","protocol":"https","host":["{{URL}}"],"path":["api","v2","teams","{{team_id}}","saved_comment_categories"],"query":[{"key":"start","value":"1","description":"Starting primary key ID. If not specified, defaults to 0."},{"key":"limit","value":"5","description":"Maximum number of records to return. If not specified, defaults to 100."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 24 Aug 2018 15:49:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"650d5af29ba1775e377e9e981a2861a8\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=UnBvYldoT3IzbUVMZko1NUtuUXdEVWE1djhLL0VSeVpXSDhvUWtEWFk5ZzJsNkJiZDh2K1J3WTdoT3JUUDN5TjhidHZXaElDTC9ZODdob2xqcDJZZFZUREJmalNHZ3R1STl0NFRqd1djeEdFS3l1cDNmUDBwbEZtSmpoYUYyM25Wb3NiNitndjFIc3JYeHd2Q01jUk5nPT0tLWtiWmJtUU9hNVJCb3l1VU4yTENzR1E9PQ%3D%3D--afff2a43ba0b194df4c7de66bf540988d7b20ce3; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"7b6767cf-38d3-4770-870d-0a6c3ba531c5","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.194002","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"UnBvYldoT3IzbUVMZko1NUtuUXdEVWE1djhLL0VSeVpXSDhvUWtEWFk5ZzJsNkJiZDh2K1J3WTdoT3JUUDN5TjhidHZXaElDTC9ZODdob2xqcDJZZFZUREJmalNHZ3R1STl0NFRqd1djeEdFS3l1cDNmUDBwbEZtSmpoYUYyM25Wb3NiNitndjFIc3JYeHd2Q01jUk5nPT0tLWtiWmJtUU9hNVJCb3l1VU4yTENzR1E9PQ%3D%3D--afff2a43ba0b194df4c7de66bf540988d7b20ce3","key":"_lasso_session"}],"responseTime":null,"body":"{\"saved_comment_categories\":[{\"id\":115,\"uuid\":\"a83a9a90-86f7-0136-cce4-deaded110002\",\"team_id\":31809,\"name\":\"General\",\"transaction_key\":\"a83d8f00-86f7-0136-cce6-deadac110003\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T22:01:54.000Z\",\"created_at\":\"2018-08-22T21:57:38.000Z\",\"updated_at\":\"2018-08-22T22:01:54.000Z\",\"discarded_at\":null},{\"id\":116,\"uuid\":\"a83a9a90-86f7-0136-cce4-deaaad110002\",\"team_id\":31809,\"name\":\"Exterior\",\"transaction_key\":\"a83d8f00-86f7-0136-cce6-0242ac111102\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-22T22:05:49.000Z\",\"updated_at\":\"2018-08-22T22:05:49.000Z\",\"discarded_at\":null},{\"id\":117,\"uuid\":\"a83a9a90-86f7-0136-cce4-dedaddd110002\",\"team_id\":31809,\"name\":\"Roofing\",\"transaction_key\":\"a83d8f00-86f7-0136-cce6-0242ac122202\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-22T22:06:19.000Z\",\"updated_at\":\"2018-08-22T22:06:19.000Z\",\"discarded_at\":null}]}"}],"_postman_id":"d020c798-b4c9-47e3-8af9-389af8ab2cac"},{"name":"Get Saved Comment Category","id":"8dbdedd0-a399-4af2-94f2-6afa4eac312c","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comment_categories/{{saved_comment_category_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comment_categories","{{saved_comment_category_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8dbdedd0-a399-4af2-94f2-6afa4eac312c"},{"name":"Update Saved Comment Category","id":"e980a72b-e4ea-43c4-811c-ed9a756f26ae","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_category\": {\n        \"name\": \"General\",\n\t    \"transaction_key\": \"a83d8f00-86f7-0136-cce6-deadac110003\",\n\t\t\"previous_transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_categories/{{saved_comment_category_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comment_categories","{{saved_comment_category_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"498e9312-1403-4257-8f0e-bca7cf3061f1","name":"Update Saved Comment Category","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_category\": {\n        \"name\": \"General\",\n\t    \"transaction_key\": \"a83d8f00-86f7-0136-cce6-deadac110003\",\n\t\t\"previous_transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_categories/{{saved_comment_category_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"248","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 22 Aug 2018 22:01:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"13831b4ef190fa5a0f83252ffc37eb72\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=VDVoVlJiR3A2cVlVa1hXYkpBUkEvZDBCUDJtYUcvbUREUGdNRUlUZ1Q3a0I5aUFabWhxYzF4amNpYzN5TzFoaXJYNitGMHp2NmZ6eTQzZHNiNlc1T2M3OGtSZERZY2tqOG9nWnR1dkYyQkFJc1dUN1M5czlqYWpnN3AvSWViTEZrbWJJQW00eDJEN1dFQ2F0VTZBbE9nPT0tLUR6MnZ0QTh1bko5ZWRpOXN1ZitvNWc9PQ%3D%3D--128d40fc4d745b07dbdbb1b2df3f6633f366f896; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"34662d18-8103-406a-b464-6feaeecd4d88","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.072290","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"VDVoVlJiR3A2cVlVa1hXYkpBUkEvZDBCUDJtYUcvbUREUGdNRUlUZ1Q3a0I5aUFabWhxYzF4amNpYzN5TzFoaXJYNitGMHp2NmZ6eTQzZHNiNlc1T2M3OGtSZERZY2tqOG9nWnR1dkYyQkFJc1dUN1M5czlqYWpnN3AvSWViTEZrbWJJQW00eDJEN1dFQ2F0VTZBbE9nPT0tLUR6MnZ0QTh1bko5ZWRpOXN1ZitvNWc9PQ%3D%3D--128d40fc4d745b07dbdbb1b2df3f6633f366f896","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":115,\"uuid\":\"a83a9a90-86f7-0136-cce4-deaded110002\",\"team_id\":31809,\"name\":\"General\",\"transaction_key\":\"a83d8f00-86f7-0136-cce6-deadac110003\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T22:01:54.000Z\",\"created_at\":\"2018-08-22T21:57:38.000Z\",\"updated_at\":\"2018-08-22T22:01:54.000Z\",\"discarded_at\":null}"}],"_postman_id":"e980a72b-e4ea-43c4-811c-ed9a756f26ae"},{"name":"Create Saved Comment Category","id":"f4e6f3de-a9b9-43b8-ba95-af35cb87a8f0","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_category\": {\n        \"uuid\": \"a83a9a90-86f7-0136-cce4-deaded110002\",\n        \"team_id\": 31809,\n        \"name\": \"General\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_categories","urlObject":{"protocol":"https","path":["api","v2","saved_comment_categories"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"4e83a903-1739-4872-b06c-7a2f81795393","name":"Create Saved Comment Category","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_category\": {\n        \"uuid\": \"a83a9a90-86f7-0136-cce4-deaded110002\",\n        \"team_id\": 31809,\n        \"name\": \"General\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 22 Aug 2018 21:57:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"0cb1ab8c9f2644ef33e291f82b3a4e8f\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=RmlkRVhLZmpuMWhKbU1NWUpRSFcrczhMSEFRc3lWdi9HTm9jdjRMYkJPZEw0ZEQ0M2NHTWFrSC9mdm5zMjZMd0FwMjEvSy9XQkZiMm56R3FqZjR4cFkxTkZaUnFGS3BHb0M0UjdSQm5VOHgxL2xpQ0RFeE5BcDYxVU8zRzFoQWt3dzUwUXNPb3Y3bGhrOXJ2blZxb0t3PT0tLUx6RERVa01ZaGlCMXNGbzczYkVpRnc9PQ%3D%3D--87a9916493a8ef4017ae1c9e272bc2c253403f61; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"81aff866-010b-4c32-acda-8bcde645d71f","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.070623","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"RmlkRVhLZmpuMWhKbU1NWUpRSFcrczhMSEFRc3lWdi9HTm9jdjRMYkJPZEw0ZEQ0M2NHTWFrSC9mdm5zMjZMd0FwMjEvSy9XQkZiMm56R3FqZjR4cFkxTkZaUnFGS3BHb0M0UjdSQm5VOHgxL2xpQ0RFeE5BcDYxVU8zRzFoQWt3dzUwUXNPb3Y3bGhrOXJ2blZxb0t3PT0tLUx6RERVa01ZaGlCMXNGbzczYkVpRnc9PQ%3D%3D--87a9916493a8ef4017ae1c9e272bc2c253403f61","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":115,\"uuid\":\"a83a9a90-86f7-0136-cce4-deaded110002\",\"team_id\":31809,\"name\":\"General\",\"transaction_key\":\"a83d8f00-86f7-0136-cce6-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-22T21:57:38.000Z\",\"updated_at\":\"2018-08-22T21:57:38.000Z\",\"discarded_at\":null,\"message\":\"Saved comment category created\"}"}],"_postman_id":"f4e6f3de-a9b9-43b8-ba95-af35cb87a8f0"},{"name":"Delete Saved Comment Category","id":"bfd956e3-4791-4c32-ba04-0b8d41569cf6","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comment_categories/{{saved_comment_category_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comment_categories","{{saved_comment_category_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bfd956e3-4791-4c32-ba04-0b8d41569cf6"}],"id":"9845525b-66a1-491d-b68c-ce29d9c89fcd","_postman_id":"9845525b-66a1-491d-b68c-ce29d9c89fcd","description":""},{"name":"Saved Comment Ranks","item":[{"name":"List Saved Comment Ranks","id":"211fa4d7-07e4-403e-8cac-ead39fc01875","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/saved_comment_ranks?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","saved_comment_ranks"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[{"id":"2d5bb3a1-f2b0-4ccb-b2c6-e1e24e64010b","name":"List Saved Comment Ranks","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://{{URL}}/api/v2/teams/{{team_id}}/saved_comment_ranks?start=1&limit=5","protocol":"https","host":["{{URL}}"],"path":["api","v2","teams","{{team_id}}","saved_comment_ranks"],"query":[{"key":"start","value":"1","description":"Starting primary key ID. If not specified, defaults to 0."},{"key":"limit","value":"5","description":"Maximum number of records to return. If not specified, defaults to 100."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"376","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 24 Aug 2018 15:50:09 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"c7604579e2b27ddc5fa9687ef5ed867c\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=RndnWDB1RXc2NkswM3c3Y0hMT3g2dkJmY0RWSVkyN1U0dCs4c2tKZWtTSS8vVUhOUlYrV0FTV2FpT1pXTk5EeTVlazhGY20yaFJYR2ppcVpYYmdMbkw4ZGZtQlN6NzdYY3dJaTNKR3R3VENJRXc3N2Jmc1dPaCtqZzNnTXBRRm5tWTZOSXdNaEZ5cjNtVmV2NURsc0tnPT0tLVBXRm9kbHozNmxxVUtta1pXdjJqVnc9PQ%3D%3D--f9e631985e29b74ece64f838894a753a6886c838; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"188d22f2-5974-48dc-a291-cd6f909d195e","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.071871","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"RndnWDB1RXc2NkswM3c3Y0hMT3g2dkJmY0RWSVkyN1U0dCs4c2tKZWtTSS8vVUhOUlYrV0FTV2FpT1pXTk5EeTVlazhGY20yaFJYR2ppcVpYYmdMbkw4ZGZtQlN6NzdYY3dJaTNKR3R3VENJRXc3N2Jmc1dPaCtqZzNnTXBRRm5tWTZOSXdNaEZ5cjNtVmV2NURsc0tnPT0tLVBXRm9kbHozNmxxVUtta1pXdjJqVnc9PQ%3D%3D--f9e631985e29b74ece64f838894a753a6886c838","key":"_lasso_session"}],"responseTime":null,"body":"{\"saved_comment_ranks\":[{\"id\":738,\"uuid\":\"a842fa30-86f7-0136-cce9-0242ac110002\",\"team_id\":31809,\"rank\":10,\"saved_comment_id\":\"a84056d0-86f7-0136-cce7-0242ac110002\",\"saved_comment_category_id\":\"a83a9a90-86f7-0136-cce4-deaded110002\",\"transaction_key\":\"dc7e01a0-879a-0136-d86a-deadac110003\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T22:23:38.000Z\",\"created_at\":\"2018-08-22T22:16:09.000Z\",\"updated_at\":\"2018-08-22T22:23:38.000Z\",\"discarded_at\":null},{\"id\":739,\"uuid\":\"1819bd90-8887-0136-2f0d-0242ac110002\",\"team_id\":31809,\"rank\":10,\"saved_comment_id\":\"a845db50-86f7-0136-cced-0242ac110002\",\"saved_comment_category_id\":\"a83a9a90-86f7-0136-cce4-deaded110002\",\"transaction_key\":\"a83d8f00-86f7-0136-cce6-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-22T22:17:34.000Z\",\"updated_at\":\"2018-08-22T22:17:34.000Z\",\"discarded_at\":null}]}"}],"_postman_id":"211fa4d7-07e4-403e-8cac-ead39fc01875"},{"name":"Get Saved Comment Rank","id":"deeeec90-2bc6-40f0-b718-b87428a14ab1","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comment_ranks/{{saved_comment_rank_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comment_ranks","{{saved_comment_rank_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"847939de-d278-4ec0-bac8-3db595b7a965","name":"Get Saved Comment Rank","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comment_ranks/{{saved_comment_rank_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"283","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 22 Aug 2018 22:22:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"c5de7894a2e29dc2ef6f44b025cc04f7\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=eTJrdXM2S2lobkVnVUF6VFdBcjFFSm1INkxLK05TUTV0Yy9EekZ6alFBOThpaUJYbVZrSDJsUUNzbUZCaU84RjJSVnlFcU1QWUdSY1dPMXRleC9oTThXa3FsNHFSMEtrY0NjTmRkWTd1aVhJWFdTZC9kVDNXSVNCYmYwZ053Yi81S0ZXQ1lXVkJsQ3NTU1BrcndZR2xRPT0tLW85VWNsdHNVb2pwdm1KZGVCSUx0L1E9PQ%3D%3D--48b1e0f0968c52e669f4acda9f8fdf440684234e; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"4b74b376-292b-480b-b9a6-bab29a6af3bc","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.052158","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"eTJrdXM2S2lobkVnVUF6VFdBcjFFSm1INkxLK05TUTV0Yy9EekZ6alFBOThpaUJYbVZrSDJsUUNzbUZCaU84RjJSVnlFcU1QWUdSY1dPMXRleC9oTThXa3FsNHFSMEtrY0NjTmRkWTd1aVhJWFdTZC9kVDNXSVNCYmYwZ053Yi81S0ZXQ1lXVkJsQ3NTU1BrcndZR2xRPT0tLW85VWNsdHNVb2pwdm1KZGVCSUx0L1E9PQ%3D%3D--48b1e0f0968c52e669f4acda9f8fdf440684234e","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":738,\"uuid\":\"a842fa30-86f7-0136-cce9-0242ac110002\",\"team_id\":31809,\"rank\":10,\"saved_comment_id\":\"a84056d0-86f7-0136-cce7-0242ac110002\",\"saved_comment_category_id\":\"a83a9a90-86f7-0136-cce4-deaded110002\",\"transaction_key\":\"a83d8f00-86f7-0136-cce6-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-22T22:16:09.000Z\",\"updated_at\":\"2018-08-22T22:16:09.000Z\",\"discarded_at\":null}"}],"_postman_id":"deeeec90-2bc6-40f0-b718-b87428a14ab1"},{"name":"Update Saved Comment Rank","id":"e44b0994-a83b-4343-b2ec-45db4a61b772","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_rank\": {\n\t    \"rank\": 10,\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_ranks/{{saved_comment_rank_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comment_ranks","{{saved_comment_rank_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"95fe80fb-47b6-452f-a40c-1c64e46f516a","name":"Update Saved Comment Rank","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_rank\": {\n\t    \"rank\": 10,\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_ranks/{{saved_comment_rank_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"292","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 22 Aug 2018 22:23:38 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"c092459ca70f645e6d1a2fe20ff5a7f9\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=MjdhNCtGeHZvb0VQTGxPWU44K0NsYmFmV1FDV1dwc2tCblhnbW0zalQ0dmsyS2IxcHdFdUs3bk9adEQxdGQ4WDU2aWhrNGhNQlV2d245Tm5PeXNQYWRYRFUwR2gvOEh4K2Q0NmhCdHhZb3RCQmk5OHpuSTNpK0cvN0tmdWpHNEU3S3V2aDdDWFFTb2U1ZXF2bEwzSWRBPT0tLW41SHlmVDdKM1F1L2FYOGh2YVBlVHc9PQ%3D%3D--79cd7829a8baa4742f53c300fda4a2747b12a153; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"d09b66f2-4492-4e9e-a7e5-46eb2d28c656","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.066956","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"MjdhNCtGeHZvb0VQTGxPWU44K0NsYmFmV1FDV1dwc2tCblhnbW0zalQ0dmsyS2IxcHdFdUs3bk9adEQxdGQ4WDU2aWhrNGhNQlV2d245Tm5PeXNQYWRYRFUwR2gvOEh4K2Q0NmhCdHhZb3RCQmk5OHpuSTNpK0cvN0tmdWpHNEU3S3V2aDdDWFFTb2U1ZXF2bEwzSWRBPT0tLW41SHlmVDdKM1F1L2FYOGh2YVBlVHc9PQ%3D%3D--79cd7829a8baa4742f53c300fda4a2747b12a153","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":738,\"uuid\":\"a842fa30-86f7-0136-cce9-0242ac110002\",\"team_id\":31809,\"rank\":10,\"saved_comment_id\":\"a84056d0-86f7-0136-cce7-0242ac110002\",\"saved_comment_category_id\":\"a83a9a90-86f7-0136-cce4-deaded110002\",\"transaction_key\":\"dc7e01a0-879a-0136-d86a-deadac110003\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T22:23:38.000Z\",\"created_at\":\"2018-08-22T22:16:09.000Z\",\"updated_at\":\"2018-08-22T22:23:38.000Z\",\"discarded_at\":null}"}],"_postman_id":"e44b0994-a83b-4343-b2ec-45db4a61b772"},{"name":"Create Saved Comment Rank","id":"7241c767-37be-441b-aaad-4f9fda4f03c1","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_rank\": {\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"team_id\": 31809,\n        \"rank\": 10,\n        \"saved_comment_id\": \"a84056d0-86f7-0136-cce7-0242ac110002\",\n        \"saved_comment_category_id\": \"a83a9a90-86f7-0136-cce4-deaded110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_ranks","urlObject":{"protocol":"https","path":["api","v2","saved_comment_ranks"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"552cdbbd-a5cb-48b1-a849-0139e4e67307","name":"Create Saved Comment Rank","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_rank\": {\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"team_id\": 31809,\n        \"rank\": 10,\n        \"saved_comment_id\": \"a84056d0-86f7-0136-cce7-0242ac110002\",\n        \"saved_comment_category_id\": \"a83a9a90-86f7-0136-cce4-deaded110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_ranks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 22 Aug 2018 22:16:09 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"3ff8d97fc388c291b50160deefa4ea41\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=UWx4bzgxNk9PVk5aUDlZdVdNT3R5Sk9WK0FFOGkzMkdCV1FlTmUxcEdlZzljVy9YbHJyVHZTcW1DL2NxTzUyQWJBblg4MWhSV1FGcSsrRFdLVWRRdUdOUTJzM05VNHBBajIyZ3h3amJjc2NUazFIUXRYM3NxMDRyOE04UHloaTdKSUlka1dlYXZHdHZKbTl2dzBEd0dRPT0tLVBGeWlGOEFXTDJTQlRmd3JkUVNVSEE9PQ%3D%3D--92f0ca3c205b38f442409e8d953be6b17c478f88; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"3e0a10cf-8f07-470c-bd79-252c57e8ef11","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.073085","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"UWx4bzgxNk9PVk5aUDlZdVdNT3R5Sk9WK0FFOGkzMkdCV1FlTmUxcEdlZzljVy9YbHJyVHZTcW1DL2NxTzUyQWJBblg4MWhSV1FGcSsrRFdLVWRRdUdOUTJzM05VNHBBajIyZ3h3amJjc2NUazFIUXRYM3NxMDRyOE04UHloaTdKSUlka1dlYXZHdHZKbTl2dzBEd0dRPT0tLVBGeWlGOEFXTDJTQlRmd3JkUVNVSEE9PQ%3D%3D--92f0ca3c205b38f442409e8d953be6b17c478f88","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":738,\"uuid\":\"a842fa30-86f7-0136-cce9-0242ac110002\",\"team_id\":31809,\"rank\":10,\"saved_comment_id\":\"a84056d0-86f7-0136-cce7-0242ac110002\",\"saved_comment_category_id\":\"a83a9a90-86f7-0136-cce4-deaded110002\",\"transaction_key\":\"a83d8f00-86f7-0136-cce6-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-22T22:16:09.000Z\",\"updated_at\":\"2018-08-22T22:16:09.000Z\",\"discarded_at\":null,\"message\":\"Saved comment rank created\"}"}],"_postman_id":"7241c767-37be-441b-aaad-4f9fda4f03c1"},{"name":"Delete Saved Comment Rank","id":"699da2ad-b2b7-4f90-a979-6a6b4d301f67","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comment_ranks/{{saved_comment_rank_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comment_ranks","{{saved_comment_rank_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"699da2ad-b2b7-4f90-a979-6a6b4d301f67"}],"id":"25c56158-0720-47e2-9b04-55a663f71498","_postman_id":"25c56158-0720-47e2-9b04-55a663f71498","description":""},{"name":"Saved Comment Types","item":[{"name":"List Saved Comment Types","id":"f973a687-de00-4fb6-8604-414f0c0ef330","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/saved_comment_types?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","saved_comment_types"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[{"id":"b4812378-e7df-4adb-8f47-e97b20dd7a0e","name":"List Saved Comment Types","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://{{URL}}/api/v2/teams/{{team_id}}/saved_comment_types?start=1&limit=5","protocol":"https","host":["{{URL}}"],"path":["api","v2","teams","{{team_id}}","saved_comment_types"],"query":[{"key":"start","value":"1","description":"Starting primary key ID. If not specified, defaults to 0."},{"key":"limit","value":"5","description":"Maximum number of records to return. If not specified, defaults to 100."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 24 Aug 2018 15:50:22 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"3b09479c70ff0e06206d10dbc51d2f3c\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=WWhGY2JjU3IvaFpXY3phbnhzbWVvYXlmQzh6SzZjQWRMUjZvbm5ldkYwK1A3M0pETU1xaGxIWkMrTUZGcWtJYnB0WHp5OWp0UGdyYUQwb2dKYzhIZDEzY1V1dlNtNm5jTkNLcVh4WUZLMVVNeHJDemU1NXRlR2F6d3Q5aFVYRCt1cmZ0RTNwMzczRWY2WWNTcCtCZVF3PT0tLThMWEpjVXJVUWc4aklnNTJoRFpGNHc9PQ%3D%3D--4d767b5d1a519d9e5e07ada332f77c9bfdb38514; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"70d0dbf5-2703-46db-a7d9-eabf0f1d3dc9","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.063009","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"WWhGY2JjU3IvaFpXY3phbnhzbWVvYXlmQzh6SzZjQWRMUjZvbm5ldkYwK1A3M0pETU1xaGxIWkMrTUZGcWtJYnB0WHp5OWp0UGdyYUQwb2dKYzhIZDEzY1V1dlNtNm5jTkNLcVh4WUZLMVVNeHJDemU1NXRlR2F6d3Q5aFVYRCt1cmZ0RTNwMzczRWY2WWNTcCtCZVF3PT0tLThMWEpjVXJVUWc4aklnNTJoRFpGNHc9PQ%3D%3D--4d767b5d1a519d9e5e07ada332f77c9bfdb38514","key":"_lasso_session"}],"responseTime":null,"body":"{\"saved_comment_types\":[{\"id\":407,\"uuid\":\"a837aea0-86f7-0136-cce1-0242ac110002\",\"team_id\":31809,\"name\":\"Information\",\"show_in_summary\":false,\"show_in_section\":true,\"transaction_key\":\"a835cea0-86f7-0136-cce0-eeeeac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T21:45:52.000Z\",\"created_at\":\"2018-08-20T22:38:17.000Z\",\"updated_at\":\"2018-08-22T21:45:52.000Z\",\"discarded_at\":null},{\"id\":408,\"uuid\":\"a83a9a90-86f7-0136-cce4-0242ac110002\",\"team_id\":31809,\"name\":\"Deficiency\",\"show_in_summary\":true,\"show_in_section\":true,\"transaction_key\":\"a83a46e0-86f7-0136-cce3-0242ac110002\",\"last_changed_by_id\":1,\"last_changed_by_device_uuid\":null,\"last_changed_at\":\"2018-08-20T22:38:17.000Z\",\"created_at\":\"2018-08-20T22:38:17.000Z\",\"updated_at\":\"2018-08-20T22:38:17.000Z\",\"discarded_at\":null},{\"id\":411,\"uuid\":\"a83a9a90-86f7-0136-cce4-deadac110002\",\"team_id\":31809,\"name\":\"Warning\",\"show_in_summary\":false,\"show_in_section\":true,\"transaction_key\":\"20609400-8883-0136-2b54-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T21:49:10.000Z\",\"created_at\":\"2018-08-22T21:48:21.000Z\",\"updated_at\":\"2018-08-22T21:49:10.000Z\",\"discarded_at\":\"2018-08-22T21:49:10.000Z\"}]}"}],"_postman_id":"f973a687-de00-4fb6-8604-414f0c0ef330"},{"name":"Get Saved Comment Type","id":"1c3b0295-e29e-45f4-ae7b-0b851c8ba8b9","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comment_types/{{saved_comment_type_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comment_types","{{saved_comment_type_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"e6ae5181-3f8f-41cd-a069-8118f0a576d4","name":"Get Saved Comment Type","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comment_types/{{saved_comment_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 22 Aug 2018 15:58:24 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1a0bdf890e385310eef43526297f6631\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=dEhYZmhJdlBRMS9jaTF6UFBlcHFjN0tiUS9MRnBXVVBpenRXc2k2dThLU0dBY2hhU0J5Q3o1VFRXNjNVMzNnY0lwWGZJYzNtMm4rQ3VXRysvUEN2bjUwdWtEdlkyemZ1a1F5WTZzblNDbDBmK2dYb2JQZUpsbXFBUXE2TDhiaU5kdi9zc2RKcmNTWU5CZHh6aHlyb0JBPT0tLWdVQ0tDZzlvYVZlRU00SDdURHZTMUE9PQ%3D%3D--069ad33a42148aee7a0aa7ca7ecdd969429ca2be; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"9af9b6a2-1cb7-4ca3-b38f-ee737be692d9","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.047151","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"dEhYZmhJdlBRMS9jaTF6UFBlcHFjN0tiUS9MRnBXVVBpenRXc2k2dThLU0dBY2hhU0J5Q3o1VFRXNjNVMzNnY0lwWGZJYzNtMm4rQ3VXRysvUEN2bjUwdWtEdlkyemZ1a1F5WTZzblNDbDBmK2dYb2JQZUpsbXFBUXE2TDhiaU5kdi9zc2RKcmNTWU5CZHh6aHlyb0JBPT0tLWdVQ0tDZzlvYVZlRU00SDdURHZTMUE9PQ%3D%3D--069ad33a42148aee7a0aa7ca7ecdd969429ca2be","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":407,\"uuid\":\"a837aea0-86f7-0136-cce1-0242ac110002\",\"team_id\":31809,\"name\":\"Information\",\"show_in_summary\":false,\"show_in_section\":true,\"transaction_key\":\"a835cea0-86f7-0136-cce0-0242ac110002\",\"last_changed_by_id\":1,\"last_changed_by_device_uuid\":null,\"last_changed_at\":\"2018-08-20T22:38:17.000Z\",\"created_at\":\"2018-08-20T22:38:17.000Z\",\"updated_at\":\"2018-08-20T22:38:17.000Z\",\"discarded_at\":null}"}],"_postman_id":"1c3b0295-e29e-45f4-ae7b-0b851c8ba8b9"},{"name":"Update Saved Comment Type","id":"f3f35879-6d99-4a8d-bd01-fc25eda1d8ab","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_type\": {\n        \"name\": \"Information\",\n\t    \"transaction_key\": \"a835cea0-86f7-0136-cce0-eeeeac110002\",\n\t\t\"previous_transaction_key\": \"a835cea0-86f7-0136-cce0-0242ac110002\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_types/{{saved_comment_type_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comment_types","{{saved_comment_type_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"49fc392a-5539-4bcb-80c1-bef942d637ce","name":"Update Saved Comment Type","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_type\": {\n        \"name\": \"Information\",\n\t    \"transaction_key\": \"a835cea0-86f7-0136-cce0-eeeeac110002\",\n\t\t\"previous_transaction_key\": \"a835cea0-86f7-0136-cce0-0242ac110002\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_types/{{saved_comment_type_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"277","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 22 Aug 2018 21:45:52 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"52c7dba73664fd7b4af5008d434f1d51\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=bEtQcGcyT252SWNIV1pJZ2hqNUNZUXQ1Tm5EVXpWTHpuSDNqT1pKOW1OZGRhODZ5ZFBxOFZQbUs2YkVZQURhQmJVZHVkT2hWTzl0S2RNSDdXVklERWxHR3R2c3dsTVVnZVVvVlVMQ2Q3dVh2eGoyMkpGZjk4RXJIMHZ2eml6UHM4U2V4aUVQZW9SalRxV3JwVHV5anhnPT0tLXFJdlBueVJ2SnRvQ3p0aEF0bkNaaFE9PQ%3D%3D--8c7f5fda77dff455e402fd2ebc3788d6fe8d2aaf; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"cfbca7cc-962a-4f02-9ef2-7d0046cf1a1e","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.074845","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"bEtQcGcyT252SWNIV1pJZ2hqNUNZUXQ1Tm5EVXpWTHpuSDNqT1pKOW1OZGRhODZ5ZFBxOFZQbUs2YkVZQURhQmJVZHVkT2hWTzl0S2RNSDdXVklERWxHR3R2c3dsTVVnZVVvVlVMQ2Q3dVh2eGoyMkpGZjk4RXJIMHZ2eml6UHM4U2V4aUVQZW9SalRxV3JwVHV5anhnPT0tLXFJdlBueVJ2SnRvQ3p0aEF0bkNaaFE9PQ%3D%3D--8c7f5fda77dff455e402fd2ebc3788d6fe8d2aaf","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":407,\"uuid\":\"a837aea0-86f7-0136-cce1-0242ac110002\",\"team_id\":31809,\"name\":\"Information\",\"show_in_summary\":false,\"show_in_section\":true,\"transaction_key\":\"a835cea0-86f7-0136-cce0-eeeeac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T21:45:52.000Z\",\"created_at\":\"2018-08-20T22:38:17.000Z\",\"updated_at\":\"2018-08-22T21:45:52.000Z\",\"discarded_at\":null}"}],"_postman_id":"f3f35879-6d99-4a8d-bd01-fc25eda1d8ab"},{"name":"Create Saved Comment Type","id":"efb81e12-9857-4516-b05b-fa48739649b6","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_type\": {\n\t    \"team_id\": 31809,\n        \"uuid\": \"a83a9a90-86f7-0136-cce4-deadac110002\",\n\t    \"name\": \"Warning\",\n\t    \"show_in_summary\": false,\n\t    \"show_in_section\": true,\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-024eeeee0002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_types","urlObject":{"protocol":"https","path":["api","v2","saved_comment_types"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"9f58c33d-a004-4ff8-88d4-56c3d16c4da0","name":"Create Saved Comment Type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment_type\": {\n\t    \"team_id\": 31809,\n        \"uuid\": \"a83a9a90-86f7-0136-cce4-deadac110002\",\n\t    \"name\": \"Warning\",\n\t    \"show_in_summary\": false,\n\t    \"show_in_section\": true,\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-024eeeee0002\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comment_types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 22 Aug 2018 21:48:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"78a6a73e39a6aa903075bb528c14db0f\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=QkNnaTQ0TU13SkRhUk5jNTdtL29SNDJNcU5wS3dhMUQ5ZE1KTW9XRngxUW1WM012TDVScUR4VmxwU2NGclV5anVnazhMY0U2VmJYZDMwdzJ4SFRWSlY2Y3V2SW4wMFlEaVF1Q2s3RUIyQnJ2MklzODE4UUFhbWlYVEwxdTVsRWhiTmtxcE1saHByRS8veDdaQ3ZUOTNBPT0tLUM4MkRpeklTek5lWnJnOUtJRzBjQ1E9PQ%3D%3D--2e4883db6ff39bdc2832068e3ca276432e4a416a; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"9df8c01b-191f-4387-9b22-a4551ab0cd06","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.059066","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"QkNnaTQ0TU13SkRhUk5jNTdtL29SNDJNcU5wS3dhMUQ5ZE1KTW9XRngxUW1WM012TDVScUR4VmxwU2NGclV5anVnazhMY0U2VmJYZDMwdzJ4SFRWSlY2Y3V2SW4wMFlEaVF1Q2s3RUIyQnJ2MklzODE4UUFhbWlYVEwxdTVsRWhiTmtxcE1saHByRS8veDdaQ3ZUOTNBPT0tLUM4MkRpeklTek5lWnJnOUtJRzBjQ1E9PQ%3D%3D--2e4883db6ff39bdc2832068e3ca276432e4a416a","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":411,\"uuid\":\"a83a9a90-86f7-0136-cce4-deadac110002\",\"team_id\":31809,\"name\":\"Warning\",\"show_in_summary\":false,\"show_in_section\":true,\"transaction_key\":\"a83d8f00-86f7-0136-cce6-024eeeee0002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T21:48:21.000Z\",\"created_at\":\"2018-08-22T21:48:21.000Z\",\"updated_at\":\"2018-08-22T21:48:21.000Z\",\"discarded_at\":null,\"message\":\"Saved comment type created\"}"}],"_postman_id":"efb81e12-9857-4516-b05b-fa48739649b6"},{"name":"Delete Saved Comment Type","id":"c29d16f1-b4ee-4dcc-8d6c-aa46161c19a9","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comment_types/{{saved_comment_type_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comment_types","{{saved_comment_type_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c29d16f1-b4ee-4dcc-8d6c-aa46161c19a9"}],"id":"7be71009-d2e9-4261-9cf4-a541d87b366a","_postman_id":"7be71009-d2e9-4261-9cf4-a541d87b366a","description":""},{"name":"Saved Comments","item":[{"name":"List Saved Comments","id":"e0dc10fd-150a-43af-970d-b78aee86d60b","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/saved_comments?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","saved_comments"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[{"id":"c799578f-7dc4-4ee5-9d28-b6bd64ca8135","name":"List Saved Comments","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://{{URL}}/api/v2/teams/{{team_id}}/saved_comments?start=1&limit=5","protocol":"https","host":["{{URL}}"],"path":["api","v2","teams","{{team_id}}","saved_comments"],"query":[{"key":"start","value":"1","description":"Starting primary key ID. If not specified, defaults to 0."},{"key":"limit","value":"5","description":"Maximum number of records to return. If not specified, defaults to 100."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"497","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 24 Aug 2018 15:50:36 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"0349f97958c38ce8a36ad25151875077\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=VTZkeXpUeWErWWNnK3dFSkcwV2kzYTJaUDlhZkxucU9ybFhxcU4xYVVSUUtGWmhRZ0d0TEllUEwvK0RkT2JaTW8rUndJZ3d1QWJVNUZZVnB2cy8ycG5kcHlkb2h5bEc3YlVpNUZOOGlDZG5qbnlsdTNZS1hTS1E4YTVVN1NkZEtucENHSm5QMFBoR1Mxd3FNTDgxUjZ3PT0tLUpucjlZdzRhcDNmcFJscFdIWVcwMnc9PQ%3D%3D--11a512939908af7e25cd82b36b7ecd14948cfaa5; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"35fb8828-5a47-41c5-bd89-67904fdf0a84","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.067037","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"VTZkeXpUeWErWWNnK3dFSkcwV2kzYTJaUDlhZkxucU9ybFhxcU4xYVVSUUtGWmhRZ0d0TEllUEwvK0RkT2JaTW8rUndJZ3d1QWJVNUZZVnB2cy8ycG5kcHlkb2h5bEc3YlVpNUZOOGlDZG5qbnlsdTNZS1hTS1E4YTVVN1NkZEtucENHSm5QMFBoR1Mxd3FNTDgxUjZ3PT0tLUpucjlZdzRhcDNmcFJscFdIWVcwMnc9PQ%3D%3D--11a512939908af7e25cd82b36b7ecd14948cfaa5","key":"_lasso_session"}],"responseTime":null,"body":"{\"saved_comments\":[{\"id\":229425,\"uuid\":\"a84056d0-86f7-0136-cce7-0242ac110002\",\"team_id\":31809,\"text\":\"The siding is damaged\",\"saved_comment_type_id\":\"a83a9a90-86f7-0136-cce4-0242ac110002\",\"transaction_key\":\"dc7e01a0-879a-0136-d86a-deadac110003\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T15:52:16.000Z\",\"created_at\":\"2018-08-20T22:38:18.000Z\",\"updated_at\":\"2018-08-22T15:52:16.000Z\",\"discarded_at\":\"2018-08-21T18:06:33.000Z\"},{\"id\":229426,\"uuid\":\"a8431740-86f7-0136-ccea-0242ac110002\",\"team_id\":31809,\"text\":\"The siding has peeling or failing paint\",\"saved_comment_type_id\":\"a83a9a90-86f7-0136-cce4-0242ac110002\",\"transaction_key\":\"a842fa30-86f7-0136-cce9-0242ac110002\",\"last_changed_by_id\":1,\"last_changed_by_device_uuid\":null,\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-20T22:38:18.000Z\",\"updated_at\":\"2018-08-20T22:38:18.000Z\",\"discarded_at\":null},{\"id\":229427,\"uuid\":\"a845db50-86f7-0136-cced-0242ac110002\",\"team_id\":31809,\"text\":\"The siding is deteriorated\",\"saved_comment_type_id\":\"a83a9a90-86f7-0136-cce4-0242ac110002\",\"transaction_key\":\"a845bca0-86f7-0136-ccec-0242ac110002\",\"last_changed_by_id\":1,\"last_changed_by_device_uuid\":null,\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-20T22:38:18.000Z\",\"updated_at\":\"2018-08-20T22:38:18.000Z\",\"discarded_at\":null},{\"id\":229428,\"uuid\":\"a8487a30-86f7-0136-ccf0-0242ac110002\",\"team_id\":31809,\"text\":\"The siding is deteriorated along bottom edge\",\"saved_comment_type_id\":\"a83a9a90-86f7-0136-cce4-0242ac110002\",\"transaction_key\":\"a84861a0-86f7-0136-ccef-0242ac110002\",\"last_changed_by_id\":1,\"last_changed_by_device_uuid\":null,\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-20T22:38:18.000Z\",\"updated_at\":\"2018-08-20T22:38:18.000Z\",\"discarded_at\":null},{\"id\":229429,\"uuid\":\"a84afe80-86f7-0136-ccf3-0242ac110002\",\"team_id\":31809,\"text\":\"The siding is missing\",\"saved_comment_type_id\":\"a83a9a90-86f7-0136-cce4-0242ac110002\",\"transaction_key\":\"a84ae6c0-86f7-0136-ccf2-0242ac110002\",\"last_changed_by_id\":1,\"last_changed_by_device_uuid\":null,\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-20T22:38:18.000Z\",\"updated_at\":\"2018-08-20T22:38:18.000Z\",\"discarded_at\":null}]}"}],"_postman_id":"e0dc10fd-150a-43af-970d-b78aee86d60b"},{"name":"Get Saved Comment","id":"acda3b71-3584-4a2f-9ca9-a6730d756988","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comments/{{saved_comment_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comments","{{saved_comment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"8cff6694-351d-45dd-a6f5-5c4171f15cdd","name":"Get Saved Comment","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text","disabled":false},{"key":"Accept","value":"application/json","type":"text","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","type":"text","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","type":"text","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","type":"text","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","type":"text","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","type":"text","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","type":"text","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","type":"text","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comments/{{saved_comment_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 21 Aug 2018 18:05:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"4d1ac70d32363828a620b2aa0932ebcc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=eEtnRnRZdmVVNFdxSklCVEMyaEJyRDBkZ3l4RS9RVkxWa29yRCt5RlhEOExKNE1yMVl1TVhycVdqUTIyclRTOGlLQjhrcG1rcFpDYmhmcGNEMThxZDg5TTNEd0ZGaW5pakZNeGNXVy9VWTUvbmpDSHNTK2dKbE9DeXRCUTJCQkVmc011YkExUCtUbzdCRWFzZ3RoNlRRPT0tLVlieXFLaFk5dXV4bWNNbmIxN01KNkE9PQ%3D%3D--0abdad84d5a3e5b04f8809aaa5bba0601492497a; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"d58703db-61e2-4390-8652-e04e7ceafda7","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.054934","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"eEtnRnRZdmVVNFdxSklCVEMyaEJyRDBkZ3l4RS9RVkxWa29yRCt5RlhEOExKNE1yMVl1TVhycVdqUTIyclRTOGlLQjhrcG1rcFpDYmhmcGNEMThxZDg5TTNEd0ZGaW5pakZNeGNXVy9VWTUvbmpDSHNTK2dKbE9DeXRCUTJCQkVmc011YkExUCtUbzdCRWFzZ3RoNlRRPT0tLVlieXFLaFk5dXV4bWNNbmIxN01KNkE9PQ%3D%3D--0abdad84d5a3e5b04f8809aaa5bba0601492497a","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":229425,\"uuid\":\"a84056d0-86f7-0136-cce7-0242ac110002\",\"team_id\":31809,\"text\":\"The siding is damaged\",\"saved_comment_type_id\":\"a83a9a90-86f7-0136-cce4-0242ac110002\",\"transaction_key\":\"a83d8f00-86f7-0136-cce6-0242ac110002\",\"last_changed_by_id\":1,\"last_changed_by_device_uuid\":null,\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-20T22:38:18.000Z\",\"updated_at\":\"2018-08-20T22:38:18.000Z\",\"discarded_at\":null}"}],"_postman_id":"acda3b71-3584-4a2f-9ca9-a6730d756988"},{"name":"Update Saved Comment","id":"b74aed0e-6d21-4c96-b627-dc472a26f81d","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment\": {\n        \"text\": \"The siding is damaged\",\n\t    \"saved_comment_type_id\": \"a83a9a90-86f7-0136-cce4-0242ac110002\",\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comments/{{saved_comment_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comments","{{saved_comment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"cef67da1-c483-409d-ada6-80c5f9ea024d","name":"Update Saved Comment","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text","disabled":false},{"key":"Accept","value":"application/json","type":"text","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","type":"text","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","type":"text","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","type":"text","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","type":"text","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","type":"text","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","type":"text","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment\": {\n        \"text\": \"The siding is damaged\",\n\t    \"saved_comment_type_id\": \"a83a9a90-86f7-0136-cce4-0242ac110002\",\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comments/{{saved_comment_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"297","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 22 Aug 2018 15:52:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"a673d74cf93f0b36c4b6964a8b60d680\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=VEJpZXcrS2ZER0pKSzRHM0ZRY1Q4dldmeEtnNUc2eEFkNEZqZytKL1JocFdCK241ME1KM0E0MTNNbTdsSG1RbzhTRzF0WGxTV1FkSER2ZkJodmhCQVlwVGVFY01GU0pDdWJJWm40RitJZU90M2phSm1hSEJMNk1qM2JzTkc2cCtoWmZURURoMlVBbk5lR1RlUFM0OVBBPT0tLThhMStwU2FHZzBRc1JIQ0E4c0htalE9PQ%3D%3D--fe97afd0279e90c159bcc5a907e7aa78292da246; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"6004c1aa-ebf0-49e6-937d-9b7005758d52","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.065477","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"VEJpZXcrS2ZER0pKSzRHM0ZRY1Q4dldmeEtnNUc2eEFkNEZqZytKL1JocFdCK241ME1KM0E0MTNNbTdsSG1RbzhTRzF0WGxTV1FkSER2ZkJodmhCQVlwVGVFY01GU0pDdWJJWm40RitJZU90M2phSm1hSEJMNk1qM2JzTkc2cCtoWmZURURoMlVBbk5lR1RlUFM0OVBBPT0tLThhMStwU2FHZzBRc1JIQ0E4c0htalE9PQ%3D%3D--fe97afd0279e90c159bcc5a907e7aa78292da246","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":229425,\"uuid\":\"a84056d0-86f7-0136-cce7-0242ac110002\",\"team_id\":31809,\"text\":\"The siding is damaged\",\"saved_comment_type_id\":\"a83a9a90-86f7-0136-cce4-0242ac110002\",\"transaction_key\":\"dc7e01a0-879a-0136-d86a-deadac110003\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-22T15:52:16.000Z\",\"created_at\":\"2018-08-20T22:38:18.000Z\",\"updated_at\":\"2018-08-22T15:52:16.000Z\",\"discarded_at\":\"2018-08-21T18:06:33.000Z\"}"}],"_postman_id":"b74aed0e-6d21-4c96-b627-dc472a26f81d"},{"name":"Create Saved Comment","id":"46dd56ab-08bc-4358-8dd8-9d8472da4abf","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"text\": \"A thing is broken\",\n        \"saved_comment_type_id\": \"a83a9a90-86f7-0136-cce4-deadac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comments","urlObject":{"protocol":"https","path":["api","v2","saved_comments"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"f3499015-f583-45f1-91df-4b3c087cdaa3","name":"Create Saved Comment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text","disabled":false},{"key":"Accept","value":"application/json","type":"text","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","type":"text","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","type":"text","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","type":"text","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","type":"text","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","type":"text","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","type":"text","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"saved_comment\": {\n        \"team_id\": 31809,\n        \"text\": \"A thing is broken\",\n        \"saved_comment_type_id\": \"a83a9a90-86f7-0136-cce4-deadac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/saved_comments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 21 Aug 2018 15:06:02 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"6b38c99ac9879b6c794a73862f576d74\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.4","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=dWhzTGVHVHFyYjZpMkdDV2lGdm9ROG05YlJoMGk5Tk9tNnBmU3FyOTYwRW1VUTEzNTBXOGtLUEdEVytLSms0V01KaWZxazRpc1lLQTZETjNOS2VyT0tibURQU3JHRUZpSjVKL1JNMllab2E1NEZCaWJGbEtxd0N6c0FrR3FEV2hnc3RMYXYvdUZrWG5jelp3Y1ZYVFl3PT0tLUtjbXNMWkhwOStiVWR0UkdRZkNkSHc9PQ%3D%3D--266585b11839ac14da3d59306111f2218fb21972; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.4","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-Request-Id","value":"0f8778ab-f5bc-4fdb-8dbc-637cd805d7bc","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.069552","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"dWhzTGVHVHFyYjZpMkdDV2lGdm9ROG05YlJoMGk5Tk9tNnBmU3FyOTYwRW1VUTEzNTBXOGtLUEdEVytLSms0V01KaWZxazRpc1lLQTZETjNOS2VyT0tibURQU3JHRUZpSjVKL1JNMllab2E1NEZCaWJGbEtxd0N6c0FrR3FEV2hnc3RMYXYvdUZrWG5jelp3Y1ZYVFl3PT0tLUtjbXNMWkhwOStiVWR0UkdRZkNkSHc9PQ%3D%3D--266585b11839ac14da3d59306111f2218fb21972","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":230602,\"team_id\":31809,\"text\":\"A thing is broken\",\"saved_comment_type_id\":\"a83a9a90-86f7-0136-cce4-deadac110002\",\"transaction_key\":\"a83d8f00-86f7-0136-cce6-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"a65429f4-c596-4faf-b3da-22df854353c0\",\"last_changed_at\":\"2018-08-20T22:38:18.000Z\",\"created_at\":\"2018-08-21T15:06:02.000Z\",\"updated_at\":\"2018-08-21T15:06:02.000Z\",\"discarded_at\":null,\"message\":\"Saved comment created\"}"}],"_postman_id":"46dd56ab-08bc-4358-8dd8-9d8472da4abf"},{"name":"Delete Saved Comment","id":"54175677-68fc-4784-81b3-8e434e2fad8d","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/saved_comments/{{saved_comment_id}}","urlObject":{"protocol":"https","path":["api","v2","saved_comments","{{saved_comment_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"54175677-68fc-4784-81b3-8e434e2fad8d"}],"id":"75eec185-a8e6-4d33-aeb2-199a5ad39c1b","_postman_id":"75eec185-a8e6-4d33-aeb2-199a5ad39c1b","description":""},{"name":"Sections","item":[{"name":"List Sections","id":"c131caf8-b066-44c0-b605-344215eadcb6","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/sections?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","sections"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"c131caf8-b066-44c0-b605-344215eadcb6"},{"name":"Get Section","id":"553f073b-ba80-46f5-9585-3c6b8035449a","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/sections/{{section_id}}","urlObject":{"protocol":"https","path":["api","v2","sections","{{section_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"553f073b-ba80-46f5-9585-3c6b8035449a"},{"name":"Create Section","id":"5d887449-d87c-4112-b41b-4e7f19113417","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"section\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/sections","urlObject":{"protocol":"https","path":["api","v2","sections"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5d887449-d87c-4112-b41b-4e7f19113417"},{"name":"Delete Section","id":"c37f047f-a311-4199-a81a-bea33ea2f5da","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/sections/{{section_id}}","urlObject":{"protocol":"https","path":["api","v2","sections","{{section_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c37f047f-a311-4199-a81a-bea33ea2f5da"},{"name":"Update Section","id":"376260d7-07cd-4027-85a1-5218a96e45f9","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"section\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/sections/{{section_id}}","urlObject":{"protocol":"https","path":["api","v2","sections","{{section_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"376260d7-07cd-4027-85a1-5218a96e45f9"}],"id":"bd3f10fe-8f85-4ebc-86aa-947a4de65a6f","_postman_id":"bd3f10fe-8f85-4ebc-86aa-947a4de65a6f","description":""},{"name":"Service Agreements","item":[{"name":"List Service Agreements","id":"c0f99f2c-4463-47e2-bf49-c8a8b32e1bc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/service_agreements?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","service_agreements"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"c0f99f2c-4463-47e2-bf49-c8a8b32e1bc7"},{"name":"Get Service Agreement","id":"1892c870-e493-45a8-a07d-da102cfce18d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/service_agreements/{{service_agreement_id}}","urlObject":{"protocol":"https","path":["api","v2","service_agreements","{{service_agreement_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1892c870-e493-45a8-a07d-da102cfce18d"},{"name":"Create Service Agreement","id":"9c982575-1164-4580-a506-0f909c8c0cce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"service_agreement\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/service_agreements","urlObject":{"protocol":"https","path":["api","v2","service_agreements"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c982575-1164-4580-a506-0f909c8c0cce"},{"name":"Delete Service Agreement","id":"4f38da7d-f84f-4d84-ab83-11bdf7156184","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/service_agreements/{{service_agreement_id}}","urlObject":{"protocol":"https","path":["api","v2","service_agreements","{{service_agreement_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f38da7d-f84f-4d84-ab83-11bdf7156184"},{"name":"Update Service Agreement","id":"0ad49d46-7c09-423d-94a7-b5f81787907e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"service_agreement\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/service_agreements/{{service_agreement_id}}","urlObject":{"protocol":"https","path":["api","v2","service_agreements","{{service_agreement_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ad49d46-7c09-423d-94a7-b5f81787907e"}],"id":"7490ac74-9c75-45cc-814e-7d614b56fcbc","_postman_id":"7490ac74-9c75-45cc-814e-7d614b56fcbc","description":""},{"name":"Service Roles","item":[{"name":"List Service Roles","id":"b7cb4fb6-3ce6-452f-a0bf-1776bb604337","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/service_roles?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","service_roles"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"b7cb4fb6-3ce6-452f-a0bf-1776bb604337"},{"name":"Get Service Role","id":"87f1055d-6d4a-45c0-b9ab-dde4fa378d84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/service_roles/{{service_role_id}}","urlObject":{"protocol":"https","path":["api","v2","service_roles","{{service_role_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"87f1055d-6d4a-45c0-b9ab-dde4fa378d84"},{"name":"Create Service Role","id":"b9df88d2-2c12-4ac4-84c6-2b5c55e2b2ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"service_role\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/service_roles","urlObject":{"protocol":"https","path":["api","v2","service_roles"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b9df88d2-2c12-4ac4-84c6-2b5c55e2b2ab"},{"name":"Delete Service Role","id":"6bf23b8a-11da-4dea-917b-fc6808d87e27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/service_roles/{{service_role_id}}","urlObject":{"protocol":"https","path":["api","v2","service_roles","{{service_role_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6bf23b8a-11da-4dea-917b-fc6808d87e27"},{"name":"Update Service Role","id":"8147e03a-6b38-41a9-a1ef-2daddb489545","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"service_role\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/service_roles/{{service_role_id}}","urlObject":{"protocol":"https","path":["api","v2","service_roles","{{service_role_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8147e03a-6b38-41a9-a1ef-2daddb489545"}],"id":"6f8dade9-3c91-453f-8c91-0d5d9ecd2ef1","_postman_id":"6f8dade9-3c91-453f-8c91-0d5d9ecd2ef1","description":""},{"name":"Service Tax Rates","item":[{"name":"List Service Tax Rates","id":"b37c2a01-ebd2-4752-a4c0-5f9ff3eabb2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/service_tax_rates?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","service_tax_rates"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"b37c2a01-ebd2-4752-a4c0-5f9ff3eabb2a"},{"name":"Get Service Tax Rate","id":"70034a72-dfb6-4206-a40e-0e896afc675f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/service_tax_rates/{{service_tax_rate_id}}","urlObject":{"protocol":"https","path":["api","v2","service_tax_rates","{{service_tax_rate_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"70034a72-dfb6-4206-a40e-0e896afc675f"},{"name":"Create Service Tax Rate","id":"90ac0d30-3347-438b-85de-c55fa8709a1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"service_tax_rate\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/service_tax_rates","urlObject":{"protocol":"https","path":["api","v2","service_tax_rates"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"90ac0d30-3347-438b-85de-c55fa8709a1d"},{"name":"Delete Service Tax Rate","id":"b918edc2-6bfc-4a13-887b-3df874e3c7b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/service_tax_rates/{{service_tax_rate_id}}","urlObject":{"protocol":"https","path":["api","v2","service_tax_rates","{{service_tax_rate_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b918edc2-6bfc-4a13-887b-3df874e3c7b1"},{"name":"Update Service Tax Rate","id":"83872d29-3394-4764-bb2d-03a456534180","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"service_tax_rate\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/service_tax_rates/{{service_tax_rate_id}}","urlObject":{"protocol":"https","path":["api","v2","service_tax_rates","{{service_tax_rate_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"83872d29-3394-4764-bb2d-03a456534180"}],"id":"93314699-f268-424a-9727-1adb00a5d7f4","_postman_id":"93314699-f268-424a-9727-1adb00a5d7f4","description":""},{"name":"Service Templates","item":[{"name":"List Service Templates","id":"2568b3e6-2e99-4823-8500-abafd21b0d14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/service_templates?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","service_templates"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"2568b3e6-2e99-4823-8500-abafd21b0d14"},{"name":"Get Service Template","id":"deeba46a-e67c-41da-9fdf-4639b3109ced","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/service_templates/{{service_template_id}}","urlObject":{"protocol":"https","path":["api","v2","service_templates","{{service_template_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"deeba46a-e67c-41da-9fdf-4639b3109ced"},{"name":"Create Service Template","id":"65d88a1a-ad23-4d43-9081-ad06ec8e19ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"service_template\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/service_templates","urlObject":{"protocol":"https","path":["api","v2","service_templates"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"65d88a1a-ad23-4d43-9081-ad06ec8e19ab"},{"name":"Delete Service Template","id":"ba7c4e86-167c-4b35-9b2a-545e71f6f863","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/service_templates/{{service_template_id}}","urlObject":{"protocol":"https","path":["api","v2","service_templates","{{service_template_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba7c4e86-167c-4b35-9b2a-545e71f6f863"},{"name":"Update Service Template","id":"d8944d51-5bf9-440e-afe3-3774abbc6daf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"service_template\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/service_templates/{{service_template_id}}","urlObject":{"protocol":"https","path":["api","v2","service_templates","{{service_template_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8944d51-5bf9-440e-afe3-3774abbc6daf"}],"id":"bb4d9fe7-6534-42f2-b756-d23cd5f47f36","_postman_id":"bb4d9fe7-6534-42f2-b756-d23cd5f47f36","description":""},{"name":"Services","item":[{"name":"List Services","id":"4a113dc7-3819-414f-8e02-3dff84a86319","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/services?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","services"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"4a113dc7-3819-414f-8e02-3dff84a86319"},{"name":"Get Service","id":"bed00987-7d22-4ea1-83d3-9903b926a286","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/services/{{service_id}}","urlObject":{"protocol":"https","path":["api","v2","services","{{service_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bed00987-7d22-4ea1-83d3-9903b926a286"},{"name":"Create Service","id":"40019fd8-fbb4-4bf0-b901-6f994bf2ebfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"service\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/services","urlObject":{"protocol":"https","path":["api","v2","services"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"40019fd8-fbb4-4bf0-b901-6f994bf2ebfc"},{"name":"Delete Service","id":"96dbecf4-5f66-4034-beb5-55d32f2c5987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/services/{{service_id}}","urlObject":{"protocol":"https","path":["api","v2","services","{{service_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"96dbecf4-5f66-4034-beb5-55d32f2c5987"},{"name":"Update Service","id":"65921df4-b7e7-4eee-9cd3-d99ade9ced77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"service\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/services/{{service_id}}","urlObject":{"protocol":"https","path":["api","v2","services","{{service_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"65921df4-b7e7-4eee-9cd3-d99ade9ced77"}],"id":"f8d65c34-6ee5-4fd0-bb1e-f03df9ce6da7","_postman_id":"f8d65c34-6ee5-4fd0-bb1e-f03df9ce6da7","description":""},{"name":"Tax Rates","item":[{"name":"List Tax Rates","id":"119eb89c-4bfd-4e93-b4a9-24c24e863e3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/tax_rates?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","tax_rates"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"119eb89c-4bfd-4e93-b4a9-24c24e863e3a"},{"name":"Get Tax Rate","id":"3917ac72-e842-4bf4-b7b3-cd2c12f2cc5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/tax_rates/{{tax_rate_id}}","urlObject":{"protocol":"https","path":["api","v2","tax_rates","{{tax_rate_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3917ac72-e842-4bf4-b7b3-cd2c12f2cc5f"},{"name":"Create Tax Rate","id":"4abba786-7c06-4797-a4e0-9122c41fb450","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"tax_rate\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/tax_rates","urlObject":{"protocol":"https","path":["api","v2","tax_rates"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4abba786-7c06-4797-a4e0-9122c41fb450"},{"name":"Delete Tax Rate","id":"b18dc242-24e9-4074-9686-58b56a38d185","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/tax_rates/{{tax_rate_id}}","urlObject":{"protocol":"https","path":["api","v2","tax_rates","{{tax_rate_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b18dc242-24e9-4074-9686-58b56a38d185"},{"name":"Update Tax Rate","id":"fd7cd0ec-5097-4560-ba13-f86e13e41aea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"tax_rate\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/tax_rates/{{tax_rate_id}}","urlObject":{"protocol":"https","path":["api","v2","tax_rates","{{tax_rate_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd7cd0ec-5097-4560-ba13-f86e13e41aea"}],"id":"28f2d61b-0011-4dc0-a58f-17b69db1dc90","_postman_id":"28f2d61b-0011-4dc0-a58f-17b69db1dc90","description":""},{"name":"Teams","item":[{"name":"Get Change Events","event":[{"listen":"prerequest","script":{"id":"24dc2f50-da01-4e73-b2ad-36cd672a93a4","type":"text/javascript","exec":[""]}}],"id":"64c6d9fc-d0a9-4857-b0a7-3e8964c77eb8","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/change_events?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","change_events"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"},{"disabled":true,"description":{"content":"<p>Retrieve only this many records starting with the most recent record. Specifying a value for this parameter will ignore the start and limit parameters.</p>\n","type":"text/plain"},"key":"last","value":"1"}],"variable":[]}},"response":[{"id":"50a19ad4-d365-47f0-a757-91cc216f00b0","name":"Get Change Events","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://{{URL}}/api/v2/teams/{{team_id}}/change_events?start=1&limit=5","protocol":"https","host":["{{URL}}"],"path":["api","v2","teams","{{team_id}}","change_events"],"query":[{"key":"start","value":"1","description":"Starting primary key ID"},{"key":"limit","value":"5","description":"Maximum number of records to return"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 11 Jul 2018 21:11:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"fb487d49edf4ae21767281b9b76390e1\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.2","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=U1RESDdzRGJjK05SOTdBY3pwd28wRHl5NHNxaGE4alB6ekU3NkpQcFpxMFVMdzFUWHoxbENFd3doWHZiWWswam5WeTdGMU5FM2RQb293RnI3bi9Ma1lIaHpuY0N3NFR6c3lpdjI4Z21KWFR5QXRILzBCanBKRjdXci92Q0Npa015YmRvY1phU2VzTk9QM0RBMk9vUTV3PT0tLVhNUk5wLytKRGorT01hK2ZId3ZsdGc9PQ%3D%3D--dce238895058becfcb2d2441c160a89682ca65cd; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.2","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-Request-Id","value":"4d088ce1-474d-4b3a-a090-9f68fec31f76","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.041522","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"U1RESDdzRGJjK05SOTdBY3pwd28wRHl5NHNxaGE4alB6ekU3NkpQcFpxMFVMdzFUWHoxbENFd3doWHZiWWswam5WeTdGMU5FM2RQb293RnI3bi9Ma1lIaHpuY0N3NFR6c3lpdjI4Z21KWFR5QXRILzBCanBKRjdXci92Q0Npa015YmRvY1phU2VzTk9QM0RBMk9vUTV3PT0tLVhNUk5wLytKRGorT01hK2ZId3ZsdGc9PQ%3D%3D--dce238895058becfcb2d2441c160a89682ca65cd","key":"_lasso_session"}],"responseTime":null,"body":"{\"team\":{\"subscribed\":true,\"plan_name\":\"5 trial reports left\",\"subscription_cohort\":\"Trial 5\"},\"user\":{\"can_refer_others\":false,\"referral_button_title\":\"Earn $60, Give $60\",\"can_manage_team\":true,\"can_manage_templates\":false,\"can_manage_libraries\":false,\"debug_mode\":false,\"idlepollrate\":300,\"activepollrate\":300},\"change_events\":[{\"id\":23257,\"subject_type\":\"Team\",\"subject_id\":31809,\"subject_uuid\":null,\"action\":\"update\",\"team_id\":31809,\"document_id\":null,\"document_type\":null,\"transaction_key\":\"bbc25450-6746-0136-8ade-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"EC11C5D01F7447528C1B797CD436AEF0\",\"last_changed_at\":\"2018-07-11T14:43:43.000Z\",\"created_at\":\"2018-07-11T14:43:43.000Z\"},{\"id\":23258,\"subject_type\":\"User\",\"subject_id\":9339,\"subject_uuid\":null,\"action\":\"update\",\"team_id\":31809,\"document_id\":null,\"document_type\":null,\"transaction_key\":\"bbc6f1d0-6746-0136-8adf-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"EC11C5D01F7447528C1B797CD436AEF0\",\"last_changed_at\":\"2018-07-11T14:43:43.000Z\",\"created_at\":\"2018-07-11T14:43:43.000Z\"},{\"id\":23259,\"subject_type\":\"Team\",\"subject_id\":31809,\"subject_uuid\":null,\"action\":\"update\",\"team_id\":31809,\"document_id\":null,\"document_type\":null,\"transaction_key\":\"bbfba3c0-6746-0136-8ae1-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"EC11C5D01F7447528C1B797CD436AEF0\",\"last_changed_at\":\"2018-07-11T14:43:44.000Z\",\"created_at\":\"2018-07-11T14:43:44.000Z\"},{\"id\":23260,\"subject_type\":\"User\",\"subject_id\":9339,\"subject_uuid\":null,\"action\":\"update\",\"team_id\":31809,\"document_id\":null,\"document_type\":null,\"transaction_key\":\"bbffaa50-6746-0136-8ae2-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"EC11C5D01F7447528C1B797CD436AEF0\",\"last_changed_at\":\"2018-07-11T14:43:44.000Z\",\"created_at\":\"2018-07-11T14:43:44.000Z\"},{\"id\":23261,\"subject_type\":\"Team\",\"subject_id\":31809,\"subject_uuid\":null,\"action\":\"update\",\"team_id\":31809,\"document_id\":null,\"document_type\":null,\"transaction_key\":\"bc28c780-6746-0136-8ae3-0242ac110002\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"EC11C5D01F7447528C1B797CD436AEF0\",\"last_changed_at\":\"2018-07-11T14:43:44.000Z\",\"created_at\":\"2018-07-11T14:43:44.000Z\"}]}"}],"_postman_id":"64c6d9fc-d0a9-4857-b0a7-3e8964c77eb8"},{"name":"Get Team","id":"475848b7-f3a6-4aba-8a41-da9af3f634a4","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"6890c8b5-382e-4d6a-a7cc-e0be727e5ca7","name":"Get Team","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text","disabled":false},{"key":"Accept","value":"application/json","type":"text","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","type":"text","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","type":"text","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","type":"text","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","type":"text","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","type":"text","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","type":"text","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","type":"text","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 11 Jul 2018 20:58:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"a625755883981ee7a2e7c81152fbd1f1\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.2","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=dmJKUFZkcGpVMVV3ajhZSC9YdEpUSDZVZTlwZ25MNlh4SFVRNzlYUWR3Q1lzOElDcE9sWm1GL2QvZjFZRkt2WkFZRXUzZ0U4VlpPbkNsYXJzTUhJNmkwRDlwK2xKeXp1ZS83L1BueS9QN1h3bmxsaXhXVTVCWitmWjh3UGNwS3ZSaDVweWVHaUloNWl2SEVoN09ycThRPT0tLWJ5a2VlYThyT1FDYWM0MzVqNDI3aVE9PQ%3D%3D--b52655c4bc6f1e75d69b6d4cfef1793ee3613f54; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.2","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-Request-Id","value":"4b1c8704-5d88-43f4-bfad-7af5ba1e04fb","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.053174","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"dmJKUFZkcGpVMVV3ajhZSC9YdEpUSDZVZTlwZ25MNlh4SFVRNzlYUWR3Q1lzOElDcE9sWm1GL2QvZjFZRkt2WkFZRXUzZ0U4VlpPbkNsYXJzTUhJNmkwRDlwK2xKeXp1ZS83L1BueS9QN1h3bmxsaXhXVTVCWitmWjh3UGNwS3ZSaDVweWVHaUloNWl2SEVoN09ycThRPT0tLWJ5a2VlYThyT1FDYWM0MzVqNDI3aVE9PQ%3D%3D--b52655c4bc6f1e75d69b6d4cfef1793ee3613f54","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":31809,\"phone\":\"(222) 333-4444\",\"organization\":\"Test Co.\",\"org_street\":\"123 Test St.\",\"org_street2\":\"Suite 123\",\"org_city\":\"Boston\",\"org_state\":\"MA\",\"org_zip\":\"02472\",\"org_country\":null,\"url\":\"www.test.com\",\"logo_updated_at\":\"2018-07-11T14:47:45.000Z\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"EC11C5D01F7447528C1B797CD436AEF0\",\"last_changed_at\":\"2018-07-11T14:47:45.000Z\",\"transaction_key\":\"4bffe460-6747-0136-8c02-0242ac110002\",\"created_at\":\"2018-07-11T14:42:19.000Z\",\"updated_at\":\"2018-07-11T14:47:45.000Z\",\"subscribed\":true,\"plan_name\":\"5 trial reports left\",\"subscription_cohort\":\"Trial 5\",\"logo_url\":\"https://lasso-staging.s3.amazonaws.com/teams/31809/logo/large/user-demo_at_tapinspect_dot_com.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIBIILSH3MW2POBPQ%2F20180711%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20180711T205837Z&X-Amz-Expires=1000&X-Amz-SignedHeaders=host&X-Amz-Signature=5e0dc88aa955071d8adc026cb3c33dac7158a6c475630328dd37bfe9b5095f89\"}"}],"_postman_id":"475848b7-f3a6-4aba-8a41-da9af3f634a4"},{"name":"Update Team","id":"228217e4-b13d-406e-868d-833bcc6fabe2","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"team\": {\n\t    \"organization\": \"Party Co.\",\n\t\t\"transaction_key\": \"ce040cd0-0ea6-0136-cc6b-6c4008b3b8a2\",\n\t\t\"previous_transaction_key\": \"fab7e180-15c4-0136-5773-0242ac110003\"\n\t}\n}"},"url":"https://{{URL}}/api/v2/teams/{{team_id}}","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"228217e4-b13d-406e-868d-833bcc6fabe2"}],"id":"aa233456-fefe-4624-9ec0-46e95c069aad","_postman_id":"aa233456-fefe-4624-9ec0-46e95c069aad","description":""},{"name":"Templates","item":[{"name":"List Templates","id":"df2259cb-7113-4213-bc49-a0c35094031c","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/teams/{{team_id}}/templates?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","templates"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"df2259cb-7113-4213-bc49-a0c35094031c"},{"name":"Get Template","id":"7d526958-c280-4cf8-b0a9-439e729f988c","request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/templates/{{template_id}}","description":"<p>Include the parameter 'expand' (with any value) for the entire document tree associated with this report to be included in the response.</p>\n","urlObject":{"protocol":"https","path":["api","v2","templates","{{template_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d526958-c280-4cf8-b0a9-439e729f988c"},{"name":"Create Template","id":"2dcedf3a-bd73-410b-8e4b-acbf59b6b208","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"template\": {\n        \"team_id\": 31809,\n        \"uuid\": \"a842fa30-86f7-0136-cce9-0242ac110002\",\n        \"transaction_key\": \"a83d8f00-86f7-0136-cce6-0242ac110002\",\n        \"last_changed_at\": \"2018-08-20T22:38:18.000Z\"\n    }\n}"},"url":"https://{{URL}}/api/v2/templates","urlObject":{"protocol":"https","path":["api","v2","templates"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2dcedf3a-bd73-410b-8e4b-acbf59b6b208"},{"name":"Delete Template","id":"b75dfe10-52d2-4680-bae2-ff04b7d2b915","request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/templates/{{template_id}}","urlObject":{"protocol":"https","path":["api","v2","templates","{{template_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b75dfe10-52d2-4680-bae2-ff04b7d2b915"},{"name":"Update Template","id":"580f522b-5800-4647-bfc2-00bbe77b2b2e","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"body":{"mode":"raw","raw":"{\n\t\"template\": {\n\t    \"transaction_key\": \"dc7e01a0-879a-0136-d86a-deadac110003\",\n\t\t\"previous_transaction_key\": \"dc7e01a0-879a-0136-d86a-0242ac110003\"\n    }\n}"},"url":"https://{{URL}}/api/v2/templates/{{template_id}}","urlObject":{"protocol":"https","path":["api","v2","templates","{{template_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"580f522b-5800-4647-bfc2-00bbe77b2b2e"}],"id":"c4917ba9-3fa1-4435-907d-9260d857e7b1","_postman_id":"c4917ba9-3fa1-4435-907d-9260d857e7b1","description":""},{"name":"Users","item":[{"name":"List Users","id":"0c7d3e79-4c29-4165-b1a3-b49bcad7538a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"<p>Basic authentication token for your email/password</p>\n","key":"Authorization","value":"{{basic_auth_token}}"},{"description":"<p>Your API key</p>\n","key":"X-API-Key","value":"{{api_key}}"},{"description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n","key":"X-Device-UUID","value":"{{device_id}}"},{"description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n","key":"X-Device-Description","value":"My Device"},{"description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n","key":"X-Platform","value":"My Server App"},{"description":"<p>Version of the OS on the device (optional)</p>\n","key":"X-OS-Version","value":"1.0"},{"description":"<p>Version of the app interacting with the API (optional)</p>\n","key":"X-SW-Version","value":"1.0"}],"url":"https://{{URL}}/api/v2/teams/{{team_id}}/users?start=1&limit=5","urlObject":{"protocol":"https","path":["api","v2","teams","{{team_id}}","users"],"host":["{{URL}}"],"query":[{"description":{"content":"<p>Starting primary key ID. If not specified, defaults to 0.</p>\n","type":"text/plain"},"key":"start","value":"1"},{"description":{"content":"<p>Maximum number of records to return. If not specified, defaults to 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"}],"variable":[]}},"response":[],"_postman_id":"0c7d3e79-4c29-4165-b1a3-b49bcad7538a"},{"name":"Create New User","id":"9a923189-1f21-4544-9bd1-f6bde638325a","request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"user\": {\n\t\t\"email\": \"teeesterrr@tapinspect.com\", \n\t\t\"password\": \"password\", \n\t\t\"password_confirmation\": \"password\"\n\t},\n\t\"interests\": [\n\t\t\"Basic Home Inspection\", \n\t\t\"Detailed Home Inspection\"\n\t]\n}"},"url":"https://{{URL}}/api/v2/users","urlObject":{"protocol":"https","path":["api","v2","users"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a923189-1f21-4544-9bd1-f6bde638325a"},{"name":"Get Current User","id":"1568ce92-2e53-4756-bebe-9f238fc0f55b","request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/users/me","urlObject":{"protocol":"https","path":["api","v2","users","me"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"58a0e15d-81cc-41ba-9731-ec14abd275f4","name":"Get Current User","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text","disabled":false},{"key":"Accept","value":"application/json","type":"text","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","type":"text","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","type":"text","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","type":"text","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","type":"text","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","type":"text","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","type":"text","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","type":"text","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/users/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 11 Jul 2018 15:20:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"f911e428828bfdb048ec34dddd2839a9\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.2","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=eEVwWk44dEFNQUpRZ2EvSjB0YytRNUVscm50OWtqWEF2MU95ckM1b0syU2loVEtISnpHY3E5VHpVcHNUcVZCSW9JdDE2cDAzbGpGQjhSY1l6VW5CUnFsckxQakNZWEZmdjhLWVBCTFFucTB1UmZqTVhQVGVoaFppc2NJV05JZk8waWJ2NlRYbERvZkMzS2hkZXRKVzJBPT0tLUpxdDJZVWV6dTNtZmk2U0pxbmZpREE9PQ%3D%3D--39c528b5c25aa47cde15b51743db72b55098a823; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.2","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-Request-Id","value":"6134ebe0-58ed-4909-9ac2-15089cd7692c","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.081854","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"eEVwWk44dEFNQUpRZ2EvSjB0YytRNUVscm50OWtqWEF2MU95ckM1b0syU2loVEtISnpHY3E5VHpVcHNUcVZCSW9JdDE2cDAzbGpGQjhSY1l6VW5CUnFsckxQakNZWEZmdjhLWVBCTFFucTB1UmZqTVhQVGVoaFppc2NJV05JZk8waWJ2NlRYbERvZkMzS2hkZXRKVzJBPT0tLUpxdDJZVWV6dTNtZmk2U0pxbmZpREE9PQ%3D%3D--39c528b5c25aa47cde15b51743db72b55098a823","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":9339,\"team_id\":31809,\"days_to_retain_report_data\":30,\"library_mode\":0,\"default_invitation_expiration_in_months\":0,\"login\":\"demo_at_tapinspect_dot_com\",\"email\":\"demo@tapinspect.com\",\"first_name\":\"Testy\",\"last_name\":\"Testerson\",\"default_invitation\":\"Thank you for choosing me to perform your inspection. Please follow the instructions below to pick up your report.\",\"pickup_message\":\"Thank you for your business!\",\"enable_autoclean\":true,\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"EC11C5D01F7447528C1B797CD436AEF0\",\"last_changed_at\":\"2018-07-11T14:47:46.000Z\",\"transaction_key\":\"4c25b400-6747-0136-8c03-0242ac110002\",\"created_at\":\"2018-07-11T14:42:19.000Z\",\"updated_at\":\"2018-07-11T15:20:14.000Z\",\"can_refer_others\":false,\"referral_button_title\":\"Earn $60, Give $60\",\"can_manage_team\":true,\"can_manage_templates\":false,\"can_manage_libraries\":false,\"debug_mode\":false,\"idlepollrate\":300,\"activepollrate\":300,\"team\":{\"id\":31809,\"phone\":\"(222) 333-4444\",\"organization\":\"Test Co.\",\"org_street\":\"123 Test St.\",\"org_street2\":\"Suite 123\",\"org_city\":\"Boston\",\"org_state\":\"MA\",\"org_zip\":\"02472\",\"org_country\":null,\"url\":\"www.test.com\",\"logo_updated_at\":\"2018-07-11T14:47:45.000Z\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"EC11C5D01F7447528C1B797CD436AEF0\",\"last_changed_at\":\"2018-07-11T14:47:45.000Z\",\"transaction_key\":\"4bffe460-6747-0136-8c02-0242ac110002\",\"created_at\":\"2018-07-11T14:42:19.000Z\",\"updated_at\":\"2018-07-11T14:47:45.000Z\",\"subscribed\":true,\"plan_name\":\"5 trial reports left\",\"subscription_cohort\":\"Trial 5\",\"logo_url\":\"https://lasso-staging.s3.amazonaws.com/teams/31809/logo/large/user-demo_at_tapinspect_dot_com.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIBIILSH3MW2POBPQ%2F20180711%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20180711T152014Z&X-Amz-Expires=1000&X-Amz-SignedHeaders=host&X-Amz-Signature=9d90b6a88d235caeb82b9395ac0f75a608544fc5b2c5936d4662ae2cc57bd602\"},\"should_start_on_getting_started\":false,\"needs_a_demo_report\":false}"}],"_postman_id":"1568ce92-2e53-4756-bebe-9f238fc0f55b"},{"name":"Get User Setup Status","id":"9683d1a1-fc8f-4e41-a5df-02a6d51ed055","request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/users/{{user_id}}/setup_status","description":"<p>After creating a user, the initial templates, saved comments, and demo report are created asynchronously. This API allows a remote system to poll the Tap Inspect server and find out when that process is complete and the resources are fully available.</p>\n","urlObject":{"protocol":"https","path":["api","v2","users","{{user_id}}","setup_status"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"0d38b804-aed5-4837-b77a-8ddf11904e52","name":"Get User Setup Status","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/users/{{user_id}}/setup_status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 08 Oct 2018 18:03:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"03b638b3e05921d7d345b0cb314be396\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin","name":"Referrer-Policy","description":"Custom header"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.5","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=zJzT2XmDlAHKeKY%2Fi6O5m%2BjMntEfhlJKcNg310QcXsQofJQJ7olIOHnpEvF6oiORonOaCM0vnshn4Fq%2BKQi2Jx%2F%2B79LXD38wk2FHhALQ4e728PaoY%2BgdpDMnHF32ZuoTy%2BYfjajbIuy2x0IJTZQmIZj9Jb81mdToCvKN%2FpuBX3m%2FCisvy6Qqgw8rIoR9J4N9qmQhvB9X5OKQmMFG4LPlHEg8pkMHC17VkPx4ZakWUa0SpQ%3D%3D--ZzSxhjB8oPlRl%2Ft3--%2Fi4brECUV%2BrSlhJ4Bd7zOg%3D%3D; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Download-Options","value":"noopen","name":"X-Download-Options","description":"Custom header"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","name":"X-Permitted-Cross-Domain-Policies","description":"Custom header"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.5","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-Request-Id","value":"8391195c-64cc-489b-a6ef-bd8101663505","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.103005","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"zJzT2XmDlAHKeKY%2Fi6O5m%2BjMntEfhlJKcNg310QcXsQofJQJ7olIOHnpEvF6oiORonOaCM0vnshn4Fq%2BKQi2Jx%2F%2B79LXD38wk2FHhALQ4e728PaoY%2BgdpDMnHF32ZuoTy%2BYfjajbIuy2x0IJTZQmIZj9Jb81mdToCvKN%2FpuBX3m%2FCisvy6Qqgw8rIoR9J4N9qmQhvB9X5OKQmMFG4LPlHEg8pkMHC17VkPx4ZakWUa0SpQ%3D%3D--ZzSxhjB8oPlRl%2Ft3--%2Fi4brECUV%2BrSlhJ4Bd7zOg%3D%3D","key":"_lasso_session"}],"responseTime":null,"body":"{\"setup_status\":1}"}],"_postman_id":"9683d1a1-fc8f-4e41-a5df-02a6d51ed055"},{"name":"Get User","id":"965815fa-7184-4377-a1b5-520f30f32c16","request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/users/{{user_id}}","description":"<p>Get a user by ID</p>\n","urlObject":{"protocol":"https","path":["api","v2","users","{{user_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"5f602ef2-4895-491e-a409-59da94a3865b","name":"Get User","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://{{URL}}/api/v2/users/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 11 Jul 2018 15:19:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"93320a4a8afe6c54c03967ee81da5422\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.2","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=cWRHTUQrQloxV3Y1dENuUVR2TW04QVVpZjVFcUJRa3dTb1VvekFicStSSmxHeGRWK2VaUnhVdHhIRVFPb2xBRGEzUG1TcUxpNG9BTFI3Zkxhd205bytIeXh2SDVneW9uRFU2N1pUVTAzbit5UEFkQ2VPNE1uMUd2TyswbEVna2FqOVZMc0FnMXBQWUhBeVBjbWRhL2J3PT0tLW1zRW13QXB2c3dwazF2ajgybUJ5Z2c9PQ%3D%3D--6f555769fa45c363e2f0966a61c0dec90f4e2240; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.2","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-Request-Id","value":"bed206c0-2bf8-4f83-bc5c-c1a0ae139809","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.172926","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"cWRHTUQrQloxV3Y1dENuUVR2TW04QVVpZjVFcUJRa3dTb1VvekFicStSSmxHeGRWK2VaUnhVdHhIRVFPb2xBRGEzUG1TcUxpNG9BTFI3Zkxhd205bytIeXh2SDVneW9uRFU2N1pUVTAzbit5UEFkQ2VPNE1uMUd2TyswbEVna2FqOVZMc0FnMXBQWUhBeVBjbWRhL2J3PT0tLW1zRW13QXB2c3dwazF2ajgybUJ5Z2c9PQ%3D%3D--6f555769fa45c363e2f0966a61c0dec90f4e2240","key":"_lasso_session"}],"responseTime":null,"body":"{\"id\":9339,\"team_id\":31809,\"days_to_retain_report_data\":30,\"library_mode\":0,\"default_invitation_expiration_in_months\":0,\"login\":\"demo_at_tapinspect_dot_com\",\"email\":\"demo@tapinspect.com\",\"first_name\":\"Testy\",\"last_name\":\"Testerson\",\"default_invitation\":\"Thank you for choosing me to perform your inspection. Please follow the instructions below to pick up your report.\",\"pickup_message\":\"Thank you for your business!\",\"enable_autoclean\":true,\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"EC11C5D01F7447528C1B797CD436AEF0\",\"last_changed_at\":\"2018-07-11T14:47:46.000Z\",\"transaction_key\":\"4c25b400-6747-0136-8c03-0242ac110002\",\"created_at\":\"2018-07-11T14:42:19.000Z\",\"updated_at\":\"2018-07-11T15:19:07.000Z\",\"can_refer_others\":false,\"referral_button_title\":\"Earn $60, Give $60\",\"can_manage_team\":true,\"can_manage_templates\":false,\"can_manage_libraries\":false,\"debug_mode\":false,\"idlepollrate\":300,\"activepollrate\":300,\"team\":{\"id\":31809,\"phone\":\"(222) 333-4444\",\"organization\":\"Test Co.\",\"org_street\":\"123 Test St.\",\"org_street2\":\"Suite 123\",\"org_city\":\"Boston\",\"org_state\":\"MA\",\"org_zip\":\"02472\",\"org_country\":null,\"url\":\"www.test.com\",\"logo_updated_at\":\"2018-07-11T14:47:45.000Z\",\"last_changed_by_id\":9339,\"last_changed_by_device_uuid\":\"EC11C5D01F7447528C1B797CD436AEF0\",\"last_changed_at\":\"2018-07-11T14:47:45.000Z\",\"transaction_key\":\"4bffe460-6747-0136-8c02-0242ac110002\",\"created_at\":\"2018-07-11T14:42:19.000Z\",\"updated_at\":\"2018-07-11T14:47:45.000Z\",\"subscribed\":true,\"plan_name\":\"5 trial reports left\",\"subscription_cohort\":\"Trial 5\",\"logo_url\":\"https://lasso-staging.s3.amazonaws.com/teams/31809/logo/large/user-demo_at_tapinspect_dot_com.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIBIILSH3MW2POBPQ%2F20180711%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20180711T151947Z&X-Amz-Expires=1000&X-Amz-SignedHeaders=host&X-Amz-Signature=2a6b2480a068189a1f3bd9096d2f9865da0c248330daead464ebcde7719156c1\"},\"should_start_on_getting_started\":false,\"needs_a_demo_report\":false}"}],"_postman_id":"965815fa-7184-4377-a1b5-520f30f32c16"},{"name":"Update User","id":"fb78c267-9d33-4e23-a2ba-bd61dc5337c8","request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"user\": {\n\t\t\"pickup_message\": \"Welcome, my dudes\",\n\t\t\"transaction_key\": \"ce040cd0-0ea6-0136-cc6b-6c4008b3b8a2\",\n\t\t\"previous_transaction_key\": \"8b689e30-0eb5-0136-229e-0242ac110002\"\n\t}\n}"},"url":"https://{{URL}}/api/v2/users/{{user_id}}","urlObject":{"protocol":"https","path":["api","v2","users","{{user_id}}"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb78c267-9d33-4e23-a2ba-bd61dc5337c8"},{"name":"Reset Password","id":"8b49740e-4672-4b58-86e4-e11ca0e871e7","request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{basic_auth_token}}","description":"<p>Basic authentication token for your email/password</p>\n"},{"key":"X-API-Key","value":"{{api_key}}","description":"<p>Your API key</p>\n"},{"key":"X-Device-UUID","value":"{{device_id}}","description":"<p>A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.</p>\n"},{"key":"X-Device-Description","value":"My Device","description":"<p>Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.</p>\n"},{"key":"X-Platform","value":"My Server App","description":"<p>iOS, Android, 3rd party service name, etc. (optional)</p>\n"},{"key":"X-OS-Version","value":"1.0","description":"<p>Version of the OS on the device (optional)</p>\n"},{"key":"X-SW-Version","value":"1.0","description":"<p>Version of the app interacting with the API (optional)</p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"demo@tapinspect.com\"\n}"},"url":"https://{{URL}}/api/v2/users/passwords","description":"<p> Reset the password for a user who has forgotten it by specifying an email address</p>\n","urlObject":{"protocol":"https","path":["api","v2","users","passwords"],"host":["{{URL}}"],"query":[],"variable":[]}},"response":[{"id":"5b08393b-d5dd-475a-8009-ef329d0f2458","name":"Reset Password","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text","disabled":false},{"key":"Accept","value":"application/json","type":"text","disabled":false},{"key":"Authorization","value":"{{basic_auth_token}}","description":"Basic authentication token for your email/password","type":"text","disabled":false},{"key":"X-API-Key","value":"{{api_key}}","description":"Your API key","type":"text","disabled":false},{"key":"X-Device-UUID","value":"{{device_id}}","description":"A UUID of your choosing to represent the system/device making the request. Please use the same value consistently across requests.","type":"text","disabled":false},{"key":"X-Device-Description","value":"My Device","description":"Description of the device (optional), i.e. \"Production Server\", \"iPhone 6\", etc.","type":"text","disabled":false},{"key":"X-Platform","value":"My Server App","description":"iOS, Android, 3rd party service name, etc. (optional)","type":"text","disabled":false},{"key":"X-OS-Version","value":"1.0","description":"Version of the OS on the device (optional)","type":"text","disabled":false},{"key":"X-SW-Version","value":"1.0","description":"Version of the app interacting with the API (optional)","type":"text","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"demo@tapinspect.com\"\n}"},"url":"https://{{URL}}/api/v2/users/passwords"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","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-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 11 Jul 2018 15:20:37 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"838a7c62adda8d131d694ae13ba2c5b7\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx/1.14.0 + Phusion Passenger 5.3.2","name":"Server","description":"A name for the server"},{"key":"Set-Cookie","value":"_lasso_session=S1VVbmRLb0VJY1M0dStkY0xHc2tvR0VPRER2ZHEyTE5kRkNrUUhZMHAzbjdFZFp2Vi8rTU85N1lLOVJvbTBSY1lzbngyVDdYV2ZINjFLNVd1c1M0SDRtRTlJemFoTDhONWdEaXc1YXowYnNmUUFiNFNmWmx0YzJGSWpCUkIyUjNQRE15UzhXTnE1RTVWTkdVMXNJbUZ3PT0tLXo2eXNVc3dPSVYyTTl4N29Bekw2WGc9PQ%3D%3D--3b85afa17db6252f745ac6eba5d4e44f18eadfa6; path=/; HttpOnly","name":"Set-Cookie","description":"an HTTP cookie"},{"key":"Status","value":"200 OK","name":"Status","description":"Custom header"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Powered-By","value":"Phusion Passenger 5.3.2","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-Request-Id","value":"9b48b1f6-71fa-4c38-97a7-07f48507a671","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"1.210689","name":"X-Runtime","description":"Custom header"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"},{"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."}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"dev.tapinspect.com","path":"/","secure":false,"value":"S1VVbmRLb0VJY1M0dStkY0xHc2tvR0VPRER2ZHEyTE5kRkNrUUhZMHAzbjdFZFp2Vi8rTU85N1lLOVJvbTBSY1lzbngyVDdYV2ZINjFLNVd1c1M0SDRtRTlJemFoTDhONWdEaXc1YXowYnNmUUFiNFNmWmx0YzJGSWpCUkIyUjNQRE15UzhXTnE1RTVWTkdVMXNJbUZ3PT0tLXo2eXNVc3dPSVYyTTl4N29Bekw2WGc9PQ%3D%3D--3b85afa17db6252f745ac6eba5d4e44f18eadfa6","key":"_lasso_session"}],"responseTime":null,"body":"{\"message\":\"success\"}"}],"_postman_id":"8b49740e-4672-4b58-86e4-e11ca0e871e7"}],"id":"6afe1a7e-f7b4-4f13-a2bb-2eb0e45d230f","_postman_id":"6afe1a7e-f7b4-4f13-a2bb-2eb0e45d230f","description":""}],"event":[{"listen":"prerequest","script":{"id":"8ed4a59d-ac70-4f70-a22c-a78f2f22f909","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"95d729bf-c8e4-4744-90eb-896d6e441ee6","type":"text/javascript","exec":[""]}}]}