{"info":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","description":"<html><head></head><body><p>The Boom and Bucket integration API provides endpoints for onboarding machines and for retrieving summarized valuation insights.</p>\n<h2 id=\"authorization\">Authorization</h2>\n<p>The Boom and Bucket integration API uses <code>X-API-Key</code> query parameter or as a header to authenticate requests. This parameter needs to be provided with every api request.</p>\n<h5 id=\"for-example\">For example</h5>\n<p><code>https://api.boomandbucket.com/marketplaceservice/marketplace/fleet-management-integration/onboard-equipment?X-API-KEY=</code></p>\n<h2 id=\"api-rate-limiting-policy\">API Rate Limiting Policy</h2>\n<p>Our API is designed to provide a consistent and reliable service to all users. To ensure this, we have implemented a rate limiting policy that allows a maximum of 10 requests per second.</p>\n<h3 id=\"rate-limits\">Rate Limits</h3>\n<p>The rate limit for our API is 10 requests per second (RPS). This rate limit applies per API key, not per user or application.</p>\n<h3 id=\"how-it-works\">How It Works</h3>\n<p>Every API request you make subtracts from your remaining request quota. If you exceed the limit of 10 requests per second, you will receive a <code>429 Too Many Requests</code> HTTP status code.</p>\n<h3 id=\"response-headers-coming-soon\">Response Headers (Coming soon)</h3>\n<p>Every API response includes three headers to help you understand your current rate limit status:</p>\n<ul>\n<li><code>X-RateLimit-Limit</code>: The maximum number of requests you can make per second.</li>\n<li><code>X-RateLimit-Remaining</code>: The number of requests left for the current window.</li>\n<li><code>X-RateLimit-Reset</code>: The time when the rate limit will reset, in UTC epoch seconds.</li>\n</ul>\n<h3 id=\"exceeding-the-rate-limit\">Exceeding The Rate Limit</h3>\n<p>When you exceed the rate limit, the API responds with HTTP status <code>429 Too Many Requests</code>. You should design your application to handle this possibility and implement a backoff strategy. For example, you could wait until the rate limit resets (as specified in the <code>X-RateLimit-Reset</code> header) before making additional requests.</p>\n<hr>\n<p><em><strong>The information provided by this API should be used in conjunction with professional advice and market knowledge to make informed decisions about equipment valuation.</strong></em></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"32551519","collectionId":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","publishedId":"2sA2xiWrh6","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-03-11T23:59:45.000Z"},"item":[{"name":"Onboard Equipment","id":"d76f9ed3-ec5a-4eea-8b14-dacf0a29ba98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"serialNumber\": \"value\",\r\n  \"taxonomizedSubCategoryId\": \"00000000-0000-0000-0000-000000000000\",\r\n  \"year\": 2024,\r\n  \"make\": \"Caterpillar\",\r\n  \"model\": \"D4\",\r\n  \"hours\": 142,\r\n  \"mileage\": 0,\r\n  \"highwayType\": 0,\r\n  \"fleetIdentifierCompanyId\": \"00000000-0000-0000-0000-000000000000\",\r\n  \"fleetIdentifierValue\": \"string\",\r\n  \"sellerCompanyName\": \"string\",\r\n  \"sellerOfficeAddressLineOne\": \"string\",\r\n  \"sellerOfficeAddressLineTwo\": \"string\",\r\n  \"sellerOfficeCity\": \"string\",\r\n  \"sellerOfficeState\": \"string\",\r\n  \"sellerOfficeZipCode\": \"string\",\r\n  \"sellerContactFirstName\": \"string\",\r\n  \"sellerContactLastName\": \"string\",\r\n  \"sellerContactEmail\": \"string\",\r\n  \"sellerContactPhone\": \"string\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.boomandbucket.com/marketplaceservice/marketplace/fleet-management-integration/onboard-equipment","description":"<p>Please use this endpoint to onboard equipment to the Boom and Bucket platform. You'll need a subcategory and make which can be retrieved from the Boom and Bucket Taxonomy endpoints.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><code>serialNumber</code> (string): Serial number of the equipment.</li>\n<li><code>taxonomizedSubCategoryId</code> (string): Unique identifier for the equipment category. It is the <code>entityId.value</code> of a subcategroy from the Taxonomized SubCategories endpoint</li>\n<li><code>year</code> (integer): Manufacturing year of the equipment.</li>\n<li><code>make</code> (string): Make or brand of the equipment. It is the <code>preferredDisplayName</code> of the make from the Taxonomized Makes endpoint</li>\n<li><code>model</code> (string): Model of the equipment.</li>\n<li><code>hours</code> (integer): The operating hours meter reading.</li>\n<li><code>mileage</code> (integer): The odometer of the equipment (can be 0 for off-highway machines).</li>\n<li><code>highwayType</code> (integer): Type of highway usage (1 = OnHighway; 2 = OffHighway).</li>\n<li><code>fleetIdentifierCompanyId</code> (string): The <code>companyId</code> of your company created in Boom and Bucket.</li>\n<li><code>fleetIdentifierValue</code> (string): Unique identifier for the equipment in your system.</li>\n<li><code>sellerCompanyName</code> (string): Name of the seller company.</li>\n<li><code>sellerOfficeAddressLineOne</code> (string): First line of the seller's office address.</li>\n<li><code>sellerOfficeAddressLineTwo</code> (string): Second line of the seller's office address.</li>\n<li><code>sellerOfficeCity</code> (string): City of the seller's office.</li>\n<li><code>sellerOfficeState</code> (string): State of the seller's office.</li>\n<li><code>sellerOfficeZipCode</code> (string): ZIP code of the seller's office.</li>\n<li><code>sellerContactFirstName</code> (string): First name of the seller's contact person.</li>\n<li><code>sellerContactLastName</code> (string): Last name of the seller's contact person.</li>\n<li><code>sellerContactEmail</code> (string): Email address of the seller's contact person.</li>\n<li><code>sellerContactPhone</code> (string): Phone number of the seller's contact person.</li>\n</ul>\n<h2 id=\"response\">Response:</h2>\n<ul>\n<li>Successful response: HTTP Status <code>200 OK</code> with the id of the equipment that was onboarded</li>\n<li>Error response: HTTP Status <code>400 Bad Request</code> with details in the response body.</li>\n</ul>\n<h2 id=\"check-listing-status\">Check Listing Status</h2>\n<p>You can check the status of the listing once an equipment has been onboarded as follows:</p>\n<ol>\n<li>Get the onboarded equipment using the <a href=\"https://go.postman.co/boom-and-bucket/workspace/boom-and-bucket/documentation/32551519-2af4d60b-d96d-4356-bf7c-f6d2268706aa?entity=request-9a182d45-bda1-4d7a-9d38-9b3a827f4d3f\">Get Equipment</a> endpoint. The response includes the listingId of the listing tied to that equipment.</li>\n<li>Get the listing using the <a href=\"https://go.postman.co/boom-and-bucket/workspace/boom-and-bucket/documentation/32551519-2af4d60b-d96d-4356-bf7c-f6d2268706aa?entity=request-98446145-6220-458e-a93f-9a9060d745f1\">Get Listing</a> endpoint. The response includes the display state of the lising.</li>\n</ol>\n<h2 id=\"to-construct-the-listing-url\">To construct the listing url</h2>\n<p>The url for the listing is as follows:</p>\n<p><code>https://boomandbucket.com/for-sale/{equipmentSlug}/{listingStockNumber}</code></p>\n<ol>\n<li>Use the <code>slug</code> from the Equipment object which can be retrieved from the <a href=\"https://go.postman.co/boom-and-bucket/workspace/boom-and-bucket/documentation/32551519-2af4d60b-d96d-4356-bf7c-f6d2268706aa?entity=request-9a182d45-bda1-4d7a-9d38-9b3a827f4d3f\">Get Equipment</a> endpoint</li>\n<li>Use the <code>stockNumber</code> from the Listing object which can be retrieved from the <a href=\"https://go.postman.co/boom-and-bucket/workspace/boom-and-bucket/documentation/32551519-2af4d60b-d96d-4356-bf7c-f6d2268706aa?entity=request-98446145-6220-458e-a93f-9a9060d745f1\">Get Listing</a> endpoint</li>\n<li>Build the url by concating <code>https://boomandbucket.com/for-sale/</code> <code>{slug}</code> <code>/</code> <code>{stockNumber}</code> and converting it to lowercase</li>\n</ol>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"https","path":["marketplaceservice","marketplace","fleet-management-integration","onboard-equipment"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"1309eefc-3642-4fed-bc3f-89f4594790be","name":"Onboard Equipment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"serialNumber\": \"ser_no_123\",\r\n  \"taxonomizedSubCategoryId\": \"26672476-6a25-4154-a9cf-a32482ea03ba\",\r\n  \"year\": 2018,\r\n  \"make\": \"Caterpillar\",\r\n  \"model\": \"302 CR\",\r\n  \"hours\": 2423,\r\n  \"mileage\": 0,\r\n  \"highwayType\": 2,\r\n  \"fleetIdentifierCompanyId\": \"ded7a535-4e79-4161-9310-740fbf748be6\",\r\n  \"fleetIdentifierValue\": \"fm_id_345\",\r\n  \"sellerCompanyName\": \"Seller Inc.\",\r\n  \"sellerOfficeAddressLineOne\": \"123 Machine Street\",\r\n  \"sellerOfficeAddressLineTwo\": \"Suite 100\",\r\n  \"sellerOfficeCity\": \"Denver\",\r\n  \"sellerOfficeState\": \"CO\",\r\n  \"sellerOfficeZipCode\": \"80201\",\r\n  \"sellerContactFirstName\": \"Bob\",\r\n  \"sellerContactLastName\": \"Builder\",\r\n  \"sellerContactEmail\": \"bob@builder.com\",\r\n  \"sellerContactPhone\": \"1231231234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.boomandbucket.com/marketplaceservice/marketplace/fleet-management-integration/onboard-equipment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"\"ebba8be0-cba6-4d9f-b119-e66708a1f1d6\""}],"_postman_id":"d76f9ed3-ec5a-4eea-8b14-dacf0a29ba98"},{"name":"Get Makes","id":"2568c7d3-38b4-4792-86c4-2c083099e505","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://api.boomandbucket.com/taxonomyservice/taxonomy/makes","description":"<p>This endpoint retrieves a list of equipment manufacturers (makes) and detailed taxonomy information.</p>\n<h3 id=\"response-format\">Response Format</h3>\n<p>The response is an array of objects, each representing a manufacturer. Each object contains the following fields:</p>\n<ul>\n<li><code>id</code> (string): A unique identifier for the manufacturer.</li>\n<li><code>name</code> (string): The manufacturer's name in uppercase.</li>\n<li><code>preferredDisplayName</code> (string): The manufacturer's name in a more display-friendly format.</li>\n<li><code>taxonomyVerificationStatus</code> (integer): An integer representing the verification status of the taxonomy item.</li>\n<li><code>url</code> (string): The manufacturer's official website URL.</li>\n</ul>\n<h3 id=\"taxonomy-verification-status\">Taxonomy Verification Status</h3>\n<p>The <code>taxonomyVerificationStatus</code> field is an enumeration representing the verification status, defined as follows:</p>\n<ul>\n<li><p><code>0</code>: None - Initial default state, no verification done.</p>\n</li>\n<li><p><code>1</code>: Unverified - The item has not been verified.</p>\n</li>\n<li><p><code>2</code>: SystemProcessed - This status indicates that the information has been sorted and validated using an automated, non-expert system. It relies on both algorithmic and human assessment rather than specialized, expert analysis.</p>\n</li>\n<li><p><code>4</code>: VerifiedByExpert - Verified internally by heavy equipment expert.</p>\n</li>\n<li><p><code>8</code>: VerifiedByAI - Verified using AI.</p>\n</li>\n</ul>\n<p>The <code>taxonomyVerificationStatus</code> field uses a bitwise representation to allow for combinations of different verification states. For example, a value of <code>3</code> (binary <code>0011</code>) would indicate that the item is both <code>Unverified</code> (<code>1</code>) and <code>SystemProcessed</code> (<code>2</code>).</p>\n<h2 id=\"sample-response\">Sample Response</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\"> [\n  {\n    \"id\": \"66ad635f-2d5f-4b78-8b13-69c8cd3b5d1b\",\n    \"name\": \"CATERPILLAR\",\n    \"preferredDisplayName\": \"Caterpillar\",\n    \"taxonomyVerificationStatus\": 2,\n    \"url\": \"https://www.caterpillar.com\"\n  },\n  {\n    \"id\": \"1bdaede2-16b6-4546-a8dd-2a47885f2d66\",\n    \"name\": \"JOHN DEERE\",\n    \"preferredDisplayName\": \"John Deere\",\n    \"taxonomyVerificationStatus\": 2,\n    \"url\": \"https://www.deere.com/en/index.html\"\n  }\n]\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"http","path":["taxonomyservice","taxonomy","makes"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"1b8073c4-cc7e-4767-a9e5-6de14a7809e7","name":"Get Makes","originalRequest":{"method":"GET","header":[],"url":"http://api.boomandbucket.com/taxonomyservice/taxonomy/makes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Mar 2024 19:06:47 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Request-Context","value":"appId=cid-v1:3695f997-cc2f-45f0-8294-f170c1613f5c"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"431ca18a-7655-4f40-bb45-2fcbd12d1caf\",\n        \"name\": \"1954 MFG\",\n        \"preferredDisplayName\": \"1954 Mfg\",\n        \"taxonomyVerificationStatus\": 2,\n        \"url\": \"https://www.1954manufacturing.com/\"\n    },\n    {\n        \"id\": \"6441f789-61d2-427a-b00e-4010b172dc05\",\n        \"name\": \"2C MACHINERY\",\n        \"preferredDisplayName\": \"2c Machinery\",\n        \"taxonomyVerificationStatus\": 2,\n        \"url\": \"https://www.2cmachines.com/\"\n    },\n    {\n        \"id\": \"4cae3163-649b-469f-8d3d-64fb43db099b\",\n        \"name\": \"4T MFG\",\n        \"preferredDisplayName\": \"4t Mfg\",\n        \"taxonomyVerificationStatus\": 2,\n        \"url\": \"https://www.4tmfg.com/\"\n    },\n    {\n        \"id\": \"6ee43b47-5457-4474-95f1-85544ba160d5\",\n        \"name\": \"AAA TRAILERS\",\n        \"preferredDisplayName\": \"AAA Trailers\",\n        \"taxonomyVerificationStatus\": 2,\n        \"url\": \"https://www.aaatrailers.com.au/\"\n    },\n    {\n        \"id\": \"09bd10fa-07aa-4621-8dd8-4548a0ebe41d\",\n        \"name\": \"AB\",\n        \"preferredDisplayName\": \"Ab\",\n        \"taxonomyVerificationStatus\": 2,\n        \"url\": \"https://abmfginc.ca/\"\n    },\n    {\n        \"id\": \"06b5b51f-b1d2-4e0a-9476-e30c4c5eff81\",\n        \"name\": \"ABB\",\n        \"preferredDisplayName\": \"ABB\",\n        \"taxonomyVerificationStatus\": 2,\n        \"url\": \"https://global.abb/group/en\"\n    },\n    {\n        \"id\": \"a8bccddc-fba2-472a-91a4-ab2d4c528af1\",\n        \"name\": \"ABCO\",\n        \"preferredDisplayName\": \"ABCO\",\n        \"taxonomyVerificationStatus\": 2,\n        \"url\": \"https://www.goabco.com/\"\n    }\n]"}],"_postman_id":"2568c7d3-38b4-4792-86c4-2c083099e505"},{"name":"Get Subcategories","id":"5da45314-73d9-4532-a85d-706e3a4fa4be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.boomandbucket.com/taxonomyservice/taxonomy/subcategory","description":"<p>This endpoint retrieves detailed taxonomy information for a specific subcategory of equipment.</p>\n<h3 id=\"response-format\">Response Format</h3>\n<p>The response is a JSON object representing a subcategory, with the following fields:</p>\n<ul>\n<li><code>entityId</code>: An object containing a unique identifier (<code>value</code>) for the subcategory.</li>\n<li><code>name</code>: An object with <code>translations</code> array providing subcategory names in multiple languages.</li>\n<li><code>slug</code>: A string representing a URL-friendly version of the subcategory name.</li>\n<li><code>taxonomizedCategoryId</code>: An object with a <code>value</code> field indicating the associated category ID.</li>\n<li><code>usedForIds</code>: An array of objects, each with a <code>value</code> field indicating IDs for which the subcategory is \"Used For\". \"Used For\" is a way to describe the various industries a piece of equipment may be in. </li>\n<li><code>meterTypeForValuation</code>: An object detailing the type of meter used for valuation, with translations.</li>\n<li><code>marketplaceCategory</code>: An object containing details about the marketplace category, such as ID, slug, synonyms, and image URI.</li>\n</ul>\n<h4 id=\"translations-object\">Translations Object</h4>\n<p>The <code>translations</code> arrays in <code>name</code> and <code>meterTypeForValuation</code> contain objects for each supported language, each with fields:</p>\n<ul>\n<li><code>languageId</code> (integer): The ID for the language.</li>\n<li><code>languageShortCode</code> (string): A short code representing the language.</li>\n<li><code>text</code> (string): The translated text for the subcategory or meter type.</li>\n<li><code>description</code> (string): A description of the text in the specific language.</li>\n</ul>\n<h2 id=\"sample-response\">Sample Response</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"entityId\": {\n      \"value\": \"bf3641e5-7d59-4dc0-92f4-93812620c14c\"\n    },\n    \"name\": {\n      \"translations\": [\n        {\n          \"languageId\": 0,\n          \"languageShortCode\": \"en_US\",\n          \"text\": \"Aerial Work Platforms\",\n          \"description\": \"Aerial Work Platforms\"\n        },\n        {\n          \"languageId\": 1,\n          \"languageShortCode\": \"es_MX\",\n          \"text\": \"\",\n          \"description\": \"\"\n        },\n        {\n          \"languageId\": 2,\n          \"languageShortCode\": \"fr_CA\",\n          \"text\": \"\",\n          \"description\": \"\"\n        }\n      ]\n    },\n    \"slug\": \"aerial-work-platforms\",\n    \"taxonomizedCategoryId\": {\n      \"value\": \"97a349a8-7700-422f-978b-b3be154172e7\"\n    },\n    \"usedForIds\": [\n      {\n        \"value\": 7\n      },\n      {\n        \"value\": 8\n      },\n      {\n        \"value\": 9\n      },\n      {\n        \"value\": 11\n      },\n      {\n        \"value\": 12\n      },\n      {\n        \"value\": 13\n      },\n      {\n        \"value\": 14\n      },\n      {\n        \"value\": 15\n      },\n      {\n        \"value\": 16\n      },\n      {\n        \"value\": 17\n      },\n      {\n        \"value\": 22\n      }\n    ],\n    \"meterTypeForValuation\": {\n      \"displayName\": {\n        \"translations\": [\n          {\n            \"languageId\": 0,\n            \"languageShortCode\": \"en_US\",\n            \"text\": \"Operating Hours\",\n            \"description\": \"Operating hours for an engine\"\n          },\n          {\n            \"languageId\": 1,\n            \"languageShortCode\": \"es_MX\",\n            \"text\": \"\",\n            \"description\": \"\"\n          },\n          {\n            \"languageId\": 2,\n            \"languageShortCode\": \"fr_CA\",\n            \"text\": \"\",\n            \"description\": \"\"\n          }\n        ]\n      },\n      \"name\": \"EngineOperatingTime\",\n      \"id\": 0,\n      \"rawTranslationKey\": \"EngineOperatingTime\",\n      \"translationKey\": \"enum.EngineOperatingTime\"\n    },\n    \"marketplaceCategory\": {\n      \"id\": {\n        \"value\": 47291582\n      },\n      \"slug\": \"lifts\",\n      \"synonyms\": [\n        \"lifts\",\n        \"lift\",\n        \"Articulated Boom Lift\",\n        \"Platform Lift\"\n      ],\n      \"categoryState\": 1,\n      \"imageUri\": \"https://via.placeholder.com/250\",\n      \"translationKey\": \"eq.lifts\",\n      \"category\": null\n    }\n  }\n]\n\n</code></pre>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"https","path":["taxonomyservice","taxonomy","subcategory"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"76aaf3e1-067d-459b-adb1-7c99dc8d0952","name":"Get Subcategories","originalRequest":{"method":"GET","header":[],"url":"https://api.boomandbucket.com/taxonomyservice/taxonomy/subcategory"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Mar 2024 19:08:31 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Request-Context","value":"appId=cid-v1:3695f997-cc2f-45f0-8294-f170c1613f5c"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"entityId\": {\n            \"value\": \"bf3641e5-7d59-4dc0-92f4-93812620c14c\"\n        },\n        \"name\": {\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Aerial Work Platforms\",\n                    \"description\": \"Aerial Work Platforms\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        \"slug\": \"aerial-work-platforms\",\n        \"taxonomizedCategoryId\": {\n            \"value\": \"97a349a8-7700-422f-978b-b3be154172e7\"\n        },\n        \"usedForIds\": [\n            {\n                \"value\": 7\n            },\n            {\n                \"value\": 8\n            },\n            {\n                \"value\": 9\n            },\n            {\n                \"value\": 11\n            },\n            {\n                \"value\": 12\n            },\n            {\n                \"value\": 13\n            },\n            {\n                \"value\": 14\n            },\n            {\n                \"value\": 15\n            },\n            {\n                \"value\": 16\n            },\n            {\n                \"value\": 17\n            },\n            {\n                \"value\": 22\n            }\n        ],\n        \"meterTypeForValuation\": {\n            \"displayName\": {\n                \"translations\": [\n                    {\n                        \"languageId\": 0,\n                        \"languageShortCode\": \"en_US\",\n                        \"text\": \"Operating Hours\",\n                        \"description\": \"Operating hours for an engine\"\n                    },\n                    {\n                        \"languageId\": 1,\n                        \"languageShortCode\": \"es_MX\",\n                        \"text\": \"\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"languageId\": 2,\n                        \"languageShortCode\": \"fr_CA\",\n                        \"text\": \"\",\n                        \"description\": \"\"\n                    }\n                ]\n            },\n            \"name\": \"EngineOperatingTime\",\n            \"id\": 0,\n            \"rawTranslationKey\": \"EngineOperatingTime\",\n            \"translationKey\": \"enum.EngineOperatingTime\"\n        },\n        \"marketplaceCategory\": {\n            \"id\": {\n                \"value\": 47291582\n            },\n            \"slug\": \"lifts\",\n            \"synonyms\": [\n                \"lifts\",\n                \"lift\",\n                \"Articulated Boom Lift\",\n                \"Platform Lift\"\n            ],\n            \"categoryState\": 1,\n            \"imageUri\": \"https://via.placeholder.com/250\",\n            \"translationKey\": \"eq.lifts\",\n            \"category\": null\n        }\n    },\n    {\n        \"entityId\": {\n            \"value\": \"0e017b03-6230-42ee-b0ab-f5e214c94f74\"\n        },\n        \"name\": {\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"All Terrain Cranes\",\n                    \"description\": \"All Terrain Cranes\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        \"slug\": \"all-terrain-cranes\",\n        \"taxonomizedCategoryId\": {\n            \"value\": \"412c362c-cde5-4cac-b4bd-79a41f3ab104\"\n        },\n        \"usedForIds\": [\n            {\n                \"value\": 6\n            },\n            {\n                \"value\": 19\n            }\n        ],\n        \"meterTypeForValuation\": {\n            \"displayName\": {\n                \"translations\": [\n                    {\n                        \"languageId\": 0,\n                        \"languageShortCode\": \"en_US\",\n                        \"text\": \"Operating Hours\",\n                        \"description\": \"Operating hours for an engine\"\n                    },\n                    {\n                        \"languageId\": 1,\n                        \"languageShortCode\": \"es_MX\",\n                        \"text\": \"\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"languageId\": 2,\n                        \"languageShortCode\": \"fr_CA\",\n                        \"text\": \"\",\n                        \"description\": \"\"\n                    }\n                ]\n            },\n            \"name\": \"EngineOperatingTime\",\n            \"id\": 0,\n            \"rawTranslationKey\": \"EngineOperatingTime\",\n            \"translationKey\": \"enum.EngineOperatingTime\"\n        },\n        \"marketplaceCategory\": {\n            \"id\": {\n                \"value\": 22443233\n            },\n            \"slug\": \"cranes\",\n            \"synonyms\": [\n                \"cranes\",\n                \"crane\",\n                \"Mounted Boom Truck Crane\"\n            ],\n            \"categoryState\": 1,\n            \"imageUri\": \"https://via.placeholder.com/250\",\n            \"translationKey\": \"eq.cranes\",\n            \"category\": null\n        }\n    },\n    {\n        \"entityId\": {\n            \"value\": \"4f9b04ef-6aa7-4abb-bae9-35e39e7e22d5\"\n        },\n        \"name\": {\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Articulated Tractors\",\n                    \"description\": \"Articulated Tractors\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        \"slug\": \"articulated-tractors\",\n        \"taxonomizedCategoryId\": {\n            \"value\": \"ef2978b0-8aa9-4432-9265-986e56eb14c5\"\n        },\n        \"usedForIds\": [],\n        \"meterTypeForValuation\": {\n            \"displayName\": {\n                \"translations\": [\n                    {\n                        \"languageId\": 0,\n                        \"languageShortCode\": \"en_US\",\n                        \"text\": \"Operating Hours\",\n                        \"description\": \"Operating hours for an engine\"\n                    },\n                    {\n                        \"languageId\": 1,\n                        \"languageShortCode\": \"es_MX\",\n                        \"text\": \"\",\n                        \"description\": \"\"\n                    },\n                    {\n                        \"languageId\": 2,\n                        \"languageShortCode\": \"fr_CA\",\n                        \"text\": \"\",\n                        \"description\": \"\"\n                    }\n                ]\n            },\n            \"name\": \"EngineOperatingTime\",\n            \"id\": 0,\n            \"rawTranslationKey\": \"EngineOperatingTime\",\n            \"translationKey\": \"enum.EngineOperatingTime\"\n        },\n        \"marketplaceCategory\": {\n            \"id\": {\n                \"value\": 12222059\n            },\n            \"slug\": \"agricultural-equipment\",\n            \"synonyms\": [\n                \"agriculturalequipment\",\n                \"agriculturalequipment\",\n                \"Round Balers\",\n                \"Combine\",\n                \"Utility Tractors\",\n                \"Zero-Turn Mowers\",\n                \"Combines\",\n                \"Tractor Loaders\",\n                \"Compact Utility Tractors\",\n                \"Manure Spreaders\",\n                \"Lawn & Garden Tractors\",\n                \"Rakes\",\n                \"Planters: Drawn\",\n                \"Bale Spears, etc.\",\n                \"Miscellaneous Tractor Attachments\",\n                \"Combine Platforms\",\n                \"Rotary Cutters: Heavy-Duty\",\n                \"Grain Carts\",\n                \"Baler\",\n                \"Mower Conditioners\",\n                \"Tractor\",\n                \"Field Cultivators\",\n                \"Row Crop Tractors\",\n                \"Stand-On Mowers\",\n                \"Bale Wrappers\",\n                \"Compact Utility Tractor\",\n                \"Compact Tractor\",\n                \"Miscellaneous Ag\",\n                \"Corn and Row Crop headers\",\n                \"Header carts\",\n                \"Windrower\",\n                \"Vertical Tillage\",\n                \"Self-Propelled Forage Harvesters\",\n                \"Rototillers\",\n                \"Planter\",\n                \"Rippers\",\n                \"Rotary Cutters\",\n                \"Precision Ag\",\n                \"Gravity Wagon\",\n                \"Tedders\",\n                \"Anhydrous Application\",\n                \"Attachments for Harvesting\",\n                \"Commercial Walk-Behind Mowers\",\n                \"Cutting Platform\",\n                \"Attachments for Hay\",\n                \"Track Tractors\",\n                \"Attachments: Tillage\",\n                \"Gravity Wagons and Boxes\",\n                \"Square Balers\",\n                \"Bale Grinders & Feeders\",\n                \"Rake\",\n                \"Rotary Cutters: Medium-Duty\",\n                \"Harvester\",\n                \"Grain Auger\",\n                \"Fertilizer Spreaders\",\n                \"Lawn Mower\",\n                \"Brush Mower\",\n                \"Self-Propelled Sprayers\",\n                \"Rolling Harrows\",\n                \"Snow Blowers for Lawn & Garden Tractors\",\n                \"Farm Tractor Mounted Blades, Box Blades\",\n                \"Moldboard Plows\",\n                \"Dry Spinner Spreaders\",\n                \"Mower Conditioner\",\n                \"Grooming Mowers\",\n                \"Compact and Garden Tractor Blades\",\n                \"Grooming Mower\",\n                \"Attachments for Lawn & Garden Tractors\",\n                \"Miscellaneous Turf\",\n                \"Mower\",\n                \"Bale Accumulators\",\n                \"Heavy Harrows\",\n                \"Hay Mowers Mounted\",\n                \"Disks\",\n                \"Bale Stabber\",\n                \"Strip Tillers\",\n                \"Mowers for Lawn & Garden Tractors\",\n                \"Bales Movers\",\n                \"Self-Propelled Applicators\",\n                \"Large Square Balers\",\n                \"Self Propelled Applicator\",\n                \"Harrow\",\n                \"Commercial Mowing Attachments\",\n                \"Gas Tiller\"\n            ],\n            \"categoryState\": 1,\n            \"imageUri\": \"https://via.placeholder.com/250\",\n            \"translationKey\": \"eq.agricultural-equipment\",\n            \"category\": null\n        }\n    }\n]"}],"_postman_id":"5da45314-73d9-4532-a85d-706e3a4fa4be"},{"name":"Get Equipment","id":"9a182d45-bda1-4d7a-9d38-9b3a827f4d3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.boomandbucket.com/equipmentservice/equipment/{equipmentId}","description":"<p>This endpoint provides detailed information about a specific piece of equipment, identified by its <code>equipmentId</code>.</p>\n<h2 id=\"path-parameters\">Path Parameters</h2>\n<ul>\n<li><code>equipmentId</code>: Unique identifier for the equipment.</li>\n</ul>\n<h3 id=\"response-format\">Response Format</h3>\n<p>The response is a JSON object containing various details about the equipment, including:</p>\n<ul>\n<li><code>id</code>: A unique identifier for the equipment.</li>\n<li><code>equipmentCategory</code> &amp; <code>equipmentCategorySlug</code>: Strings representing the equipment category and its URL-friendly slug.</li>\n<li><code>secondaryHours</code>, <code>mileage</code>, <code>model</code>, <code>make</code>: Various attributes of the equipment, like model and make.</li>\n<li><code>image</code>: A URL to an image of the equipment (if available).</li>\n<li><code>year</code>, <code>totalListingCount</code>, <code>hours</code>, <code>activeListingCount</code>: Year of manufacture, listing counts, and operating hours.</li>\n<li><code>listings</code>: An array of listing IDs associated with the equipment.</li>\n<li><code>inspections</code>: An array of inspection IDs.</li>\n<li><code>serialNumbers</code>: An array containing information about the equipment's serial numbers.</li>\n<li><code>fleetIdentifiers</code>: An array of fleet identifiers (if any).</li>\n<li><code>technicalSpecifications</code>: An array of objects, each with <code>translations</code> providing specifications in different languages.</li>\n<li><code>equipmentFeatures</code>: An array of objects detailing features of the equipment, with translations.</li>\n<li><code>dimensions</code>, <code>weight</code>: Physical dimensions and weight of the equipment.</li>\n<li><code>activeListing</code>: The ID of the active listing (if any).</li>\n<li><code>crmEquipmentId</code>: CRM-related identifiers and slugs.   </li>\n<li><code>urlSlug:</code> contains the year, make, model, category, and equipment ID to be used in the URL. Note, this contains the listing ID at the end, and that is no longer supported as a means to navigate to a piece of equipment. Stock number is required. </li>\n<li><code>slug</code>: The year, make, model, category that is in the URL for readability, eg boomandbucket.com/for-sale/<code>slug</code>/<code>stocknumber</code></li>\n<li><code>similarValuations</code>: An array of similar equipment valuations (not used anymore). </li>\n<li><code>emissions</code>: A number to specify the emissions type</li>\n<li><code>vehicleTitle</code>: Objects containing emission standards and vehicle title information.</li>\n<li><code>priorApplication</code>, <code>condition</code>, <code>highwayType</code>: Usage history and condition information.</li>\n<li><code>modelSlug</code>, <code>makeSlug</code>: Slugs (URL friendly) for the model and make.</li>\n<li><code>specificationsSheet</code>: An object containing a link to the specifications sheet.</li>\n<li><code>operatorsManual</code>, <code>originalPurchaseInvoice</code>, <code>vehicleTitleFrontAsset</code>, <code>vehicleTitleBackAsset</code>: Links to relevant documents (if available).</li>\n<li><code>taxonomizedSubCategoryId</code>: The subcategory ID for taxonomy purposes.</li>\n</ul>\n<h4 id=\"technical-specifications-and-features\">Technical Specifications and Features</h4>\n<ul>\n<li><code>technicalSpecifications</code> and <code>equipmentFeatures</code> fields include an array of objects with <code>translations</code> to accommodate multiple languages.</li>\n</ul>\n<h3 id=\"emissionstype\">EmissionsType</h3>\n<p>The <code>emissions</code> field in the equipment details response represents the emission standard of the equipment. It is an enumeration defined by the <code>EmissionsType</code> class, with each type corresponding to a specific emission standard. The possible values are:</p>\n<ul>\n<li><code>0</code>: NotSet - Indicates that the emission standard is not set or unknown.</li>\n<li><code>1</code>: Tier1 - Represents the Tier 1 emission standard.</li>\n<li><code>2</code>: Tier2 - Represents the Tier 2 emission standard.</li>\n<li><code>3</code>: Tier3 - Represents the Tier 3 emission standard.</li>\n<li><code>4</code>: Tier4 - Represents the Tier 4 emission standard.</li>\n<li><code>5</code>: Tier4i - Represents the Tier 4i (interim) emission standard.</li>\n<li><code>6</code>: Tier4A - Represents the Tier 4A emission standard.</li>\n<li><code>7</code>: Tier4B - Represents the Tier 4B emission standard.</li>\n<li><code>8</code>: Tier0 - Represents the Tier 0 emission standard, typically for older equipment.</li>\n</ul>\n<p>Each <code>EmissionsType</code> has a unique integer ID and a string name that describes the emission standard. This information is crucial for understanding the environmental compliance of the equipment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"https","path":["equipmentservice","equipment","{equipmentId}"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"5a305c96-c971-456e-b24f-c24db21f1c26","name":"Get Example Equipment","originalRequest":{"method":"GET","header":[],"url":"https://api.boomandbucket.com/equipmentservice/equipment/{equipmentId}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Mar 2024 19:10:37 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Request-Context","value":"appId=cid-v1:3695f997-cc2f-45f0-8294-f170c1613f5c"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d5333509-40d8-4ee8-872c-ea67be1a0bca\",\n    \"equipmentCategory\": \"eq.bulldozers\",\n    \"equipmentCategorySlug\": \"bulldozers\",\n    \"secondaryHours\": null,\n    \"mileage\": 0,\n    \"model\": \"D9T\",\n    \"make\": \"Caterpillar\",\n    \"image\": null,\n    \"year\": 2008,\n    \"totalListingCount\": 1,\n    \"hours\": 18772,\n    \"activeListingCount\": 0,\n    \"listings\": [\n        \"4f9efd68-38bb-4d64-b756-1c280565f5e2\"\n    ],\n    \"inspections\": [\n        \"ddb8a25d-4901-4299-bbfb-03628f4532c9\"\n    ],\n    \"serialNumbers\": [\n        {\n            \"id\": \"e8781985-d79f-4de4-82f2-2fb0a0886095\",\n            \"type\": 1,\n            \"translationKey\": \"sntype.primary\",\n            \"description\": \"\",\n            \"serialNumber\": \"DEMORJS01070DEMO\"\n        }\n    ],\n    \"fleetIdentifiers\": [],\n    \"technicalSpecifications\": [\n        {\n            \"id\": \"8583e2dd-ae04-451d-90e9-f1113dbb3d63\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Engine: CAT C18 ACERT 18.1L 435 Hp I6 TurboD\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"5e980676-bf0a-4ae5-84be-2db7831c317d\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Transmission: Powershift 3 FWRD + 3 REV\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"30b31c35-3d6e-4e48-a4cc-9864a9d47fa4\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Track Gauge: 88.6 in\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"3ad698aa-a88c-4871-a0fb-7daab3de1699\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Shoe Size: 24 in\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"bd990967-f2cc-4203-86be-971c5366a933\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Number of Shoes/Rollers: 43 per side, 8 track rollers per side\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"5ee28936-df6d-4c7b-9b55-ead27255b6d3\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Hydraulic Tank Capacity: 23.5 gal\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"389226c5-7469-4a6c-83f0-a02fbb2ab516\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Engine Oil Tank Capacity: 9.7 gal\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"66027c13-d650-44c5-84bf-f661e35344d6\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Coolant Capacity: 25.9 gal\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"65c6b27b-476e-4d07-a1f5-a60ffee44b90\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Hydraulic Relief (Lift): 2800 psi\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"961ada50-59b1-4f81-8bd9-6aa4fda0c030\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Hydraulic Relief (Steering): 5875 psi\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"44add8ff-cf8f-421e-a67c-e77632b3b444\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Blade: SU 17.7 yd3, 169 in, 15,130 lbs\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"a1231624-8ccf-4aa7-bc70-3579ad600d71\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Ripper: 2 Shank (included)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"718d14b7-83eb-4bd0-9638-f61bdec1d3c6\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Serial Number: RJS01070\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"6d473e84-674a-4eff-a874-7b4166ab531a\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Country of Origin: USA\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        }\n    ],\n    \"equipmentFeatures\": [\n        {\n            \"id\": \"d4719736-8dc7-49a5-8f23-16b642032cd4\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Versatile SU blade for a combination of force and material capacity\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"64d867b4-4271-4a74-a82b-de5a6be2cfc0\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Included 2 shank ripper\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"47777b9e-a6b3-4cb2-b4dd-d37fde2178d4\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Included OMM\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"30766f86-f72e-46f4-8412-5126e146ec38\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"CAT Product Link PL542 installed (subscription required) \",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"9b525297-cd91-427a-925f-284bcfcc806d\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Full maintenance and work order history provided\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        },\n        {\n            \"id\": \"b6a563f0-1130-4b08-80cc-96959326dab1\",\n            \"translations\": [\n                {\n                    \"languageId\": 0,\n                    \"languageShortCode\": \"en_US\",\n                    \"text\": \"Undercarriage replaced by Quinn CAT in July 2020 ($67k Repair)\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 1,\n                    \"languageShortCode\": \"es_MX\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                },\n                {\n                    \"languageId\": 2,\n                    \"languageShortCode\": \"fr_CA\",\n                    \"text\": \"\",\n                    \"description\": \"\"\n                }\n            ]\n        }\n    ],\n    \"dimensions\": \"Length: 193.3\\\" (274.3\\\" with blade), Width: 113.4\\\", Height: $157.5\\\"\",\n    \"weight\": \"80,062 lbs\",\n    \"activeListing\": \"4f9efd68-38bb-4d64-b756-1c280565f5e2\",\n    \"crmEquipmentId\": null,\n    \"urlSlug\": \"2008-caterpillar-d9t-bulldozers/4f9efd68-38bb-4d64-b756-1c280565f5e2\",\n    \"slug\": \"2008-caterpillar-d9t-bulldozers\",\n    \"similarValuations\": [],\n    \"emissions\": {\n        \"name\": null,\n        \"translationKey\": \"enum.tier4\",\n        \"rawTranslationKey\": \"Tier4\",\n        \"id\": 4\n    },\n    \"vehicleTitle\": {\n        \"name\": null,\n        \"translationKey\": \"enum.untitled\",\n        \"rawTranslationKey\": \"Untitled\",\n        \"id\": 2\n    },\n    \"priorApplication\": \"Waste Handling\",\n    \"condition\": 3,\n    \"highwayType\": 2,\n    \"modelSlug\": \"D9T\",\n    \"makeSlug\": \"Caterpillar\",\n    \"specificationsSheet\": {\n        \"id\": \"2e48617d-78e7-4427-a475-6304c3d55c41\",\n        \"resourceType\": \"raw\",\n        \"tags\": [],\n        \"altText\": \"\",\n        \"sortOrder\": 0,\n        \"path\": \"v1657574476/production/d5333509-40d8-4ee8-872c-ea67be1a0bca/documents/lkd9lzafrmqgtqcttrnp.pdf\",\n        \"publicId\": \"production/d5333509-40d8-4ee8-872c-ea67be1a0bca/documents/lkd9lzafrmqgtqcttrnp.pdf\",\n        \"url\": \"http://res.cloudinary.com/boom-and-bucket/raw/upload/v1657574476/production/d5333509-40d8-4ee8-872c-ea67be1a0bca/documents/lkd9lzafrmqgtqcttrnp.pdf\"\n    },\n    \"operatorsManual\": null,\n    \"originalPurchaseInvoice\": null,\n    \"vehicleTitleFrontAsset\": null,\n    \"vehicleTitleBackAsset\": null,\n    \"taxonomizedSubCategoryId\": \"eb690ae7-d78d-4005-9941-e3e798771856\"\n}"}],"_postman_id":"9a182d45-bda1-4d7a-9d38-9b3a827f4d3f"},{"name":"Get Listing","id":"98446145-6220-458e-a93f-9a9060d745f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.boomandbucket.com/listingservice/listing/{listingId}","description":"<p>This API endpoint retrieves details for a specific listing based on its Id.</p>\n<h2 id=\"path-parameters\">Path Parameters</h2>\n<ul>\n<li><code>listingId</code>: Unique identifier for the listing.</li>\n</ul>\n<p>This endpoint retrieves detailed information about a specific listing, identified by its <code>listingId</code>.</p>\n<h3 id=\"response-format\">Response Format</h3>\n<p>The response is a JSON object containing various details about the listing, including:</p>\n<ul>\n<li><code>id</code>: A unique identifier for the listing.</li>\n<li><code>priceStrategyType</code>, <code>originalEquipmentCostInCents</code>: Details about pricing strategy and original equipment cost.</li>\n<li><code>workflowState</code>, <code>displayState</code>: States representing the workflow and display status of the listing.</li>\n<li><code>fleetAdvisorId</code>, <code>buyerId</code>, <code>buyerCompanyId</code>, <code>sellerCompanyId</code>, <code>listingCompanyId</code>: IDs associated with the listing, including fleet advisor, buyer, and seller.</li>\n<li><code>equipmentId</code>: The ID of the equipment being listed.</li>\n<li><code>stockNumber</code>: Stock number of the listing.</li>\n<li><code>totalViewCount</code>, <code>marketplaceViewCount</code>: View counts on the listing.</li>\n<li><code>advertisedPriceHistory</code>: An array of price history objects, each with a timestamp (<code>item1</code>) and price (<code>item2</code>).</li>\n<li><code>soldDateTimeUTC</code>, <code>sellByDateTimeUtc</code>, <code>availableDateTimeUTC</code>: Timestamps for various listing states.</li>\n<li><code>marketplaceDescription</code>: A description of the listing, with <code>translations</code> for different languages.</li>\n<li><code>backofficeNotes</code>: Notes for internal use, with language-specific <code>translations</code>.</li>\n<li><code>flair</code>: An object indicating special attributes of the listing, like 'Demo'.</li>\n<li><code>lienTitleCheckDownload</code>: A link to download the lien title check (if available).</li>\n<li><code>thirdPartyStockNumber</code>, <code>isThirdPartyListing</code>: Information about third-party listings.</li>\n<li><code>dateTimeUtcActiveOnMarketplaceEmailSent</code>, <code>dateTimeUtcWentOnMarketplace</code>, <code>dateTimeUtcWentOffMarketplace</code>: Timestamps related to marketplace activity.</li>\n<li><code>lienAmountInCents</code>: The lien amount (if any) in cents.</li>\n<li><code>sellerContactId</code>, <code>equipmentLocationOfficeId</code>, <code>inspectionContactId</code>: Contact and location information for the listing.</li>\n<li><code>inventoryType</code>, <code>inventoryTypeOption</code>: Details about the type of inventory.</li>\n<li><code>dispositionStrategy</code>: The strategy for disposing of the equipment.</li>\n<li><code>valueProps</code>: An array of value proposition objects with <code>translations</code> for titles and descriptions.</li>\n</ul>\n<h3 id=\"listingdisplaystate\">ListingDisplayState</h3>\n<p>The <code>displayState</code> field in the listing response represents the current display status of a listing. It is an enumeration defined by the <code>ListingDisplayState</code> class, with each value representing a distinct state of listing visibility. The possible values are:</p>\n<ul>\n<li><code>0</code>: NotDisplayed - Indicates the listing is not currently displayed in the marketplace.</li>\n<li><code>1</code>: OnMarketplace - The listing is actively displayed and available on the marketplace.</li>\n<li><code>2</code>: OnMarketplaceAsInactive - The listing is displayed on the marketplace but marked as inactive, indicating it's not currently available for sale or other reasons.</li>\n<li><code>3</code>: (Obsolete) - This status is obsolete and should not be used, but it is retained for historical records in the event store.</li>\n</ul>\n<p>The <code>displayState</code> provides crucial information regarding the visibility and activity status of a listing in the marketplace.</p>\n<h3 id=\"dispositionstrategy\">DispositionStrategy</h3>\n<p>The <code>dispositionStrategy</code> field in the listing response represents the strategy used for disposing of the listed equipment.</p>\n<ul>\n<li><code>DirectToAuction</code>: This strategy indicates that the equipment will be sold directly through an auction. It is suitable for quick sales where market price determination is preferred.</li>\n<li><code>DirectToAuctionWithReserve</code>: Similar to the Direct to Auction strategy, but with a reserve price set. This ensures the equipment is not sold below a specified minimum price.</li>\n<li><code>BlendedDisposition</code>: This is a mixed approach, possibly combining direct sale and auction methods. It offers flexibility in how the equipment is sold.</li>\n<li><code>BlendedDispositionWithReserve</code>: A blend of sales methods with the inclusion of a reserve price for auctioned items. It combines the flexibility of the blended approach with the security of a minimum price guarantee.</li>\n</ul>\n<p>The <code>dispositionStrategy</code> provides insights into the sales approach chosen for the equipment, influencing how potential buyers might engage with the listing.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"https","path":["listingservice","listing","{listingId}"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"6a1a0f0b-b36a-48ca-a9f3-ca017e130968","name":"Get Listing","originalRequest":{"method":"GET","header":[],"url":"https://api.boomandbucket.com/listingservice/listing/4f9efd68-38bb-4d64-b756-1c280565f5e2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Fri, 15 Mar 2024 19:11:18 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Request-Context","value":"appId=cid-v1:3695f997-cc2f-45f0-8294-f170c1613f5c"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4f9efd68-38bb-4d64-b756-1c280565f5e2\",\n    \"priceStrategyType\": 0,\n    \"originalEquipmentCostInCents\": 0,\n    \"workflowState\": 2,\n    \"displayState\": 1,\n    \"fleetAdvisorId\": \"bf863471-5d58-4aa0-8bc4-5b17f936e87a\",\n    \"buyerId\": null,\n    \"buyerCompanyId\": null,\n    \"sellerCompanyId\": \"b163a2e9-c112-48a7-a6ed-33008b8b463a\",\n    \"listingCompanyId\": \"b163a2e9-c112-48a7-a6ed-33008b8b463a\",\n    \"equipmentId\": \"d5333509-40d8-4ee8-872c-ea67be1a0bca\",\n    \"stockNumber\": \"A4368382\",\n    \"totalViewCount\": 680,\n    \"marketplaceViewCount\": 114,\n    \"advertisedPriceHistory\": [\n        {\n            \"item1\": \"2022-07-11T00:00:00Z\",\n            \"item2\": 287995\n        },\n        {\n            \"item1\": \"2022-07-11T00:00:00Z\",\n            \"item2\": 277995\n        }\n    ],\n    \"soldDateTimeUTC\": null,\n    \"sellByDateTimeUtc\": null,\n    \"availableDateTimeUTC\": \"2022-10-14T00:00:00Z\",\n    \"marketplaceDescription\": {\n        \"translations\": [\n            {\n                \"languageId\": 0,\n                \"languageShortCode\": \"en_US\",\n                \"text\": \"This 2008 Caterpillar D9T is being sold by a large municipality. It comes equipped with the Caterpillar waste handling configuration which provides additional strength and durability to the frame. In 2020, this D9T had its undercarriage completely serviced/replaced by Quinn CAT (a $67k work order). As a government owned asset, it has been subject to a comprehensive preventative maintenance program throughout its life (full work order history is available for download). The inspection report for this dozer shows that it is in good overall condition (see operating video as well).\",\n                \"description\": \"\"\n            },\n            {\n                \"languageId\": 1,\n                \"languageShortCode\": \"es_MX\",\n                \"text\": \"\",\n                \"description\": \"\"\n            },\n            {\n                \"languageId\": 2,\n                \"languageShortCode\": \"fr_CA\",\n                \"text\": \"\",\n                \"description\": \"\"\n            }\n        ]\n    },\n    \"backofficeNotes\": {\n        \"translations\": [\n            {\n                \"languageId\": 0,\n                \"languageShortCode\": \"en_US\",\n                \"text\": \"This is a DEMO page. The purpose of this demo page is for fleet advisors to have a good example of what a seller's listing will look like on the Boom & Bucket platform.\",\n                \"description\": \"\"\n            },\n            {\n                \"languageId\": 1,\n                \"languageShortCode\": \"es_MX\",\n                \"text\": \"\",\n                \"description\": \"\"\n            },\n            {\n                \"languageId\": 2,\n                \"languageShortCode\": \"fr_CA\",\n                \"text\": \"\",\n                \"description\": \"\"\n            }\n        ]\n    },\n    \"flair\": {\n        \"name\": null,\n        \"translationKey\": \"enum.demo\",\n        \"rawTranslationKey\": \"Demo\",\n        \"id\": 4\n    },\n    \"lienTitleCheckDownload\": null,\n    \"thirdPartyStockNumber\": \"\",\n    \"synonyms\": [],\n    \"isThirdPartyListing\": false,\n    \"dateTimeUtcActiveOnMarketplaceEmailSent\": null,\n    \"dateTimeUtcWentOnMarketplace\": \"2022-07-11T21:53:53.239838Z\",\n    \"dateTimeUtcWentOffMarketplace\": \"0001-01-01T00:00:00\",\n    \"lienAmountInCents\": 0,\n    \"sellerContactId\": null,\n    \"equipmentLocationOfficeId\": {\n        \"value\": \"5e024559-7f7b-4aac-9ef5-becb30a94fce\"\n    },\n    \"inspectionContactId\": null,\n    \"inventoryType\": {\n        \"name\": null,\n        \"translationKey\": \"enum.owned\",\n        \"rawTranslationKey\": \"Owned\",\n        \"id\": 1\n    },\n    \"inventoryTypeOption\": 1,\n    \"dispositionStrategy\": null,\n    \"valueProps\": [\n        {\n            \"id\": \"00000000-0000-0000-1111-000000000014\",\n            \"sortOrder\": 0,\n            \"slug\": \"powerhouse-protection\",\n            \"title\": {\n                \"translations\": [\n                    {\n                        \"languageId\": 0,\n                        \"languageShortCode\": \"en_US\",\n                        \"text\": \"Powerhouse Protection\",\n                        \"description\": \"title\"\n                    },\n                    {\n                        \"languageId\": 1,\n                        \"languageShortCode\": \"es_MX\",\n                        \"text\": \"Protección de la central eléctrica\",\n                        \"description\": \"title\"\n                    },\n                    {\n                        \"languageId\": 2,\n                        \"languageShortCode\": \"fr_CA\",\n                        \"text\": \"\",\n                        \"description\": \"\"\n                    }\n                ]\n            },\n            \"description\": {\n                \"translations\": [\n                    {\n                        \"languageId\": 0,\n                        \"languageShortCode\": \"en_US\",\n                        \"text\": \"Our buyer guarantee protects your purchase against anything missed during inspection.\",\n                        \"description\": \"description\"\n                    },\n                    {\n                        \"languageId\": 1,\n                        \"languageShortCode\": \"es_MX\",\n                        \"text\": \"Nuestra garantía del comprador protege su compra contra cualquier cosa omitida durante la inspección.\",\n                        \"description\": \"description\"\n                    },\n                    {\n                        \"languageId\": 2,\n                        \"languageShortCode\": \"fr_CA\",\n                        \"text\": \"\",\n                        \"description\": \"\"\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"00000000-0000-0000-1111-000000000016\",\n            \"sortOrder\": 1,\n            \"slug\": \"no-payments-for-90-days\",\n            \"title\": {\n                \"translations\": [\n                    {\n                        \"languageId\": 0,\n                        \"languageShortCode\": \"en_US\",\n                        \"text\": \"No Payments For 90 Days\",\n                        \"description\": \"title\"\n                    },\n                    {\n                        \"languageId\": 1,\n                        \"languageShortCode\": \"es_MX\",\n                        \"text\": \"Sin pagos durante 90 días\",\n                        \"description\": \"title\"\n                    },\n                    {\n                        \"languageId\": 2,\n                        \"languageShortCode\": \"fr_CA\",\n                        \"text\": \"\",\n                        \"description\": \"\"\n                    }\n                ]\n            },\n            \"description\": {\n                \"translations\": [\n                    {\n                        \"languageId\": 0,\n                        \"languageShortCode\": \"en_US\",\n                        \"text\": \"Buy now, pay later for well qualified borrowers. Don't let heavy cost slow you down.\",\n                        \"description\": \"description\"\n                    },\n                    {\n                        \"languageId\": 1,\n                        \"languageShortCode\": \"es_MX\",\n                        \"text\": \"Compre ahora y pague después para prestatarios bien calificados. No permita que los costos elevados lo ralenticen.\",\n                        \"description\": \"description\"\n                    },\n                    {\n                        \"languageId\": 2,\n                        \"languageShortCode\": \"fr_CA\",\n                        \"text\": \"\",\n                        \"description\": \"\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"98446145-6220-458e-a93f-9a9060d745f1"},{"name":"Get Market Report","id":"5da52789-f1ea-4699-920d-5d5624fd6207","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.boomandbucket.com/valuationservice/valuation/iron-insight/summarized?make=Caterpillar&model=259D&year=2019&meter=4000&taxonomizedSubCategorySlug=skid-steer-loaders&downloadReport=false","description":"<h2 id=\"description\">Description</h2>\n<p>This API endpoint retrieves summarized valuation insights for heavy equipment based on specific criteria including make, model, year, meter reading, and an option to download a detailed report. It is particularly useful for quickly accessing a summarized view of both retail and auction value estimates for a given piece of equipment.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The endpoint accepts the following parameters in the query string:</p>\n<ul>\n<li><code>make</code>: The manufacturer of the equipment.</li>\n<li><code>model</code>: The specific model of the equipment.</li>\n<li><code>year</code>: The year of manufacture of the equipment.</li>\n<li><code>meter</code>: The meter reading (in hours or miles) indicating usage of the equipment.</li>\n<li><code>taxonomizedSubCategorySlug</code> (optional): provide one of the subcategories that match for this equipment, this enables precision search to match exactly, this is particularly helpful for on-highway equipment.</li>\n<li><code>downloadReport</code>: A boolean parameter (<code>true</code> or <code>false</code>) indicating whether to download a detailed Excel report instead of a JSON version of the valuation summary.</li>\n</ul>\n<h3 id=\"response-object\">Response Object</h3>\n<p>The API returns a JSON object containing valuation details with the following fields:</p>\n<ul>\n<li><code>retailConfidenceIntervalHighPriceInCents</code>: The upper limit of the retail price estimate in cents.</li>\n<li><code>retailConfidenceIntervalLowPriceInCents</code>: The lower limit of the retail price estimate in cents.</li>\n<li><code>auctionConfidenceIntervalHighPriceInCents</code>: The upper limit of the auction price estimate in cents.</li>\n<li><code>auctionConfidenceIntervalLowPriceInCents</code>: The lower limit of the auction price estimate in cents.</li>\n<li><code>retailConfidencePercentage</code>: The confidence level of the retail price estimate expressed as a percentage.</li>\n<li><code>retailConfidenceScore</code>: The confidence level of the retail estimate, expressed in text.</li>\n<li><code>auctionConfidencePercentage</code>: The confidence level of the auction price estimate expressed as a percentage.</li>\n<li><code>auctionConfidenceScore</code>: The confidence level of the retail estimate, expressed in text.</li>\n<li><code>retailComparableCount</code>: The number of comparable equipment pieces used to determine the retail valuation.</li>\n<li><code>auctionComparableCount</code>: The number of comparable equipment pieces used to determine the auction valuation.</li>\n<li><code>retailMinPriceInCents</code>: The minimum reasonable retail comparable value in cents.</li>\n<li><code>retailMaxPriceInCents</code>: The maximum reasonable retail comparable value in cents.</li>\n<li><code>auctionMinPriceInCents</code>: The minimum reasonable auction comparable value in cents.</li>\n</ul>\n<h3 id=\"response-headers\">Response Headers</h3>\n<p>When the <code>downloadReport</code> request parameter is set to <code>true</code>, the response will contain the generated report file with the following headers:</p>\n<ul>\n<li><p><code>Content-Type</code>: with a value of <code>application/octet-stream</code></p>\n</li>\n<li><p><code>Content-Disposition</code>: with a value of the file name</p>\n</li>\n</ul>\n<h2 id=\"disclaimer-for-estimations\">Disclaimer for Estimations</h2>\n<p>While this API aims to provide accurate and up-to-date valuation insights, the following factors should be considered:</p>\n<ol>\n<li><strong>Variability in Equipment Condition</strong>: Valuations are based on standard equipment conditions and may not reflect variations in actual conditions.</li>\n<li><strong>Data Accuracy</strong>: The accuracy of the valuation is dependent on the correctness of the input parameters (make, model, year, and meter reading).</li>\n<li><strong>Market Fluctuations</strong>: Equipment values can fluctuate due to market conditions, which may not be immediately reflected in the estimates.</li>\n<li><strong>Comparative Data Limitations</strong>: The number of comparable equipment pieces affects the confidence level of the valuation. Limited data points can impact the accuracy of the estimate.</li>\n<li><strong>Use for Guidance</strong>: These valuations should be used as a guide and not as the sole basis for investment or transaction decisions. For a more detailed and personalized valuation, consulting with a Boom and Bucket fleet advisor is recommended.</li>\n</ol>\n<h3 id=\"precision-search-optional\">Precision Search (optional)</h3>\n<p>The default valuation endpoints are very good at matching equipment, and if it can not find exact matches it uses a fuzzy search to find like makes and models to generate the market report.</p>\n<p>We have an optional <code>taxonomizedSubCategorySlug</code> parameter which will ensure that the fuzzy match will only match exclusively to that subcategory.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>taxonomizedSubCategorySlug</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\"mini-excavators\"</td>\n</tr>\n<tr>\n<td>\"excavators\"</td>\n</tr>\n<tr>\n<td>\"long-reach-excavators\"</td>\n</tr>\n<tr>\n<td>\"wheel-excavators\"</td>\n</tr>\n<tr>\n<td>\"specialty-excavators\"</td>\n</tr>\n<tr>\n<td>\"dozers\"</td>\n</tr>\n<tr>\n<td>\"wheel-dozers\"</td>\n</tr>\n<tr>\n<td>\"wheel-loaders\"</td>\n</tr>\n<tr>\n<td>\"track-loaders\"</td>\n</tr>\n<tr>\n<td>\"backhoe-loaders\"</td>\n</tr>\n<tr>\n<td>\"skip-loaders\"</td>\n</tr>\n<tr>\n<td>\"skid-steer-loaders\"</td>\n</tr>\n<tr>\n<td>\"compact-track-loaders\"</td>\n</tr>\n<tr>\n<td>\"motor-graders\"</td>\n</tr>\n<tr>\n<td>\"road-reclaimers\"</td>\n</tr>\n<tr>\n<td>\"track-cold-planers\"</td>\n</tr>\n<tr>\n<td>\"wheel-cold-planers\"</td>\n</tr>\n<tr>\n<td>\"track-asphalt-pavers\"</td>\n</tr>\n<tr>\n<td>\"wheel-asphalt-pavers\"</td>\n</tr>\n<tr>\n<td>\"screeds\"</td>\n</tr>\n<tr>\n<td>\"motor-scrapers\"</td>\n</tr>\n<tr>\n<td>\"pull-scrapers\"</td>\n</tr>\n<tr>\n<td>\"single-drum-vibratory-rollers\"</td>\n</tr>\n<tr>\n<td>\"double-drum-vibratory-rollers\"</td>\n</tr>\n<tr>\n<td>\"smooth-rollers\"</td>\n</tr>\n<tr>\n<td>\"pneumatic-tire-rollers\"</td>\n</tr>\n<tr>\n<td>\"sheepsfoot-rollers\"</td>\n</tr>\n<tr>\n<td>\"self-propelled-roller\"</td>\n</tr>\n<tr>\n<td>\"telehandlers\"</td>\n</tr>\n<tr>\n<td>\"forklifts\"</td>\n</tr>\n<tr>\n<td>\"aerial-work-platforms\"</td>\n</tr>\n<tr>\n<td>\"boom-lifts\"</td>\n</tr>\n<tr>\n<td>\"scissor-lifts\"</td>\n</tr>\n<tr>\n<td>\"vertical-mast-lifts\"</td>\n</tr>\n<tr>\n<td>\"pipelayers\"</td>\n</tr>\n<tr>\n<td>\"trenchers\"</td>\n</tr>\n<tr>\n<td>\"foundation--piling-drills\"</td>\n</tr>\n<tr>\n<td>\"directional-drills\"</td>\n</tr>\n<tr>\n<td>\"blasthole-drills\"</td>\n</tr>\n<tr>\n<td>\"articulated-trucks\"</td>\n</tr>\n<tr>\n<td>\"rigid-haul-trucks\"</td>\n</tr>\n<tr>\n<td>\"hydraulic-shovels\"</td>\n</tr>\n<tr>\n<td>\"power-shovels\"</td>\n</tr>\n<tr>\n<td>\"draglines\"</td>\n</tr>\n<tr>\n<td>\"generators\"</td>\n</tr>\n<tr>\n<td>\"mounted-boom-truck-cranes\"</td>\n</tr>\n<tr>\n<td>\"mounted-knuckle-boom-cranes\"</td>\n</tr>\n<tr>\n<td>\"fuel-trucks\"</td>\n</tr>\n<tr>\n<td>\"water-trucks\"</td>\n</tr>\n<tr>\n<td>\"vacuum-trucks\"</td>\n</tr>\n<tr>\n<td>\"service-trucks\"</td>\n</tr>\n<tr>\n<td>\"single-axle-dump-trucks\"</td>\n</tr>\n<tr>\n<td>\"multi-axle-dump-trucks\"</td>\n</tr>\n<tr>\n<td>\"flatbed-dump-trucks\"</td>\n</tr>\n<tr>\n<td>\"flatbed-trucks\"</td>\n</tr>\n<tr>\n<td>\"stake-trucks\"</td>\n</tr>\n<tr>\n<td>\"dry-van-trucks\"</td>\n</tr>\n<tr>\n<td>\"moving-van-trucks\"</td>\n</tr>\n<tr>\n<td>\"reefer-trucks\"</td>\n</tr>\n<tr>\n<td>\"mixer-trucks\"</td>\n</tr>\n<tr>\n<td>\"conventional-day-cab-trucks\"</td>\n</tr>\n<tr>\n<td>\"conventional-trucks-with-sleeper\"</td>\n</tr>\n<tr>\n<td>\"cabover-trucks-with-sleeper\"</td>\n</tr>\n<tr>\n<td>\"chipper-trucks\"</td>\n</tr>\n<tr>\n<td>\"curtain-side-trucks\"</td>\n</tr>\n<tr>\n<td>\"digger-derrick-trucks\"</td>\n</tr>\n<tr>\n<td>\"grapple-trucks\"</td>\n</tr>\n<tr>\n<td>\"hooklift-trucks\"</td>\n</tr>\n<tr>\n<td>\"logging-trucks\"</td>\n</tr>\n<tr>\n<td>\"winch-trucks\"</td>\n</tr>\n<tr>\n<td>\"yard-spotter-trucks\"</td>\n</tr>\n<tr>\n<td>\"concrete-pump-trucks\"</td>\n</tr>\n<tr>\n<td>\"expeditor-trucks\"</td>\n</tr>\n<tr>\n<td>\"grain-trucks\"</td>\n</tr>\n<tr>\n<td>\"plow-trucks\"</td>\n</tr>\n<tr>\n<td>\"sweeper-trucks\"</td>\n</tr>\n<tr>\n<td>\"dry-cargo-trucks\"</td>\n</tr>\n<tr>\n<td>\"moving-trucks\"</td>\n</tr>\n<tr>\n<td>\"reefer-trucks\"</td>\n</tr>\n<tr>\n<td>\"pickup-trucks\"</td>\n</tr>\n<tr>\n<td>\"cargo-vans\"</td>\n</tr>\n<tr>\n<td>\"service-utility-vans\"</td>\n</tr>\n<tr>\n<td>\"reefer-vans\"</td>\n</tr>\n<tr>\n<td>\"double-drop-trailers\"</td>\n</tr>\n<tr>\n<td>\"drop-deck-trailers\"</td>\n</tr>\n<tr>\n<td>\"drop-frame-van-trailers\"</td>\n</tr>\n<tr>\n<td>\"dry-van-trailers\"</td>\n</tr>\n<tr>\n<td>\"dump-trailers\"</td>\n</tr>\n<tr>\n<td>\"flatbed-trailers\"</td>\n</tr>\n<tr>\n<td>\"grain-trailers\"</td>\n</tr>\n<tr>\n<td>\"log-trailers\"</td>\n</tr>\n<tr>\n<td>\"lowboy-trailers\"</td>\n</tr>\n<tr>\n<td>\"oilfied-trailers\"</td>\n</tr>\n<tr>\n<td>\"reefer-trailers\"</td>\n</tr>\n<tr>\n<td>\"roll-off-trailers\"</td>\n</tr>\n<tr>\n<td>\"crude-oil-trailers\"</td>\n</tr>\n<tr>\n<td>\"fuel-tank-trailers\"</td>\n</tr>\n<tr>\n<td>\"vacuum-tank-trailers\"</td>\n</tr>\n<tr>\n<td>\"water-tank-trailers\"</td>\n</tr>\n<tr>\n<td>\"utility-trailers\"</td>\n</tr>\n<tr>\n<td>\"light-towers\"</td>\n</tr>\n<tr>\n<td>\"bucket-trucks\"</td>\n</tr>\n<tr>\n<td>\"all-terrain-cranes\"</td>\n</tr>\n<tr>\n<td>\"carry-deck-cranes\"</td>\n</tr>\n<tr>\n<td>\"crawler-cranes\"</td>\n</tr>\n<tr>\n<td>\"overhead-cranes\"</td>\n</tr>\n<tr>\n<td>\"rough-terrain-cranes\"</td>\n</tr>\n<tr>\n<td>\"tower-cranes\"</td>\n</tr>\n<tr>\n<td>\"telescopic-cranes\"</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"https","path":["valuationservice","valuation","iron-insight","summarized"],"host":["api","boomandbucket","com"],"query":[{"description":{"content":"<p>The make or manufacturer of the equipment.</p>\n","type":"text/plain"},"key":"make","value":"Caterpillar"},{"description":{"content":"<p>The model of the equipment, ensure that special characters that are not URL friendly are encoded correctly.</p>\n","type":"text/plain"},"key":"model","value":"259D"},{"description":{"content":"<p>The year the equipment was manufactured.</p>\n","type":"text/plain"},"key":"year","value":"2019"},{"description":{"content":"<p>The hours or miles the equipment has on its primary meter, some equipment may have several meters, use the primary meter for that model.</p>\n","type":"text/plain"},"key":"meter","value":"4000"},{"description":{"content":"<p>If provided, this will enable precision search to refine the comparables to determine the estimation.</p>\n","type":"text/plain"},"key":"taxonomizedSubCategorySlug","value":"skid-steer-loaders"},{"description":{"content":"<p>If true, will download a Excel file with the comparables and detailed analytics. If false, will return a summary of the estimation.</p>\n","type":"text/plain"},"key":"downloadReport","value":"false"}],"variable":[]}},"response":[{"id":"4a33be7a-7804-49e4-8f63-4c1e7511cf22","name":"2019 Caterpillar 259D","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.boomandbucket.com/valuationservice/valuation/iron-insight/summarized?make=Caterpillar&model=259D&year=2019&meter=5000&downloadReport=false","protocol":"https","host":["api","boomandbucket","com"],"path":["valuationservice","valuation","iron-insight","summarized"],"query":[{"key":"make","value":"Caterpillar"},{"key":"model","value":"259D"},{"key":"year","value":"2019"},{"key":"meter","value":"5000"},{"key":"downloadReport","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 07 Feb 2024 19:13:26 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Request-Context","value":"appId=cid-v1:3695f997-cc2f-45f0-8294-f170c1613f5c"}],"cookie":[],"responseTime":null,"body":"{\n    \"retailConfidenceIntervalHighPriceInCents\": 5678600,\n    \"retailConfidenceIntervalLowPriceInCents\": 3311600,\n    \"auctionConfidenceIntervalHighPriceInCents\": 3307000,\n    \"auctionConfidenceIntervalLowPriceInCents\": 2949400,\n    \"retailConfidencePercentage\": 54.58318920788654,\n    \"auctionConfidencePercentage\": 11.450161698312574,\n    \"retailComparableCount\": 90,\n    \"auctionComparableCount\": 90,\n    \"retailConfidenceScore\": \"Low\",\n    \"auctionConfidenceScore\": \"Medium\"\n}"},{"id":"41db9734-6c2b-4024-93ee-c4d5953fae8a","name":"2019 Caterpillar 259D (Precision Search)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.boomandbucket.com/valuationservice/valuation/iron-insight/summarized?make=Caterpillar&model=259D&year=2019&meter=5000&taxonomizedSubCategorySlug=skid-steer-loaders&downloadReport=false","protocol":"https","host":["api","boomandbucket","com"],"path":["valuationservice","valuation","iron-insight","summarized"],"query":[{"key":"make","value":"Caterpillar"},{"key":"model","value":"259D"},{"key":"year","value":"2019"},{"key":"meter","value":"5000"},{"key":"taxonomizedSubCategorySlug","value":"skid-steer-loaders"},{"key":"downloadReport","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 07 Feb 2024 19:13:26 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Request-Context","value":"appId=cid-v1:3695f997-cc2f-45f0-8294-f170c1613f5c"}],"cookie":[],"responseTime":null,"body":"{\n    \"retailConfidenceIntervalHighPriceInCents\": 5017800,\n    \"retailConfidenceIntervalLowPriceInCents\": 4329300,\n    \"auctionConfidenceIntervalHighPriceInCents\": 2596400,\n    \"auctionConfidenceIntervalLowPriceInCents\": 2538300,\n    \"retailConfidencePercentage\": 14.772142121524201,\n    \"auctionConfidencePercentage\": 2.263166095356809,\n    \"retailComparableCount\": 9,\n    \"auctionComparableCount\": 5,\n    \"retailConfidenceScore\": \"Medium\",\n    \"auctionConfidenceScore\": \"High\"\n}"},{"id":"ef7d7f37-c021-4c5f-a923-0cfb17d750bc","name":"2022 Bobcat E26","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.boomandbucket.com/valuationservice/valuation/iron-insight/summarized?make=Bobcat&model=E-26&year=2019&meter=1324&downloadReport=false","protocol":"https","host":["api","boomandbucket","com"],"path":["valuationservice","valuation","iron-insight","summarized"],"query":[{"key":"make","value":"Bobcat"},{"key":"model","value":"E-26"},{"key":"year","value":"2019"},{"key":"meter","value":"1324"},{"key":"taxonomizedSubCategorySlug","value":"mini-excavator","disabled":true},{"key":"downloadReport","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 07 Feb 2024 19:13:26 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Request-Context","value":"appId=cid-v1:3695f997-cc2f-45f0-8294-f170c1613f5c"}],"cookie":[],"responseTime":null,"body":"{\n    \"retailConfidenceIntervalHighPriceInCents\": 3327200,\n    \"retailConfidenceIntervalLowPriceInCents\": 3065100,\n    \"auctionConfidenceIntervalHighPriceInCents\": 2526900,\n    \"auctionConfidenceIntervalLowPriceInCents\": 2005300,\n    \"retailConfidencePercentage\": 8.207553078223837,\n    \"auctionConfidencePercentage\": 23.17192358951577,\n    \"retailComparableCount\": 90,\n    \"auctionComparableCount\": 90,\n    \"retailConfidenceScore\": \"High\",\n    \"auctionConfidenceScore\": \"Medium\"\n}"},{"id":"728bd5bc-eca5-454c-aa14-3995cc38a3cc","name":"2019 Ford F750 Flatbed Truck","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.boomandbucket.com/valuationservice/valuation/iron-insight/summarized?make=Ford&model=F750&year=2019&meter=75000&taxonomizedSubCategorySlug=flatbed-trucks&downloadReport=false","protocol":"https","host":["api","boomandbucket","com"],"path":["valuationservice","valuation","iron-insight","summarized"],"query":[{"key":"make","value":"Ford"},{"key":"model","value":"F750"},{"key":"year","value":"2019"},{"key":"meter","value":"75000"},{"key":"taxonomizedSubCategorySlug","value":"flatbed-trucks"},{"key":"downloadReport","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 07 Feb 2024 19:13:26 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Request-Context","value":"appId=cid-v1:3695f997-cc2f-45f0-8294-f170c1613f5c"}],"cookie":[],"responseTime":null,"body":"{\n    \"retailConfidenceIntervalHighPriceInCents\": 3167700,\n    \"retailConfidenceIntervalLowPriceInCents\": 2199700,\n    \"auctionConfidenceIntervalHighPriceInCents\": 3028500,\n    \"auctionConfidenceIntervalLowPriceInCents\": 1323400,\n    \"retailConfidencePercentage\": 36.670833806872,\n    \"auctionConfidencePercentage\": 85.16983016983018,\n    \"retailComparableCount\": 46,\n    \"auctionComparableCount\": 13,\n    \"retailConfidenceScore\": \"Low\",\n    \"auctionConfidenceScore\": \"Low\"\n}"},{"id":"0a616e28-05b1-442c-8c71-b4e1ae063793","name":"2018 KOMATSU PC210 LC-11","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.boomandbucket.com/valuationservice/valuation/iron-insight/summarized?make=KOMATSU&model=PC210 LC-11&year=2018&meter=5000&taxonomizedSubCategorySlug=excavators&downloadReport=true","protocol":"https","host":["api","boomandbucket","com"],"path":["valuationservice","valuation","iron-insight","summarized"],"query":[{"key":"make","value":"KOMATSU"},{"key":"model","value":"PC210 LC-11"},{"key":"year","value":"2018"},{"key":"meter","value":"5000"},{"key":"taxonomizedSubCategorySlug","value":"excavators"},{"key":"downloadReport","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 07 Feb 2024 19:13:26 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Request-Context","value":"appId=cid-v1:3695f997-cc2f-45f0-8294-f170c1613f5c"}],"cookie":[],"responseTime":null,"body":"{\n    \"retailConfidenceIntervalHighPriceInCents\": 13501200,\n    \"retailConfidenceIntervalLowPriceInCents\": 12056100,\n    \"auctionConfidenceIntervalHighPriceInCents\": 9839400,\n    \"auctionConfidenceIntervalLowPriceInCents\": 8414000,\n    \"retailConfidencePercentage\": 11.32683293881582,\n    \"auctionConfidencePercentage\": 15.66580208379127,\n    \"retailComparableCount\": 90,\n    \"auctionComparableCount\": 45,\n    \"retailConfidenceScore\": \"Medium\",\n    \"auctionConfidenceScore\": \"Medium\"\n}"},{"id":"71b074d4-b4d2-462f-9e57-3949a23d40a5","name":"2012 John Deere 672G","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.boomandbucket.com/valuationservice/valuation/iron-insight/summarized?make=John DEERE&model=672G&year=2012&meter=15000&downloadReport=false","protocol":"https","host":["api","boomandbucket","com"],"path":["valuationservice","valuation","iron-insight","summarized"],"query":[{"key":"make","value":"John DEERE"},{"key":"model","value":"672G"},{"key":"year","value":"2012"},{"key":"meter","value":"15000"},{"key":"downloadReport","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Date","value":"Wed, 07 Feb 2024 19:13:26 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Request-Context","value":"appId=cid-v1:3695f997-cc2f-45f0-8294-f170c1613f5c"}],"cookie":[],"responseTime":null,"body":"{\n    \"retailConfidenceIntervalHighPriceInCents\": 10775700,\n    \"retailConfidenceIntervalLowPriceInCents\": 9270900,\n    \"auctionConfidenceIntervalHighPriceInCents\": 7196900,\n    \"auctionConfidenceIntervalLowPriceInCents\": 5034400,\n    \"retailConfidencePercentage\": 15.05552776388194,\n    \"auctionConfidencePercentage\": 35.92610436429485,\n    \"retailComparableCount\": 87,\n    \"auctionComparableCount\": 26,\n    \"retailConfidenceScore\": \"Medium\",\n    \"auctionConfidenceScore\": \"Low\"\n}"}],"_postman_id":"5da52789-f1ea-4699-920d-5d5624fd6207"},{"name":"Add Digital Asset","id":"786ffe81-f40e-4c24-b721-70b7bf12bbc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"\"<url_of_digita_asset>\"","options":{"raw":{"language":"json"}}},"url":"http://api.boomandbucket.com/inspectionservice/inspection/{inspectionId}/digitalasset/external","description":"<p>This endpoint allows you to upload a digital asset (image) externally for an inspection.</p>\n<p>The <code>inspectionId</code> for an equipment can be retrieved using the <a href=\"https://www.postman.com/boom-and-bucket/workspace/boom-and-bucket/request/32551519-9a182d45-bda1-4d7a-9d38-9b3a827f4d3f?ctx=documentation\">Get Equipment</a> endpoint. The response includes the <code>inspectionId</code> of the inspection tied to that equipment.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li>the url of digital assest as a JSON string in the body of the request (please make sure the url is wrapped in double quotes)</li>\n</ul>\n<h2 id=\"response\">Response:</h2>\n<ul>\n<li>Successful response: HTTP Status <code>200 OK</code> with the id of the digital asset that was posted.</li>\n<li>Error response: HTTP Status <code>400 Bad Request</code> with details in the response body.</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"http","path":["inspectionservice","inspection","{inspectionId}","digitalasset","external"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"5db112ea-a4c4-459c-a2a3-66f2bf8669db","name":"Post Digital Asset","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"\"https://www.boomandbucket.com/_next/static/media/excavators.f7836e7f.jpg\"","options":{"raw":{"language":"json"}}},"url":"http://api.boomandbucket.com/inspectionservice/inspection/8449101a-ce30-4ba4-9fa6-2dc3c32c9361/digitalasset/external"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"fdb843af-5a73-4613-9903-46b5bca7f7b9"}],"_postman_id":"786ffe81-f40e-4c24-b721-70b7bf12bbc7"},{"name":"Add Equipment Feature","id":"f4ba36a7-2176-4a51-a854-254b29f160db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"http://api.boomandbucket.com/equipmentservice/equipment/{equipmentId}/feature","description":"<p>This endpoint allows you to add one feature to a specific equipment.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><code>feature</code> (array): An array with one item as follows:<ul>\n<li><code>text</code> (string): The name of the feature</li>\n<li><code>description</code> (string) (optional): A description of the feature</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"response\">Response:</h2>\n<ul>\n<li>Successful response: HTTP Status <code>200 OK</code> with the id of the feature that was posted.</li>\n<li>Error response: HTTP Status <code>400 Bad Request</code> with details in the response body.</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"http","path":["equipmentservice","equipment","{equipmentId}","feature"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"d815487d-8f89-4932-ba62-9f3e81ebc719","name":"Post Equipment Feature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"feature\": [\r\n    {\r\n      \"text\": \"Hydraulic Coupler\",\r\n      \"description\": \"Hydraulic Coupler\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"http://api.boomandbucket.com/equipmentservice/equipment/a783c967-a69f-42e6-bb7f-0e77d160bf35/feature"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n\"2035bfbe-3c77-4efd-ac06-1a11ce4bf580\"\n]"}],"_postman_id":"f4ba36a7-2176-4a51-a854-254b29f160db"},{"name":"Modify Equipment Feature","id":"ca165203-019a-4e3b-a4f5-52235952c84b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"http://api.boomandbucket.com/equipmentservice/equipment/{equipmentId}/feature/{featureId}","description":"<p>This endpoint allows you to modify a feature associated with a particular equipment.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><code>text</code> (string): The modified name of the feature</li>\n<li><code>description</code> (string) (optional): The modified description of the feature</li>\n</ul>\n<h2 id=\"response\">Response:</h2>\n<ul>\n<li>Successful response: HTTP Status <code>200 OK</code>.</li>\n<li>Error response: HTTP Status <code>400 Bad Request</code> with details in the response body.</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"http","path":["equipmentservice","equipment","{equipmentId}","feature","{featureId}"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"bdf8c3a7-3641-43c5-ad93-c5e44483856a","name":"Modify Equipment Feature","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"text\": \"Enclosed Cab\",\r\n    \"description\": \"Enclosed Cab\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://api.boomandbucket.com/equipmentservice/equipment/4f909240-ef90-4cb2-a8bf-c73ddeda625c}/feature/65717ea9-66de-4195-87b2-b978251e828f}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ca165203-019a-4e3b-a4f5-52235952c84b"},{"name":"Remove Equipment Feature","id":"a9a1db9e-6782-410a-9f24-dd8ca6670bec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://api.boomandbucket.com/equipmentservice/equipment/{equipmentId}/feature/{featureId}","description":"<p>This endpoint removes a feature associated with a particular equipment.</p>\n<h2 id=\"response\">Response:</h2>\n<ul>\n<li>Successful response: HTTP Status <code>200 OK</code>.</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"http","path":["equipmentservice","equipment","{equipmentId}","feature","{featureId}"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"4e50d0bc-5472-41aa-87fb-5408be735377","name":"Remove Equipment Feature","originalRequest":{"method":"DELETE","header":[],"url":"http://api.boomandbucket.com/equipmentservice/equipment/97a35e54-ba0a-4749-8ea9-b2e4b48f37eb}/feature/97bbb79a-bb87-4d7e-90dd-97edc050fd40"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a9a1db9e-6782-410a-9f24-dd8ca6670bec"},{"name":"Add Equipment Specification","id":"265d56bc-f928-48db-95ff-3b54f3d44aba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"http://api.boomandbucket.com/equipmentservice/equipment/{equipmentId}/technicalspec","description":"<p>This endpoint allows you to add one specification to a specific equipment.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><code>technicalSpecification</code> (array): An array with one item as follows:<ul>\n<li><code>text</code> (string): The specification text</li>\n<li><code>description</code> (string) (optional): A description of the specification</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"response\">Response:</h2>\n<ul>\n<li><p>Successful response: HTTP Status <code>200 OK</code> with the id of the specification that was posted.</p>\n</li>\n<li><p>Error response: HTTP Status <code>400 Bad Request</code> with details in the response body.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"http","path":["equipmentservice","equipment","{equipmentId}","technicalspec"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"fb8d6d08-2b5e-426f-a294-a27c11219801","name":"Add Equipment Specification","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"technicalSpecification\": [\r\n    {\r\n      \"text\": \"EPA Tier 2\",\r\n      \"description\": \"EPA Tier 2\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"http://api.boomandbucket.com/equipmentservice/equipment/657955c0-9fef-49bb-be97-b37ef9a7ed70}/technicalspec"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    \"70cf37e7-e91b-4bc2-8519-a086111dab8b\"\n]"}],"_postman_id":"265d56bc-f928-48db-95ff-3b54f3d44aba"},{"name":"Modify Equipment Specification","id":"89cd8d6b-48f0-4e58-a3dd-bb6f772bfaec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"http://api.boomandbucket.com/equipmentservice/equipment/{equipmentId}/technicalspec/{specId}","description":"<p>This endpoint allows you to modify a specification associated with a particular equipment.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><p><code>text</code> (string): The modified name of the specification</p>\n</li>\n<li><p><code>description</code> (string) (optional): The modified description of the specification</p>\n</li>\n</ul>\n<h2 id=\"response\">Response:</h2>\n<ul>\n<li><p>Successful response: HTTP Status <code>200 OK</code>.</p>\n</li>\n<li><p>Error response: HTTP Status <code>400 Bad Request</code> with details in the response body.</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"http","path":["equipmentservice","equipment","{equipmentId}","technicalspec","{specId}"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"6eca93cd-a322-4d78-971e-c27b22acf160","name":"Modify Equipment Specification","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"text\": \"Operating Weight: 77,400 lbs\",\r\n  \"description\": \"Operating Weight: 77,400 lbs\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://api.boomandbucket.com/equipmentservice/equipment/82177ccf-fde6-4fe9-a58c-8de948a26898}/technicalspec/4e8e6d02-8b75-4145-be9e-c5440ddf1b39}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"89cd8d6b-48f0-4e58-a3dd-bb6f772bfaec"},{"name":"Remove Equipment Specification","id":"a5c037c5-80fe-45ff-abd0-e682fd6558bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://api.boomandbucket.com/equipmentservice/equipment/{equipmentId}/technicalspec/{specId}","description":"<p>This endpoint removes a specification associated with a particular equipment.</p>\n<h2 id=\"response\">Response:</h2>\n<ul>\n<li>Successful response: HTTP Status <code>200 OK</code>.</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","id":"2af4d60b-d96d-4356-bf7c-f6d2268706aa","name":"Boom and Bucket - Integration API","type":"collection"}},"urlObject":{"protocol":"http","path":["equipmentservice","equipment","{equipmentId}","technicalspec","{specId}"],"host":["api","boomandbucket","com"],"query":[],"variable":[]}},"response":[{"id":"ce87f737-94f2-4fe5-851b-8ce97bc19aea","name":"Remove Equipment Specification","originalRequest":{"method":"DELETE","header":[],"url":"http://api.boomandbucket.com/equipmentservice/equipment/10d37538-b36c-480d-8b76-89cdab7fd68b}/technicalspec/49a98462-f537-4348-a0a7-501d1eb89002}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a5c037c5-80fe-45ff-abd0-e682fd6558bc"}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-KEY"},{"key":"value","value":"<value>"}]}},"event":[{"listen":"prerequest","script":{"id":"f8abf4e6-ea45-421a-bb28-b1f6356cb15a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d4bdbced-4478-4143-a4b7-c885de9eb0bd","type":"text/javascript","exec":[""]}}]}