{"info":{"_postman_id":"b5190f5d-3216-45e5-bbeb-657b0eaecc85","name":"Draiver Legacy Public API","description":"<html><head></head><body><img src=\"https://content.pstmn.io/590fc91a-2ad3-4d6c-968d-fb2b2ab62c4b/RHJhaXZlcl9Ib3Jpem9udGFsIExvZ29fQXNwaGFsdC5wbmc=\">\n\n<h2 id=\"note-this-documentation-is-for-the-legacy-api-if-you-are-looking-to-integrate-with-draiver-please-click-here-httpswwwdraivercomapi-integrations\"><strong>NOTE: This documentation is for the legacy API. If you are looking to integrate with Draiver, please click here:</strong> <a href=\"https://www.draiver.com/api-integrations/\"><b>https://www.draiver.com/api-integrations/</b></a></h2>\n<p>The Draiver API is organized around <a href=\"http://en.wikipedia.org/wiki/Representational_State_Transfer\">REST</a>. Our API has predictable resource-oriented URLS, accepts <a href=\"https://en.wikipedia.org/wiki/POST_(HTTP)#Use_for_submitting_web_forms\">form-encoded</a> request bodies, returns <a href=\"http://www.json.org/\">JSON-encoded responses</a>, and uses standard HTTP response codes, authentication and verbs.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"13243953","collectionId":"b5190f5d-3216-45e5-bbeb-657b0eaecc85","publishedId":"TzCFfq3K","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"AFA169"},"publishDate":"2021-03-24T10:14:45.000Z"},"item":[{"name":"Authentication","item":[{"name":"Generate Bearer Token","event":[{"listen":"test","script":{"id":"e8c36d2c-c8fa-4a5c-a3ab-34e334899fef","exec":["var jsonData = pm.response.json();\r","pm.environment.set(\"token\", jsonData.sessionId);"],"type":"text/javascript"}}],"id":"373696d4-f7d5-478a-87b6-2ccfbf3f6b8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"username\": \"{{username}}\",\n  \"password\": \"{{password}}\"\n}"},"url":"https://do.draiver.com/services/apexrest/CommunityLoginAPI","description":"<p>Use this endpoint to create a bearer token.</p>\n<p><strong>sessionId</strong> will be your bearer token</p>\n","urlObject":{"protocol":"https","path":["services","apexrest","CommunityLoginAPI"],"host":["do","draiver","com"],"query":[],"variable":[]}},"response":[{"id":"d076a933-ff80-4325-9c88-675b3abfd258","name":"Generate Bearer Token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"username\": \"<USER_NAME>\",\n  \"password\": \"<PASSWORD>\"\n}"},"url":"https://do.draiver.com/services/apexrest/CommunityLoginAPI"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Mar 2021 13:00:49 GMT"},{"key":"Cache-Control","value":"no-cache,must-revalidate,max-age=0,no-store,private"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusMessage\": \"OK\",\n    \"statusCode\": 200,\n    \"sessionId\": \"00Dj0000001mjxw!AQ4AQBGDGCFg7tGh.G3Kh0DkoDFovXNCzjp_kC42L3F8tMW.V3IBNJ9B1wxZbdWGA8860sycuDb3mZCki6vcYpg6FDnEx6.u\",\n    \"isSuccess\": true\n}"}],"_postman_id":"373696d4-f7d5-478a-87b6-2ccfbf3f6b8b"}],"id":"d403d95b-1581-4d21-b2bc-5b5343fcbe18","description":"<p>The Draiver API uses bearer tokens to authenticate requests. To create a bearer token you must first call the authentication endpoint supplying it a username and password. The response from the endpoint will be your bearer token. All calls (other than the authentication endpoint) must have an <strong>Authorization</strong> header that includes the generated bearer token. The token issued will be fairly short lived (will not last more than an hour) so an integrator will need to handle flows for recalling an authorization if the token is stored for longer re-use.</p>\n<p>The header will be in the form of </p>\n<p><strong>Authorization: Bearer {{token}}</strong></p>\n","_postman_id":"d403d95b-1581-4d21-b2bc-5b5343fcbe18"},{"name":"Vehicle Moves","item":[{"name":"Request Vehicle Move by VIN and Full Address","id":"ebfc6475-cf61-4e57-88e0-701e705085a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"Vehicle\",\n    \"vehicle\": {\n        \"vin\": \"5YJSA1E29FF103112\",\n        \"pickupInstructions\" : \"ex get paperwork\",\n        \"dropoffInstructions\" : \"ex leave keys in console\"\n    },\n    \"origin\": {\n        \"address\": \"1440 Eleanor\",\n        \"city\": \"Toledo\",\n        \"state\": \"OH\",\n        \"postalCode\": \"43612\",\n        \"label\": \"1440 Eleanor, Toledo, OH, 43612\"\n    },\n    \"destination\": {\n        \"address\": \"845 Iowa St\",\n        \"city\": \"Lawrence\",\n        \"state\": \"KS\",\n        \"postalCode\": \"66049\",\n        \"label\": \"Deluxe Autos\"\n    },\n    \"notes\" : \"sample internal notes\",\n    \"assigned\" : \"Kevin/Morning/\",\n    \"reference\" : \"Your own id, order number, etc\",\n    \"readyTime\": \"2021-03-22T08:00:00.000Z\",\n    \"deadlineTime\": \"2021-03-23T08:00:00.000Z\",\n    \"webhook\": \"https://webhook.site/6a3ab869-ac29-4503-ade6-942e99fb1179\"\n}"},"url":"https://do.draiver.com/services/apexrest/v2/dealer/activity","description":"<p>This example shows how to submit a vehicle move using a vehicles VIN number, and a full addresses for both the origin and destination. The bolded items below are required.</p>\n<h6 id=\"vehicle-move-statuses\">Vehicle Move Statuses</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Example Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong></td>\n<td>String</td>\n<td>Vehicle</td>\n</tr>\n<tr>\n<td><strong>vehicle</strong></td>\n<td><a href=\"#vehicle-schema\">Vehicle Object</a></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>origin</strong></td>\n<td><a href=\"#address-schema\">Address Object</a></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>destination</strong></td>\n<td><a href=\"#address-schema\">Address Object</a></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>readyTime</strong></td>\n<td>DateTime</td>\n<td>2021-03-22T08:00:00.000Z</td>\n</tr>\n<tr>\n<td><strong>deadlineTime</strong></td>\n<td>DateTime</td>\n<td>2021-03-23T08:00:00.000Z</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>String</td>\n<td>Note you want to attach to an activity</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>String</td>\n<td>reason for the move</td>\n</tr>\n<tr>\n<td>reference</td>\n<td>String</td>\n<td>ex. order number, unit number, external GUID</td>\n</tr>\n<tr>\n<td>webhook</td>\n<td>URL</td>\n<td>URL that Draiver should call when an activity status has changed. See <a href=\"#webhooks\">webhooks</a> for more info</td>\n</tr>\n</tbody>\n</table>\n</div><p>If the integration is connecting to a multi-account hierarchy, you can specify the specific account to assign the activity by passing the following structure as a top level key.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\"> \"requestor\": {\n        \"account\": {\n            \"id\": \"001c000001Ba4RpAAJ\"\n        }\n    }\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["services","apexrest","v2","dealer","activity"],"host":["do","draiver","com"],"query":[],"variable":[]}},"response":[{"id":"dfd04907-3f03-4177-85db-a979174b3971","name":"Example 1: Request Vehicle Move by VIN and Full Address","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"Vehicle\",\n    \"vehicle\": {\n        \"vin\": \"5YJSA1E29FF103112\"\n    },\n    \"origin\": {\n        \"address\": \"1440 Eleanor\",\n        \"city\": \"Toledo\",\n        \"state\": \"OH\",\n        \"postalCode\": \"43612\",\n        \"label\": \"1440 Eleanor, Toledo, OH, 43612\"\n    },\n    \"destination\": {\n        \"address\": \"845 Iowa St\",\n        \"city\": \"Lawrence\",\n        \"state\": \"KS\",\n        \"postalCode\": \"66049\",\n        \"label\": \"Deluxe Autos\"\n    },\n    \"readyTime\": \"2021-03-22T08:00:00.000Z\",\n    \"deadlineTime\": \"2021-03-23T08:00:00.000Z\",\n    \"webhook\": \"https://webhook.site/6a3ab869-ac29-4503-ade6-942e99fb1179\"\n}","options":{"raw":{"language":"json"}}},"url":"https://do.draiver.com/services/apexrest/v2/dealer/activity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Mar 2021 13:00:58 GMT"},{"key":"Cache-Control","value":"no-cache,must-revalidate,max-age=0,no-store,private"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"vehicle\": {\n        \"year\": \"2015\",\n        \"vin\": \"5YJSA1E29FF103112\",\n        \"model\": \"Model S\",\n        \"make\": \"TESLA\",\n        \"id\": \"a0T3Z00000NMAKZUA5\"\n    },\n    \"type\": \"Vehicle\",\n    \"readyTime\": \"2021-03-22T08:00:00.000Z\",\n    \"origin\": {\n        \"state\": \"KS\",\n        \"postalCode\": \"66044\",\n        \"label\": \"Mascot Autos\",\n        \"id\": \"a1P3Z000008BMtSUAW\",\n        \"city\": \"Lawrence\",\n        \"address\": \"Allen Fieldhouse Dr\"\n    },\n    \"id\": \"a1O3Z000003GXALUA4\",\n    \"destination\": {\n        \"state\": \"KS\",\n        \"postalCode\": \"66049\",\n        \"label\": \"Deluxe Autos\",\n        \"id\": \"a1P3Z000008BMtTUAW\",\n        \"city\": \"Lawrence\",\n        \"address\": \"845 Iowa St\"\n    },\n    \"deadlineTime\": \"2021-03-23T08:00:00.000Z\"\n}"}],"_postman_id":"ebfc6475-cf61-4e57-88e0-701e705085a5"},{"name":"Update a vehicle move","id":"8a872781-6fd7-4f46-9da2-4a110a479e39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\" : \"a1O3Z000004RfJ6UAK\",\n    \"type\": \"Vehicle\",\n    \"vehicle\": {\n        \"pickupInstructions\" : \"ex get paperwork\",\n        \"dropoffInstructions\" : \"ex leave keys in console\"\n    },\n    \"notes\" : \"sample internal notes\"\n}"},"url":"https://do.draiver.com/services/apexrest/v2/dealer/activity","description":"<p>You are able to update activities after creation by calling the /activity endpoint and passing the desired \"id\" value in the payload to update.</p>\n<p>Please note: if your activity is not linked to a trip, you are able to update all the fields. If it's associated to a trip, there are a limited set of fields that can be updated.</p>\n","urlObject":{"protocol":"https","path":["services","apexrest","v2","dealer","activity"],"host":["do","draiver","com"],"query":[],"variable":[]}},"response":[{"id":"8016e44b-5da5-477f-82b6-fe4256a3392e","name":"Request Vehicle Move by VIN and Full Address Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\" : \"a1O3Z000004RfJ6UAK\",\n    \"type\": \"Vehicle\",\n    \"vehicle\": {\n        \"pickupInstructions\" : \"ex get paperwork\",\n        \"dropoffInstructions\" : \"ex leave keys in console\"\n    },\n    \"notes\" : \"sample internal notes\"\n}"},"url":"https://do.draiver.com/services/apexrest/v2/dealer/activity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Aug 2023 13:53:21 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache,must-revalidate,max-age=0,no-store,private"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"sfdcedge"},{"key":"X-SFDC-Request-Id","value":"333363a67330ac78b022a8ebe897c59f"}],"cookie":[],"responseTime":null,"body":"{\n    \"vehicle\": {\n        \"pickupInstructions\": \"ex get paperwork\",\n        \"id\": \"a0T3Z00000Qg8qJUAR\",\n        \"dropoffInstructions\": \"ex leave keys in console\"\n    },\n    \"type\": \"Vehicle\",\n    \"origin\": {\n        \"id\": \"a1P3Z000008UqAoUAK\"\n    },\n    \"notes\": \"sample internal notes\",\n    \"id\": \"a1O3Z000004RfJ6UAK\",\n    \"destination\": {\n        \"id\": \"a1P3Z000006pZmPUAU\"\n    }\n}"}],"_postman_id":"8a872781-6fd7-4f46-9da2-4a110a479e39"},{"name":"Cancel a Vehicle Move","id":"ff1fbd07-73c7-4ca5-9ac9-7e95f718b414","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://do.draiver.com/services/apexrest/v2/legacy/activities/{{activityId}}","description":"<p>Use this endpoint to cancel a vehicle move BEFORE it has been scheduled for delivery. If you attempt to cancel a move after it has been dispatched for delivery the API will return an error code. Contact your account manager if you need to cancel a vehicle move in progress.</p>\n","urlObject":{"protocol":"https","path":["services","apexrest","v2","legacy","activities","{{activityId}}"],"host":["do","draiver","com"],"query":[],"variable":[]}},"response":[{"id":"919993d8-194c-4444-adda-8be9fea2fe7b","name":"Cancel a Vehicle Move","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://do.draiver.com/services/apexrest/v2/legacy/activities/{{activityId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Mar 2021 20:44:38 GMT"},{"key":"Cache-Control","value":"no-cache,must-revalidate,max-age=0,no-store,private"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Item deleted.\"\n}"}],"_postman_id":"ff1fbd07-73c7-4ca5-9ac9-7e95f718b414"},{"name":"View All Vehicle Moves","id":"67e042e9-d999-437a-a881-7f4a5177f152","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://do.draiver.com/services/apexrest/v2/legacy/activities?status=pending","description":"<p>Use this endpoint to see all vehicle movements requested by your account. <strong>The status query parameter is a required field</strong> and can be one of the following options:</p>\n<ul>\n<li><p>pending = Shows all vehicle moves that have yet to be executed. This is a composite of items with a status of unplanned, planned, pending, en route)</p>\n</li>\n<li><p>complete = Shows all vehicle moves that have been executed with a status of complete</p>\n</li>\n<li><p>canceled = Shows all vehicle moves with a status of cancelled</p>\n</li>\n<li><p>planned = Shows all moves with a status of planned</p>\n</li>\n<li><p>en route = Units that have been picked up but not dropped off</p>\n</li>\n<li><p>pending_new = Due to \"pending\" being a legacy status which is a composite of multiple non-complete statuses, pending_new is the actual \"pending\" (driver is on trip but not yet to pickup) status to break existing integrations.</p>\n</li>\n</ul>\n<p><strong>Time Filters</strong></p>\n<p>You can also filter based on the various timestamps around the ready, deadline, and completed time. To specify which value you are filtering on use the \"timeType\" parameter of READY, DEADLINE, COMPLETED, CREATED. Then use the values of startDateTime and/or endDateTime to filter. The default when not provided is ready time.<br />Ex.<br />\"timeType\" : \"DEADLINE\",<br />\"startDateTime\" : \"2023-08-01T00:00:00z\",<br />\"endDateTime\" : \"2023-09-01T00:00:00z\"</p>\n<p><strong>Reference</strong></p>\n<p>You can filter off specific a reference value by passing the \"reference\" value in filtering:</p>\n<p>ex. \"reference\" : \"43c5ec32-adc5-4929-8f21-033fae4ed525\"</p>\n","urlObject":{"protocol":"https","path":["services","apexrest","v2","legacy","activities"],"host":["do","draiver","com"],"query":[{"description":{"content":"<p>REQUIRED FIELD: Possible values for status are: pending, complete</p>\n","type":"text/plain"},"key":"status","value":"pending"}],"variable":[]}},"response":[{"id":"e904dcb7-2433-41e9-ae68-9ba92ae3a996","name":"Example 2: View Vehicle Moves","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":{"raw":"https://do.draiver.com/services/apexrest/v2/legacy/activities?status=pending","protocol":"https","host":["do","draiver","com"],"path":["services","apexrest","v2","legacy","activities"],"query":[{"key":"status","value":"pending","description":"Possible values for status are: pending, complete\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 22 Mar 2021 17:29:10 GMT"},{"key":"Cache-Control","value":"no-cache,must-revalidate,max-age=0,no-store,private"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"vehicle\": {\n            \"year\": \"2016\",\n            \"vin\": \"2C4RDGEG9GR273206\",\n            \"model\": \"Caravan/Grand Caravan\",\n            \"make\": \"DODGE\",\n            \"id\": \"a0Tf1000007qK8VEAU\"\n        },\n        \"type\": \"Vehicle\",\n        \"trip\": {\n            \"overallName\": \"123118\",\n            \"overallId\": \"a0R3Z00000CLq6oUAD\",\n            \"operator\": {\n                \"person\": {\n                    \"name\": \"Janice Decklan\",\n                    \"id\": \"003j000000d1eJoAAI\"\n                }\n            },\n            \"name\": \"123118.2\",\n            \"id\": \"a0R3Z00000CLq6pUAD\"\n        },\n        \"summary\": \"2016 DODGE Caravan/Grand Caravan \",\n        \"status\": \"Planned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-07-11T11:15:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"3120\",\n        \"id\": \"a1O3Z000002mn3VUAQ\",\n        \"destination\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64161\",\n            \"lon\": -94.48253419999998,\n            \"lat\": 39.1658544,\n            \"label\": \"KC Dealer\",\n            \"id\": \"a1Pf1000007d51FEAQ\",\n            \"city\": \"Kansas City\",\n            \"address\": \"3901 N Skiles Ave\"\n        },\n        \"deadlineTime\": \"2019-07-14T11:30:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"year\": \"2004\",\n            \"vin\": \"5UXFB53544LV05406\",\n            \"model\": \"X5\",\n            \"make\": \"BMW\",\n            \"id\": \"a0Tj0000003kgeJEAQ\"\n        },\n        \"type\": \"Vehicle\",\n        \"trip\": {\n            \"overallName\": \"123118\",\n            \"overallId\": \"a0R3Z00000CLq6oUAD\",\n            \"operator\": {\n                \"person\": {\n                    \"name\": \"Janice Decklan\",\n                    \"id\": \"003j000000d1eJoAAI\"\n                }\n            },\n            \"name\": \"123118.2\",\n            \"id\": \"a0R3Z00000CLq6pUAD\"\n        },\n        \"summary\": \"2004 BMW X5 \",\n        \"status\": \"Planned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-07-11T13:30:00.000Z\",\n        \"origin\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64161\",\n            \"lon\": -94.48253419999998,\n            \"lat\": 39.1658544,\n            \"label\": \"KC Dealer\",\n            \"id\": \"a1Pf1000007d51FEAQ\",\n            \"city\": \"Kansas City\",\n            \"address\": \"3901 N Skiles Ave\"\n        },\n        \"name\": \"3122\",\n        \"id\": \"a1O3Z000002mn3fUAA\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"deadlineTime\": \"2019-07-19T22:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"year\": \"2007\",\n            \"vin\": \"YV1AH852171036350\",\n            \"model\": \"S80\",\n            \"make\": \"VOLVO\",\n            \"id\": \"a0Tj0000003k4hWEAQ\"\n        },\n        \"type\": \"Vehicle\",\n        \"trip\": {\n            \"overallName\": \"132356\",\n            \"overallId\": \"a0R3Z00000CMTzuUAH\",\n            \"operator\": {\n                \"person\": {\n                    \"name\": \"Willie Wildcat\",\n                    \"id\": \"003j000000BcB1sAAF\"\n                }\n            },\n            \"name\": \"132356.2\",\n            \"id\": \"a0R3Z00000CMTzvUAH\"\n        },\n        \"summary\": \"2007 VOLVO S80 \",\n        \"status\": \"Planned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-07-11T11:15:00.000Z\",\n        \"origin\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64118\",\n            \"lon\": -94.57711859999999,\n            \"lat\": 39.1965143,\n            \"label\": \"Gladstone Dodge Chrysler Jeep & Ram\",\n            \"id\": \"a1P3Z000008Xf33UAC\",\n            \"city\": \"Gladstone\",\n            \"address\": \"5610 N Oak Trafficway\"\n        },\n        \"name\": \"3123\",\n        \"id\": \"a1O3Z000002mn3kUAA\",\n        \"destination\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64161\",\n            \"lon\": -94.48293609999999,\n            \"lat\": 39.1663027,\n            \"label\": \"Manheim KC Front Gate\",\n            \"id\": \"a1Pj0000002pxjEEAQ\",\n            \"city\": \"Kansas City\",\n            \"address\": \"3901 N Skiles Ave\"\n        },\n        \"deadlineTime\": \"2019-07-14T12:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"id\": \"a0T3Z00000FCRP3UAP\"\n        },\n        \"type\": \"Vehicle\",\n        \"trip\": {\n            \"overallName\": \"133865\",\n            \"overallId\": \"a0R3Z00000CMZRtUAP\",\n            \"operator\": {\n                \"person\": {\n                    \"name\": \"Janice Decklan\",\n                    \"id\": \"003j000000d1eJoAAI\"\n                }\n            },\n            \"name\": \"133865.2\",\n            \"id\": \"a0R3Z00000CMZRuUAP\"\n        },\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Planned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-06-21T11:15:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66061\",\n            \"lon\": -94.79417360000002,\n            \"lat\": 38.8774323,\n            \"label\": \"Car City - Olathe Mitsubishi\",\n            \"id\": \"a1Pj00000012HoXEAU\",\n            \"city\": \"Olathe\",\n            \"address\": \"401 S Fir St\"\n        },\n        \"name\": \"3124\",\n        \"id\": \"a1O3Z000002mn3pUAA\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66102\",\n            \"lon\": -94.73674939999999,\n            \"lat\": 39.1168385,\n            \"label\": \"Randy Curnow Buick Pontiac GMC Truck, Inc\",\n            \"id\": \"a1Pj0000002pxiyEAA\",\n            \"city\": \"Kansas City\",\n            \"address\": \"6840 State Ave\"\n        },\n        \"deadlineTime\": \"2019-06-24T15:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"year\": \"2012\",\n            \"vin\": \"1N4AA5AP1CC864123\",\n            \"pickupInstructions\": \"keys in visor\",\n            \"model\": \"Maxima\",\n            \"make\": \"Nissan\",\n            \"id\": \"a0Tj0000004kU9nEAE\",\n            \"dropoffInstructions\": \"test dropoff\"\n        },\n        \"type\": \"Vehicle\",\n        \"trip\": {\n            \"overallName\": \"132358\",\n            \"overallId\": \"a0R3Z00000CMU09UAH\",\n            \"operator\": {\n                \"person\": {\n                    \"name\": \"Willie Wildcat\",\n                    \"id\": \"003j000000BcB1sAAF\"\n                }\n            },\n            \"name\": \"132358.2\",\n            \"id\": \"a0R3Z00000CMU0AUAX\"\n        },\n        \"summary\": \"2012 Nissan Maxima \",\n        \"status\": \"Planned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-07-18T16:45:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"3289\",\n        \"id\": \"a1O3Z000002mrJIUAY\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.236289,\n            \"lat\": 38.966974,\n            \"label\": \"Deluxe Auto\",\n            \"id\": \"a1Pj0000002pxiiEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"911 Massachusetts St.\"\n        },\n        \"deadlineTime\": \"2019-07-19T11:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"pickupInstructions\": \"wash unit\",\n            \"id\": \"a0T3Z00000FCu6cUAD\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Processing\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-08-01T15:15:00.000Z\",\n        \"origin\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64161\",\n            \"lon\": -94.48293609999999,\n            \"lat\": 39.1663027,\n            \"label\": \"Manheim KC Front Gate\",\n            \"id\": \"a1Pj0000002pxjEEAQ\",\n            \"city\": \"Kansas City\",\n            \"address\": \"3901 N Skiles Ave\"\n        },\n        \"name\": \"3292\",\n        \"id\": \"a1O3Z000002msJzUAI\",\n        \"destination\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64161\",\n            \"lon\": -94.48293609999999,\n            \"lat\": 39.1663027,\n            \"label\": \"Manheim KC Front Gate\",\n            \"id\": \"a1Pj0000002pxjEEAQ\",\n            \"city\": \"Kansas City\",\n            \"address\": \"3901 N Skiles Ave\"\n        },\n        \"deadlineTime\": \"2019-08-09T15:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"id\": \"a0T3Z00000FDXkPUAX\"\n        },\n        \"type\": \"Vehicle\",\n        \"trip\": {\n            \"overallName\": \"134503\",\n            \"overallId\": \"a0R3Z00000CMbTcUAL\",\n            \"operator\": {\n                \"person\": {\n                    \"name\": \"Truman Tiger\",\n                    \"id\": \"003j000000BcBN7AAN\"\n                }\n            },\n            \"name\": \"134503.2\",\n            \"id\": \"a0R3Z00000CMbTdUAL\"\n        },\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Planned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-10-14T16:30:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"4530\",\n        \"id\": \"a1O3Z000002n4qsUAA\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.236289,\n            \"lat\": 38.966974,\n            \"label\": \"Deluxe Auto\",\n            \"id\": \"a1Pj0000002pxiiEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"911 Massachusetts St.\"\n        },\n        \"deadlineTime\": \"2019-10-15T16:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"id\": \"a0T3Z00000FDnvLUAT\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-11-07T16:30:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"5541\",\n        \"id\": \"a1O3Z000002n8AhUAI\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.236289,\n            \"lat\": 38.966974,\n            \"label\": \"Deluxe Auto\",\n            \"id\": \"a1Pj0000002pxiiEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"911 Massachusetts St.\"\n        },\n        \"deadlineTime\": \"2019-11-08T16:15:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"id\": \"a0T3Z00000FDrfMUAT\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-11-13T14:30:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"5843\",\n        \"id\": \"a1O3Z000002n8kcUAA\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"deadlineTime\": \"2019-11-14T14:30:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"id\": \"a0T3Z00000FDripUAD\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-11-14T15:30:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66216\",\n            \"lon\": -94.72559519999999,\n            \"lat\": 39.0162849,\n            \"label\": \"Price Chopper\",\n            \"id\": \"a1Pj0000002pyHGEAY\",\n            \"city\": \"Shawnee\",\n            \"address\": \"12010 W 63rd St\"\n        },\n        \"name\": \"5848\",\n        \"id\": \"a1O3Z000002n8lCUAQ\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"deadlineTime\": \"2019-11-15T15:30:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"pickupInstructions\": \"abc\",\n            \"id\": \"a0T3Z00000FDrjiUAD\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2019-11-13T15:45:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66216\",\n            \"lon\": -94.72559519999999,\n            \"lat\": 39.0162849,\n            \"label\": \"Price Chopper\",\n            \"id\": \"a1Pj0000002pyHGEAY\",\n            \"city\": \"Shawnee\",\n            \"address\": \"12010 W 63rd St\"\n        },\n        \"name\": \"5851\",\n        \"id\": \"a1O3Z000002n8lRUAQ\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.23548049999999,\n            \"lat\": 38.9699511,\n            \"label\": \"Synety TEST\",\n            \"id\": \"a1Pj0000002pxiTEAQ\",\n            \"city\": \"Lawrence\",\n            \"address\": \"734 Massachusetts St\"\n        },\n        \"deadlineTime\": \"2019-11-14T15:30:00.000Z\"\n    },\n    {\n        \"vehicle\": {},\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-09-01T16:45:00.000Z\",\n        \"origin\": {},\n        \"name\": \"17459\",\n        \"id\": \"a1O3Z000003CsIUUA0\",\n        \"destination\": {},\n        \"deadlineTime\": \"2020-10-01T19:45:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"year\": \"2014\",\n            \"vin\": \"1G1PA5SG0E7174385\",\n            \"model\": \"Cruze\",\n            \"make\": \"CHEVROLET\",\n            \"id\": \"a0T3Z00000LwmjBUAR\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"2014 CHEVROLET Cruze \",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-09-01T16:45:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.25371,\n            \"lat\": 38.9534,\n            \"label\": \"Wrong Mascot Autos\",\n            \"id\": \"a1P3Z000008BMtSUAW\",\n            \"city\": \"Lawrence\",\n            \"address\": \"Allen Fieldhouse Dr\"\n        },\n        \"name\": \"17507\",\n        \"id\": \"a1O3Z000003CsNGUA0\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66049\",\n            \"lon\": -95.26084,\n            \"lat\": 38.96822,\n            \"label\": \"Battenfeld Auto Plaza\",\n            \"id\": \"a1P3Z000008BMtTUAW\",\n            \"city\": \"Lawrence\",\n            \"address\": \"845 Iowa St\"\n        },\n        \"deadlineTime\": \"2020-10-01T19:45:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"year\": \"2016\",\n            \"vin\": \"2C4RDGEG9GR273206\",\n            \"pickupInstructions\": \"Make sure you get the paperwork in the vehicle\",\n            \"model\": \"Grand Caravan\",\n            \"make\": \"DODGE\",\n            \"id\": \"a0T3Z00000LwpJEUAZ\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"2016 DODGE Grand Caravan \",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"reference\": \"Order 123\",\n        \"readyTime\": \"2020-09-16T18:00:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"17752\",\n        \"id\": \"a1O3Z000003CsnpUAC\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.236289,\n            \"lat\": 38.966974,\n            \"label\": \"Deluxe Auto\",\n            \"id\": \"a1Pj0000002pxiiEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"911 Massachusetts St.\"\n        },\n        \"deadlineTime\": \"2020-09-16T23:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"year\": \"2016\",\n            \"vin\": \"2C4RDGEG9GR273206\",\n            \"model\": \"Grand Caravan\",\n            \"make\": \"DODGE\",\n            \"id\": \"a0T3Z00000LwrIgUAJ\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"2016 DODGE Grand Caravan \",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-09-22T20:00:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"17961\",\n        \"id\": \"a1O3Z000003Ct7tUAC\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.236289,\n            \"lat\": 38.966974,\n            \"label\": \"Deluxe Auto\",\n            \"id\": \"a1Pj0000002pxiiEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"911 Massachusetts St.\"\n        },\n        \"deadlineTime\": \"2020-09-25T20:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"pickupInstructions\": \"unit 123\",\n            \"id\": \"a0T3Z00000LxBPiUAN\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Pending\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-12-23T00:00:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"26448\",\n        \"id\": \"a1O3Z000003CzzYUAS\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.236289,\n            \"lat\": 38.966974,\n            \"label\": \"Deluxe Auto\",\n            \"id\": \"a1Pj0000002pxiiEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"911 Massachusetts St.\"\n        }\n    },\n    {\n        \"vehicle\": {\n            \"id\": \"a0T3Z00000LxBPnUAN\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Pending\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-12-23T00:00:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"26449\",\n        \"id\": \"a1O3Z000003CzzdUAC\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.236289,\n            \"lat\": 38.966974,\n            \"label\": \"Deluxe Auto\",\n            \"id\": \"a1Pj0000002pxiiEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"911 Massachusetts St.\"\n        }\n    },\n    {\n        \"vehicle\": {\n            \"year\": \"2007\",\n            \"vin\": \"5GZER33767J119146\",\n            \"pickupInstructions\": \"Pick up instructions from Steven\",\n            \"model\": \"Outlook\",\n            \"make\": \"Saturn\",\n            \"id\": \"a0Tj0000001bDfMEAU\",\n            \"dropoffInstructions\": \"Drop off instructions from Steven\"\n        },\n        \"type\": \"Vehicle\",\n        \"trip\": {\n            \"overallName\": \"195485\",\n            \"overallId\": \"a0R3Z00000EhhyVUAR\",\n            \"operator\": {\n                \"person\": {}\n            },\n            \"name\": \"195485.2\",\n            \"id\": \"a0R3Z00000EhhyXUAR\"\n        },\n        \"summary\": \"2007 Saturn Outlook \",\n        \"status\": \"Planned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-12-29T19:00:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"notes\": \"This is an activity note from Steven\",\n        \"name\": \"26641\",\n        \"id\": \"a1O3Z000003D0hhUAC\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.236289,\n            \"lat\": 38.966974,\n            \"label\": \"Deluxe Auto\",\n            \"id\": \"a1Pj0000002pxiiEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"911 Massachusetts St.\"\n        },\n        \"deadlineTime\": \"2020-12-30T23:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"pickupInstructions\": \"1234 pick me up\",\n            \"dropoffInstructions\": \"drop me off\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2021-01-13T02:00:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"28139\",\n        \"id\": \"a1O3Z000003D3C9UAK\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66049\",\n            \"lon\": -95.3302933,\n            \"lat\": 38.98242949999999,\n            \"label\": \"Rock Chalk Auto Park\",\n            \"id\": \"a1P3Z000008kMRdUAM\",\n            \"city\": \"Lawrence\",\n            \"address\": \"6100 Rock Chalk Dr\"\n        },\n        \"deadlineTime\": \"2021-01-13T06:15:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"year\": \"2015\",\n            \"vin\": \"5YJSA1E29FF103112\",\n            \"model\": \"Model S\",\n            \"make\": \"TESLA\",\n            \"id\": \"a0T3Z00000NMAKZUA5\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"2015 TESLA Model S \",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2021-03-22T08:00:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.25371,\n            \"lat\": 38.9534,\n            \"label\": \"Wrong Mascot Autos\",\n            \"id\": \"a1P3Z000008BMtSUAW\",\n            \"city\": \"Lawrence\",\n            \"address\": \"Allen Fieldhouse Dr\"\n        },\n        \"name\": \"37206\",\n        \"id\": \"a1O3Z000003GXALUA4\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66049\",\n            \"lon\": -95.26084,\n            \"lat\": 38.96822,\n            \"label\": \"Battenfeld Auto Plaza\",\n            \"id\": \"a1P3Z000008BMtTUAW\",\n            \"city\": \"Lawrence\",\n            \"address\": \"845 Iowa St\"\n        },\n        \"deadlineTime\": \"2021-03-23T08:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"pickupInstructions\": \"T>MCI - 1\",\n            \"id\": \"a0T3Z00000EiQxpUAF\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-07-08T19:45:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66615\",\n            \"lon\": -95.7839805,\n            \"lat\": 38.9933489,\n            \"label\": \"I-70 Auto Auction\",\n            \"id\": \"a1Pj0000002pxiZEAQ\",\n            \"city\": \"Topeka\",\n            \"address\": \"11048 U.S. 40\"\n        },\n        \"name\": \"15186\",\n        \"id\": \"a1O3Z000003rYP1UAM\",\n        \"destination\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64153\",\n            \"lon\": -94.70938790000002,\n            \"lat\": 39.30472679999999,\n            \"label\": \"Avis - KCI Airport\",\n            \"id\": \"a1Pj00000012N69EAE\",\n            \"city\": \"Kansas City\",\n            \"address\": \"1 Nassau Cir\"\n        },\n        \"deadlineTime\": \"2020-07-09T00:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"pickupInstructions\": \"T>MCI 2\",\n            \"id\": \"a0T3Z00000EiQxuUAF\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-07-08T19:45:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66615\",\n            \"lon\": -95.7839805,\n            \"lat\": 38.9933489,\n            \"label\": \"I-70 Auto Auction\",\n            \"id\": \"a1Pj0000002pxiZEAQ\",\n            \"city\": \"Topeka\",\n            \"address\": \"11048 U.S. 40\"\n        },\n        \"name\": \"15187\",\n        \"id\": \"a1O3Z000003rYP6UAM\",\n        \"destination\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64153\",\n            \"lon\": -94.70938790000002,\n            \"lat\": 39.30472679999999,\n            \"label\": \"Avis - KCI Airport\",\n            \"id\": \"a1Pj00000012N69EAE\",\n            \"city\": \"Kansas City\",\n            \"address\": \"1 Nassau Cir\"\n        },\n        \"deadlineTime\": \"2020-07-09T00:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"pickupInstructions\": \"Out 1\",\n            \"id\": \"a0T3Z00000EiQy4UAF\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-07-08T19:45:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66046\",\n            \"lon\": -95.2519995,\n            \"lat\": 38.9431846,\n            \"label\": \"Jayhawk Auto Group\",\n            \"id\": \"a1Pj0000002pxiUEAQ\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1424 W 23rd St\"\n        },\n        \"name\": \"15188\",\n        \"id\": \"a1O3Z000003rYPBUA2\",\n        \"destination\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64153\",\n            \"lon\": -94.70959,\n            \"lat\": 39.304659,\n            \"label\": \"Hertz - MCI Airport 02211\",\n            \"id\": \"a1Pj0000002pxifEAA\",\n            \"city\": \"Kansas City\",\n            \"address\": \"265 Madrid Avenue\"\n        },\n        \"deadlineTime\": \"2020-07-08T22:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"pickupInstructions\": \"Out - 2\",\n            \"id\": \"a0T3Z00000EiQyEUAV\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-07-08T19:45:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66046\",\n            \"lon\": -95.2519995,\n            \"lat\": 38.9431846,\n            \"label\": \"Jayhawk Auto Group\",\n            \"id\": \"a1Pj0000002pxiUEAQ\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1424 W 23rd St\"\n        },\n        \"name\": \"15189\",\n        \"id\": \"a1O3Z000003rYPGUA2\",\n        \"destination\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64153\",\n            \"lon\": -94.70959,\n            \"lat\": 39.304659,\n            \"label\": \"Hertz - MCI Airport 02211\",\n            \"id\": \"a1Pj0000002pxifEAA\",\n            \"city\": \"Kansas City\",\n            \"address\": \"265 Madrid Avenue\"\n        },\n        \"deadlineTime\": \"2020-07-08T22:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"pickupInstructions\": \"Back - 1\",\n            \"id\": \"a0T3Z00000EiQyUUAV\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-07-08T19:45:00.000Z\",\n        \"origin\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64153\",\n            \"lon\": -94.70959,\n            \"lat\": 39.304659,\n            \"label\": \"Hertz - MCI Airport 02211\",\n            \"id\": \"a1Pj0000002pxifEAA\",\n            \"city\": \"Kansas City\",\n            \"address\": \"265 Madrid Avenue\"\n        },\n        \"name\": \"15190\",\n        \"id\": \"a1O3Z000003rYPLUA2\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66046\",\n            \"lon\": -95.2519995,\n            \"lat\": 38.9431846,\n            \"label\": \"Jayhawk Auto Group\",\n            \"id\": \"a1Pj0000002pxiUEAQ\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1424 W 23rd St\"\n        },\n        \"deadlineTime\": \"2020-07-08T22:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"pickupInstructions\": \"Back - 2\",\n            \"id\": \"a0T3Z00000EiQyZUAV\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"Vehicle TBD\",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-07-08T19:45:00.000Z\",\n        \"origin\": {\n            \"state\": \"MO\",\n            \"postalCode\": \"64153\",\n            \"lon\": -94.70959,\n            \"lat\": 39.304659,\n            \"label\": \"Hertz - MCI Airport 02211\",\n            \"id\": \"a1Pj0000002pxifEAA\",\n            \"city\": \"Kansas City\",\n            \"address\": \"265 Madrid Avenue\"\n        },\n        \"name\": \"15191\",\n        \"id\": \"a1O3Z000003rYPQUA2\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66046\",\n            \"lon\": -95.2519995,\n            \"lat\": 38.9431846,\n            \"label\": \"Jayhawk Auto Group\",\n            \"id\": \"a1Pj0000002pxiUEAQ\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1424 W 23rd St\"\n        },\n        \"deadlineTime\": \"2020-07-08T22:00:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"year\": \"2016\",\n            \"vin\": \"2C4RDGEG9GR273206\",\n            \"pickupInstructions\": \"sample notes\",\n            \"model\": \"Grand Caravan\",\n            \"make\": \"DODGE\",\n            \"id\": \"a0T3Z00000EiZi6UAF\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"2016 DODGE Grand Caravan \",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2020-07-29T16:45:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"name\": \"15927\",\n        \"id\": \"a1O3Z000003raEnUAI\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.236289,\n            \"lat\": 38.966974,\n            \"label\": \"Deluxe Auto\",\n            \"id\": \"a1Pj0000002pxiiEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"911 Massachusetts St.\"\n        },\n        \"deadlineTime\": \"2020-07-30T16:45:00.000Z\"\n    },\n    {\n        \"vehicle\": {\n            \"year\": \"2017\",\n            \"vin\": \"JTDKARFPXH3036657\",\n            \"model\": \"Prius Prime\",\n            \"make\": \"TOYOTA\",\n            \"id\": \"a0Tf100000C4wXHEAZ\"\n        },\n        \"type\": \"Vehicle\",\n        \"summary\": \"2017 TOYOTA Prius Prime \",\n        \"status\": \"Unplanned\",\n        \"requestor\": {\n            \"person\": {\n                \"phone\": \"(785) 555-5554\",\n                \"name\": \"Big Jay\",\n                \"id\": \"003j000000BSwJ4AAL\"\n            },\n            \"account\": {\n                \"name\": \"Mascot Autos\",\n                \"id\": \"001j000000IM867AAD\"\n            }\n        },\n        \"readyTime\": \"2021-01-01T01:30:00.000Z\",\n        \"origin\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.252779,\n            \"lat\": 38.954145,\n            \"label\": \"Mascot Autos\",\n            \"id\": \"a1Pj0000002pxigEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"1651 Naismith Dr\"\n        },\n        \"notes\": \"test\",\n        \"name\": \"26138\",\n        \"id\": \"a1O3Z000004bRELUA2\",\n        \"destination\": {\n            \"state\": \"KS\",\n            \"postalCode\": \"66044\",\n            \"lon\": -95.236289,\n            \"lat\": 38.966974,\n            \"label\": \"Deluxe Auto\",\n            \"id\": \"a1Pj0000002pxiiEAA\",\n            \"city\": \"Lawrence\",\n            \"address\": \"911 Massachusetts St.\"\n        },\n        \"deadlineTime\": \"2021-01-01T05:00:00.000Z\"\n    }\n]"}],"_postman_id":"67e042e9-d999-437a-a881-7f4a5177f152"},{"name":"View a specific activity details with trip reference","id":"78b83c25-79db-4ee3-9aeb-cf4d61664d1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://do.draiver.com/services/apexrest/v2/legacy/activities/{{activityId}}","description":"<p>You can view the status of a specific vehicle move request. The id to use can be found via the response of a vehicle move submission, or from the view all moves endpoint. The <strong>status</strong> attribute in the response will indicate when the vehicle has been delivered. Refer to the <a href=\"#vehicle-move-statuses\">vehicle moves section</a> to view the table of available statuses.</p>\n<p>If the activity is associated with a trip, an additional \"trip\" section will be available in the payload. This includes the details for the overall id/name (trip.overallId, trip.overallName) as well as the driver dispatch in that trip (trip.id, trip.name)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"trip\": {\n        \"overallName\": \"896103\",\n        \"overallId\": \"a0R3Z00000FliVRUAZ\",\n        \"operator\": {\n            \"person\": {\n                \"type\": \"Employee\",\n                \"name\": \"Dennis Cunningham\",\n                \"id\": \"003j000000Wrk6RAAR\",\n                \"externalId\": \"123\"\n            }\n        },\n        \"name\": \"896103.2\",\n        \"id\": \"a0R3Z00000FliVTUAZ\"\n    },\n\n</code></pre>","urlObject":{"protocol":"https","path":["services","apexrest","v2","legacy","activities","{{activityId}}"],"host":["do","draiver","com"],"query":[],"variable":[]}},"response":[{"id":"d9a928a7-2a66-4839-b612-c97b8d515a97","name":"View a specific activity details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://do.draiver.com/services/apexrest/v2/legacy/activities/{{activityId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 27 Apr 2023 20:55:54 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache,must-revalidate,max-age=0,no-store,private"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"sfdcedge"},{"key":"X-SFDC-Request-Id","value":"d909577a24c6ae4cf14924abe929b808"}],"cookie":[],"responseTime":null,"body":"{\n    \"vehicle\": {\n        \"year\": \"2016\",\n        \"vin\": \"2C4RDGEG9GR273206\",\n        \"pickupInstructions\": \"eer\",\n        \"model\": \"Grand Caravan\",\n        \"make\": \"DODGE\",\n        \"id\": \"a0T3Z00000EiZi6UAF\",\n        \"dropoffInstructions\": \"errrre\"\n    },\n    \"type\": \"Vehicle\",\n    \"trip\": {\n        \"overallName\": \"896103\",\n        \"overallId\": \"a0R3Z00000FliVRUAZ\",\n        \"operator\": {\n            \"person\": {\n                \"type\": \"Employee\",\n                \"name\": \"Dennis Cunningham\",\n                \"id\": \"003j000000Wrk6RAAR\",\n                \"externalId\": \"123\"\n            }\n        },\n        \"name\": \"896103.2\",\n        \"id\": \"a0R3Z00000FliVTUAZ\"\n    },\n    \"summary\": \"2016 DODGE Grand Caravan \",\n    \"status\": \"Planned\",\n    \"requestor\": {\n        \"person\": {\n            \"phone\": \"+16785524426\",\n            \"name\": \"Big Jay\",\n            \"id\": \"003j000000BSwJ4AAL\"\n        },\n        \"account\": {\n            \"name\": \"Mascot Autos\",\n            \"id\": \"001j000000IM867AAD\"\n        }\n    },\n    \"reference\": \"wererr\",\n    \"reason\": \"DX\",\n    \"readyTime\": \"2022-10-06T23:45:00.000Z\",\n    \"origin\": {\n        \"state\": \"KS\",\n        \"postalCode\": \"66044\",\n        \"lon\": -95.236289,\n        \"lat\": 38.966974,\n        \"label\": \"Deluxe Auto\",\n        \"id\": \"a1Pj0000002pxiiEAA\",\n        \"formatted\": \"911 Massachusetts St. Lawrence, KS 66044\",\n        \"city\": \"Lawrence\",\n        \"address\": \"911 Massachusetts St.\"\n    },\n    \"notes\": \"test\",\n    \"name\": \"445622\",\n    \"modifiedTime\": \"2023-02-17T18:12:32.000Z\",\n    \"modifiedBy\": \"Big Jay\",\n    \"id\": \"a1O3Z000004RfybUAC\",\n    \"estimatedPickupTime\": \"2022-10-06T23:45:00.000Z\",\n    \"estimatedDropoffTime\": \"2022-10-06T23:54:21.000Z\",\n    \"destination\": {\n        \"state\": \"KS\",\n        \"postalCode\": \"66045\",\n        \"lon\": -95.252772,\n        \"lat\": 38.9543399,\n        \"label\": \"Mascot Autos - Sales\",\n        \"id\": \"a1P3Z000009CLMHUA4\",\n        \"formatted\": \"1651 Naismith Dr Lawrence, KS 66045\",\n        \"country\": \"US\",\n        \"city\": \"Lawrence\",\n        \"address\": \"1651 Naismith Dr\"\n    },\n    \"deadlineTime\": \"2022-10-08T00:15:00.000Z\",\n    \"createdTime\": \"2022-10-04T23:38:54.000Z\"\n}"}],"_postman_id":"78b83c25-79db-4ee3-9aeb-cf4d61664d1b"},{"name":"View an activity BOL","id":"32b73dde-ef2d-4380-a42b-5fa9ae8c3e91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://do.draiver.com/services/apexrest/v2/legacy/activities/{{activityId}}/BOL","description":"<p>During a move or after, using the /bol endpoint a customer can request the latest vehicle move report/bill of lading (bol). This endpoint will contain a detailed list of metadata about that move and captured either automatically or through driver inputs. This includes information like timestamps, address + geolocations, vehicle photos, odometer readings etc. </p>\n<p>To retrieve a move report, use the \"overall trip id\" (trip.overallId) from the activity detail payload along with the vehicle id (vehicle.id).</p>\n","urlObject":{"protocol":"https","path":["services","apexrest","v2","legacy","activities","{{activityId}}","BOL"],"host":["do","draiver","com"],"query":[],"variable":[]}},"response":[{"id":"19f96db1-b6ac-4f07-baf4-d58ff3c0336d","name":"View an activity BOL","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"https://do.draiver.com/services/apexrest/v2/legacy/activities/{{activityId}}/BOL"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Mar 2023 23:08:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache,must-revalidate,max-age=0,no-store,private"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"sfdcedge"},{"key":"X-SFDC-Request-Id","value":"2fc3968c2a7cc68783f36c79e01fd961"}],"cookie":[],"responseTime":null,"body":"{\n    \"vehicle\": {\n        \"year\": \"2001\",\n        \"vin\": \"1FAFP52U81A170546\",\n        \"model\": \"Taurus\",\n        \"make\": \"FORD\",\n        \"id\": \"a0T3Z00000QrU7NUAV\"\n    },\n    \"type\": \"Bill of Lading\",\n    \"tripName\": \"a0R3Z00000FgLg0UAF\",\n    \"tripId\": \"857648\",\n    \"pickupDetails\": {\n        \"startedTime\": \"2023-01-31T18:26:42.000Z\",\n        \"photos\": [\n            {\n                \"thumb\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Plate-thumb-e39b6792b6bf007196.jpeg\",\n                \"path\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Plate-e39b6792b6bf007196.jpeg\",\n                \"filetype\": \"image/jpeg\",\n                \"category\": \"Plate\"\n            },\n            {\n                \"path\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Signature-c2e1e278fff58bcf3b.jpeg\",\n                \"meta\": \"{\\\"email\\\":\\\"\\\",\\\"name\\\":\\\"Jb \\\"}\",\n                \"filetype\": \"image/jpeg\",\n                \"category\": \"Customer Signature\"\n            }\n        ],\n        \"odometer\": {\n            \"value\": 99982,\n            \"unit\": \"miles\"\n        },\n        \"lon\": -83.97542182951761,\n        \"lat\": 34.141754150390625,\n        \"fuel\": \"1/4\",\n        \"completedTime\": \"2023-01-31T22:01:55.000Z\",\n        \"plateState\": \"GA\",\n        \"plateNumber\": \"RCE 4560\"\n    },\n    \"origin\": {\n        \"state\": \"GA\",\n        \"postalCode\": \"30518\",\n        \"lon\": -83.97380609999999,\n        \"lat\": 34.1408461,\n        \"label\": \"[DRAIVER INTERNAL]: 409 Apple Tree Way, Buford, GA 30518, USA\",\n        \"id\": \"a1P3Z00000A9PLdUAN\",\n        \"city\": \"Buford\",\n        \"address\": \"409 Apple Tree Way\"\n    },\n    \"id\": \"1f278b33-1705-581f-bc54-86bc4f3faad0\",\n    \"estimatedDurationInSeconds\": 460,\n    \"estimatedDistanceInMeters\": 5664,\n    \"dropoffDetails\": {\n        \"startedTime\": \"2023-01-31T22:12:52.000Z\",\n        \"photos\": [\n            {\n                \"type\": \"\",\n                \"thumb\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-thumb-f2546b1da3f441bd6f.jpeg\",\n                \"path\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-f2546b1da3f441bd6f.jpeg\",\n                \"meta\": \"{\\\"latitude\\\":\\\"34.108123779296875\\\",\\\"area\\\":\\\"\\\",\\\"longitude\\\":\\\"-84.00068569524167\\\",\\\"severity\\\":\\\"\\\",\\\"type\\\":\\\"\\\"}\",\n                \"filetype\": \"image/jpeg\",\n                \"category\": \"Damage\"\n            },\n            {\n                \"type\": \"\",\n                \"thumb\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-thumb-7b28eb2ce5a0242c66.jpeg\",\n                \"path\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-7b28eb2ce5a0242c66.jpeg\",\n                \"meta\": \"{\\\"longitude\\\":\\\"-84.00068569524167\\\",\\\"type\\\":\\\"\\\",\\\"severity\\\":\\\"\\\",\\\"latitude\\\":\\\"34.108123779296875\\\",\\\"area\\\":\\\"\\\"}\",\n                \"filetype\": \"image/jpeg\",\n                \"category\": \"Damage\"\n            },\n            {\n                \"type\": \"\",\n                \"thumb\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-thumb-3205555c5e8876a7bc.jpeg\",\n                \"path\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-3205555c5e8876a7bc.jpeg\",\n                \"meta\": \"{\\\"severity\\\":\\\"\\\",\\\"type\\\":\\\"\\\",\\\"latitude\\\":\\\"34.108123779296875\\\",\\\"area\\\":\\\"\\\",\\\"longitude\\\":\\\"-84.00068569524167\\\"}\",\n                \"filetype\": \"image/jpeg\",\n                \"category\": \"Damage\"\n            },\n            {\n                \"type\": \"\",\n                \"thumb\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-thumb-3b624563992fbab617.jpeg\",\n                \"path\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-3b624563992fbab617.jpeg\",\n                \"meta\": \"{\\\"area\\\":\\\"\\\",\\\"severity\\\":\\\"\\\",\\\"latitude\\\":\\\"34.108123779296875\\\",\\\"type\\\":\\\"\\\",\\\"longitude\\\":\\\"-84.00068569524167\\\"}\",\n                \"filetype\": \"image/jpeg\",\n                \"category\": \"Damage\"\n            },\n            {\n                \"type\": \"\",\n                \"thumb\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-thumb-fff5b428deed9a57a7.jpeg\",\n                \"path\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-fff5b428deed9a57a7.jpeg\",\n                \"meta\": \"{\\\"severity\\\":\\\"2\\\",\\\"latitude\\\":\\\"34.108123779296875\\\",\\\"area\\\":\\\"75\\\",\\\"type\\\":\\\"9\\\",\\\"longitude\\\":\\\"-84.00068569524167\\\"}\",\n                \"filetype\": \"image/jpeg\",\n                \"category\": \"Damage\"\n            },\n            {\n                \"path\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Signature-1cd3fe378e9068290f.jpeg\",\n                \"meta\": \"{\\\"email\\\":\\\"Jb.colletta@draiver.com\\\",\\\"name\\\":\\\"jbc\\\"}\",\n                \"filetype\": \"image/jpeg\",\n                \"category\": \"Customer Signature\"\n            },\n            {\n                \"type\": \"\",\n                \"thumb\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-thumb-afa2988e7cc186c395.jpeg\",\n                \"path\": \"https://bucketeer-4ec31b22-c8b4-406c-a4ff-900e593c86d8.s3.amazonaws.com/Other-afa2988e7cc186c395.jpeg\",\n                \"meta\": \"{\\\"longitude\\\":\\\"-84.00068569524167\\\",\\\"severity\\\":\\\"\\\",\\\"area\\\":\\\"\\\",\\\"latitude\\\":\\\"34.108123779296875\\\",\\\"type\\\":\\\"\\\"}\",\n                \"filetype\": \"image/jpeg\",\n                \"category\": \"Damage\"\n            }\n        ],\n        \"odometer\": {\n            \"value\": 99985,\n            \"unit\": \"miles\"\n        },\n        \"lon\": -84.00068569524167,\n        \"lat\": 34.108123779296875,\n        \"fuel\": \"1/4\",\n        \"completedTime\": \"2023-01-31T22:16:51.000Z\",\n        \"keysLocation\": \"on desk\",\n        \"carLocation\": \"in lot\"\n    },\n    \"driver\": {\n        \"type\": \"Driver\",\n        \"name\": \"Jordan Colletta\",\n        \"id\": \"0033Z000036E4kGQAS\"\n    },\n    \"destination\": {\n        \"state\": \"GA\",\n        \"postalCode\": \"30518\",\n        \"lon\": -84.0040123,\n        \"lat\": 34.1072669,\n        \"label\": \"[DRAIVER INTERNAL]: 4490 S Lee St, Buford, GA 30518, USA\",\n        \"id\": \"a1P3Z00000A9PLiUAN\",\n        \"city\": \"Buford\",\n        \"address\": \"4490 South Lee Street\"\n    }\n}"}],"_postman_id":"32b73dde-ef2d-4380-a42b-5fa9ae8c3e91"},{"name":"Generate Tracker Link","id":"ee4a53cb-684d-49e7-99a2-9937d1551d62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"activityId\": \"a1O3Z000004QU3DUAW\",\n  \"focusOn\": \"PICKUP\",\n  \"theme\": \"DEFAULT\",\n  \"locale\": \"en-US\"\n}"},"url":"https://do.draiver.com/services/apexrest/v2/legacy/tracker","description":"<h6 id=\"use-this-route-to-generate-a-tracker-link-for-your-end-consumers-to-monitor-the-details-of-a-move-this-is-helpful-if-you-want-to-hide-other-movements-in-the-trip-or-event-restrict-visibility-to-the-pickup-or-dropoff-for-your-move\">Use this route to generate a \"tracker\" link for your end consumers to monitor the details of a move. This is helpful if you want to hide other movements in the trip or event restrict visibility to the pickup or dropoff for your move.</h6>\n<p>The focusOn specifies which portion (pickup or dropoff) your consumer is primarily interested in to focus the estimations to that. For example, if the person is getting their vehicle picked up for service they would have focusOn for PICKUP. If they are getting their vehicle back from service their focus would be DROPOFF for the delivery back to them. If you append ONLY to PICKUP or DROPOFF (ex. DROPFF_ONLY) then it will hide the pickup details such as photos and data and only show DROPOFF information.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Example Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>focusOn</td>\n<td>String</td>\n<td>PICKUP, PICKUP_ONLY, DROPOFF, DROPOFF_ONLY</td>\n</tr>\n<tr>\n<td>channel</td>\n<td>String</td>\n<td>SMS, EMAIL</td>\n</tr>\n<tr>\n<td>address</td>\n<td>String</td>\n<td>SMS number: +19135555555 or email ex. <a href=\"mailto:receiver@acme.com\">receiver@acme.com</a></td>\n</tr>\n<tr>\n<td>locale</td>\n<td>String</td>\n<td>en-US, locale for template modification based on locale</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["services","apexrest","v2","legacy","tracker"],"host":["do","draiver","com"],"query":[],"variable":[]}},"response":[{"id":"234a1287-76bf-45b7-b131-95994b49270a","name":"Request Vehicle Move by VIN and Full Address Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"activityId\": \"a1O3Z000004QU3DUAW\",\n  \"focusOn\": \"PICKUP\",\n  \"theme\": \"DEFAULT\",\n  \"locale\": \"en-US\"\n}"},"url":"https://do.draiver.com/services/apexrest/v2/legacy/tracker"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Feb 2023 20:39:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"},{"key":"Cache-Control","value":"no-cache,must-revalidate,max-age=0,no-store,private"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"sfdcedge"},{"key":"X-SFDC-Request-Id","value":"1d7e5c6125573a6ebd3edd8718bcad7e"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": \"https://track.draiver.net/?id=sf-Ee2xXrNr616BaQJVdVoy2Q\",\n    \"id\": \"Ee2xXrNr616BaQJVdVoy2Q\"\n}"}],"_postman_id":"ee4a53cb-684d-49e7-99a2-9937d1551d62"}],"id":"eb365069-2a85-4539-8fe3-160feaa297f0","description":"<p>The Draiver API supports submitting vehicle move requests and getting their respective statuses. In the DRAIVER system, a vehicle move is referred to as an \"Activity\". An activity contains information such as the pickup and droppoff location, vehicle information, ready/deadline times, and additional related notes. </p>\n<p>An activity is merely a request to move. That activity will be scheduled/planned into what is called a \"Trip\" for the actual execution. The trip is reference for one or more driver (employee or contractor) itineraries that will perform one or more vehicle moves/activities. For example a trip might only contain a single driver and 1 activity or it might contain 10 drivers each moving 3-5 vehicles to complete the work.</p>\n<p>After an activity is created, it will go through a flow of statuses until it's completed. Below is a guide to the statuses returned.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Unplanned</td>\n<td>The activity has been created but has not been planned to a trip for execution.</td>\n</tr>\n<tr>\n<td>Planned</td>\n<td>The activity is associated with a trip for execution but the trip is not started yet.</td>\n</tr>\n<tr>\n<td>Pending</td>\n<td>The trip the activity is associated with has been started but the driver has not gotten to that specific vehicle move yet.</td>\n</tr>\n<tr>\n<td>En Route</td>\n<td>The activity move is in progress. The driver has either arrived at the pickup location location and started the inspection, is traveling ot the destination, or has arrived but hasn't completed the dropoff inspection.</td>\n</tr>\n<tr>\n<td>Complete</td>\n<td>The activity move is completed (Note, currently a webhook is not triggered for activity completion until after the trip is designated as complete by the driver vs the activity itself).</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE:</strong> During this process you can check the status of the activity using the GET command or you can subscribe to <a href=\"#webhooks\">webhooks</a> to get when activities are completed. <i>Events for the other statuses are still under development</i></p>\n","_postman_id":"eb365069-2a85-4539-8fe3-160feaa297f0"},{"name":"Rideshares","item":[{"name":"List","id":"9794524b-837b-4841-896c-2a018e219c20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://do.draiver.com/services/apexrest/v2/legacy/rideshares?status=pending","description":"<p>Get the list of pending or complete rideshares. The value of \"pending\" will return the list of active/incomplete rideshare requests. The value of \"complete\" will return back rideshare requests from last 30 days.</p>\n<p>If you want to filter the response for a specific account, pass the parameter \"filterAccountIds\" as a comma separate list of account ids to filter.</p>\n","urlObject":{"protocol":"https","path":["services","apexrest","v2","legacy","rideshares"],"host":["do","draiver","com"],"query":[{"disabled":true,"key":"filterAccountIds","value":"{{accountId}}"},{"key":"status","value":"pending"}],"variable":[]}},"response":[],"_postman_id":"9794524b-837b-4841-896c-2a018e219c20"},{"name":"Estimate","id":"f6939a36-0feb-4c55-83b0-40f1f6d04daa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"startLat\": 39.1215929,\n  \"startLon\": -94.8253654,\n  \"endLat\": 38.928182,\n  \"endLon\": -94.6797627,\n  \"rideType\" : \"UberX\"\n}"},"url":"https://do.draiver.com/services/apexrest/v2/legacy/rideshares/estimate","description":"<p>Get a list of estimates for uber services with a designated preferred rideshare type. An estimate is required to be called before every rideshare order request in order to get the desired product and fare id.</p>\n","urlObject":{"protocol":"https","path":["services","apexrest","v2","legacy","rideshares","estimate"],"host":["do","draiver","com"],"query":[],"variable":[]}},"response":[{"id":"a6fc7b27-a07f-4f50-a85e-03862b515b4b","name":"Estimate","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"startLat\": 39.1215929,\n  \"startLon\": -94.8253654,\n  \"endLat\": 38.928182,\n  \"endLon\": -94.6797627,\n  \"rideType\" : \"UberX\"\n}"},"url":"https://do.draiver.com/services/apexrest/v2/legacy/rideshares/estimate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 27 Jun 2021 15:22:55 GMT"},{"key":"Cache-Control","value":"no-cache,must-revalidate,max-age=0,no-store,private"},{"key":"Strict-Transport-Security","value":"max-age=31536004; includeSubDomains"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Content-Encoding","value":"gzip"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"timeDisplay\": null,\n    \"recommended\": \"UberX\",\n    \"options\": {\n        \"UberXL\": {\n            \"productId\": \"23fc1cdd-f15e-4cb4-85b1-f040bb9c68bc\",\n            \"low\": 41.11,\n            \"high\": 41.11,\n            \"fareId\": \"668b200a-8f6f-4b23-beeb-dcb92cbec8f3\",\n            \"expiration\": 1624807497,\n            \"eta\": 300,\n            \"costDisplay\": \"$41.11\",\n            \"capacity\": 5,\n            \"avg\": 41.11\n        },\n        \"Comfort\": {\n            \"productId\": \"6b202bcf-421e-4f9f-b005-01dcf05300b8\",\n            \"low\": 34.42,\n            \"high\": 34.42,\n            \"fareId\": \"c87e22db-08c8-41db-b827-663dc1d0e4a1\",\n            \"expiration\": 1624807497,\n            \"eta\": 300,\n            \"costDisplay\": \"$34.42\",\n            \"capacity\": 3,\n            \"avg\": 34.42\n        },\n        \"Uber Pet\": {\n            \"productId\": \"da6bb357-8e77-4664-8808-0d45d6713ac6\",\n            \"low\": 35.66,\n            \"high\": 35.66,\n            \"fareId\": \"7564a881-766c-4acf-ad89-e67b301abe9c\",\n            \"expiration\": 1624807497,\n            \"eta\": 1200,\n            \"costDisplay\": \"$35.66\",\n            \"capacity\": 3,\n            \"avg\": 35.66\n        },\n        \"UberX\": {\n            \"productId\": \"2f9a5a3c-a3c1-459d-83d4-5b5c18f1a191\",\n            \"low\": 22.93,\n            \"high\": 22.93,\n            \"fareId\": \"24677638-88b5-44b1-ab8a-2edc04521b37\",\n            \"expiration\": 1624807497,\n            \"eta\": 1080,\n            \"costDisplay\": \"$22.93\",\n            \"capacity\": 3,\n            \"avg\": 22.93\n        }\n    },\n    \"duration\": 2167,\n    \"distance\": 15.48\n}"}],"_postman_id":"f6939a36-0feb-4c55-83b0-40f1f6d04daa"},{"name":"Request","id":"ab64bc37-0411-4b9b-b4c2-d23d3de47ef3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"driverNotes\": \"test\",\n    \"dropoffLoc\": \"Price Chopper, West 63rd Street, Shawnee, KS, USA\",\n    \"endAddress\": \"12010 W 63rd St, Shawnee, KS 66216, USA\",\n    \"endLat\": 39.01615909999999,\n    \"endLon\": -94.7256012,\n    \"fareId\": \"89e9a8db-6e4b-40ea-b34a-752ac1bf729e\",\n    \"firstName\": \"Kevin\",\n    \"lastName\": \"Burke\",\n    \"memo\": \"test\",\n    \"phone\": \"555-555-5555\",\n    \"pickupLoc\": \"DRAIVER, College Boulevard, Overland Park, KS, USA\",\n    \"productId\": \"2f9a5a3c-a3c1-459d-83d4-5b5c18f1a191\",\n    \"rideCategory\": \"Immediate\",\n    \"rideType\": \"UberX\",\n    \"startAddress\": \"7900 College Blvd Suite 141, Overland Park, KS 66210, USA\",\n    \"startLat\": 38.928182,\n    \"startLon\": -94.67757399999999\n}"},"url":"https://do.draiver.com/services/apexrest/v2/legacy/rideshares","description":"<p>Create a request to order an Uber. Pass the productId and fareId from the \"Estimate\" response call to confirm rideshare type.</p>\n<p>The rideCaregory value can determine whether to request immediately (\"Immediate\"), or the value of \"Flexible\" can be used which will not order an Uber but instead provide a link that can be used for up to 24 hours to transport the given rider from the start to the end with the designated product.</p>\n<p>\"rideType\" can be excluded if you are passing in an fareId and productId. This is only required if you do not call estimate first and want to skip straight to ordering an available uberX or uberXL regardless of cost or availability.</p>\n<p>Memo value can be used for internal purposes/tracking while the \"driverNotes\" can be used to pass information to the Uber Driver such as details on the rider, etc.</p>\n<p>\"locale\" can be passed to override the default account locale. The default US locale is en_US.</p>\n","urlObject":{"protocol":"https","path":["services","apexrest","v2","legacy","rideshares"],"host":["do","draiver","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab64bc37-0411-4b9b-b4c2-d23d3de47ef3"},{"name":"Cancel Request","id":"31d4fff4-d3c1-46a7-a44f-4ee05154ba0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"driverNotes\": \"test\",\n    \"dropoffLoc\": \"Price Chopper, West 63rd Street, Shawnee, KS, USA\",\n    \"endAddress\": \"12010 W 63rd St, Shawnee, KS 66216, USA\",\n    \"endLat\": 39.01615909999999,\n    \"endLon\": -94.7256012,\n    \"fareId\": \"89e9a8db-6e4b-40ea-b34a-752ac1bf729e\",\n    \"firstName\": \"Kevin\",\n    \"lastName\": \"Burke\",\n    \"memo\": \"test\",\n    \"phone\": \"555-555-5555\",\n    \"pickupLoc\": \"DRAIVER, College Boulevard, Overland Park, KS, USA\",\n    \"productId\": \"2f9a5a3c-a3c1-459d-83d4-5b5c18f1a191\",\n    \"rideCategory\": \"Immediate\",\n    \"rideType\": \"UberX\",\n    \"startAddress\": \"7900 College Blvd Suite 141, Overland Park, KS 66210, USA\",\n    \"startLat\": 38.928182,\n    \"startLon\": -94.67757399999999\n}"},"url":"https://do.draiver.com/services/apexrest/v2/legacy/rideshares/{{requestId}}","description":"<p>Cancel an existing rideshare request. If cancelled after the driver shows up or after a period of time will result in a cancellation fee from Uber.</p>\n","urlObject":{"protocol":"https","path":["services","apexrest","v2","legacy","rideshares","{{requestId}}"],"host":["do","draiver","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"31d4fff4-d3c1-46a7-a44f-4ee05154ba0f"}],"id":"c9e868c9-acb2-4856-96e1-ebf7f9b0c050","description":"<p>Using the DRAIVER rideshare API, users can monitor, request, and cancel rideshare requests utilizing Uber.</p>\n","_postman_id":"c9e868c9-acb2-4856-96e1-ebf7f9b0c050"},{"name":"Webhooks","item":[],"id":"1dbb5524-4e29-4953-a71e-200b29139771","description":"<h6 id=\"webhooks\">Webhooks</h6>\n<p>The Draiver API has the ability to notify you (via a webhook) about events related to actions (ex. pickup/dropoff vehicle, activities, and trips). To support this feature you must supply the URL you wish Draiver to call when the action has completed. The payload will have the following format:</p>\n<p><strong>Example Vehicle Pickup Response</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"version\": \"1.0\",\n  \"occurredAt\": \"2021-03-23T13:59:56.439Z\",\n  \"eventType\": \"vehicle.pickup\",\n  \"eventId\": \"4f7aa613-7d07-b1ef-2834-77f68a98ef20\",\n  \"eventCategory\": \"action\",\n  \"data\": {\n    \"vehicles\": [\n      {\n        \"year\": \"2014\",\n        \"vin\": \"1G1PA5SG0E7174385\",\n        \"model\": \"Cruze\",\n        \"make\": \"CHEVROLET\",\n        \"id\": \"a0Tc000000MAMK5EAP\"\n      }\n    ],\n    \"tripId\": \"a0Rc0000005uzBMEAY\",\n    \"status\": \"Complete\",\n    \"origin\": {\n      \"state\": \"KS\",\n      \"postalCode\": \"66044\",\n      \"lon\": -95.25244351476431,\n      \"lat\": 38.953572605722464,\n      \"label\": \"Mascot Autos\",\n      \"country\": \"US\",\n      \"city\": \"Lawrence\",\n      \"address\": \"Allen Fieldhouse Dr\"\n    },\n    \"location\": {\n      \"lon\": -86.2453801852435,\n      \"lat\": 30.361917894156072\n    },\n    \"itineraryId\": \"a0Rc0000005uzBOEAY\",\n    \"driver\": {\n      \"type\": \"Employee\",\n      \"name\": \"Big Jay\",\n      \"id\": \"003c000000omk6vAAA\"\n    },\n    \"destination\": {\n      \"state\": \"KS\",\n      \"postalCode\": \"66049\",\n      \"lon\": -95.26058899999998,\n      \"lat\": 38.968019,\n      \"label\": \"Deluxe Autos\",\n      \"country\": \"US\",\n      \"city\": \"Lawrence\",\n      \"address\": \"845 Iowa St\"\n    }\n  }\n}\n\n</code></pre><p>Example of an activity status update when canceled/deleted</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"version\": \"1.0\",\n  \"occurredAt\": \"2022-05-13T21:23:20.175Z\",\n  \"eventType\": \"activity.status\",\n  \"eventId\": \"44743485-6200-546c-3274-2460157053c6\",\n  \"eventCategory\": \"activity\",\n  \"data\": {\n    \"vehicle\": {\n      \"pickupInstructions\": \"Out - 2\",\n      \"id\": \"a0T3Z00000EiQyEUAV\"\n    },\n    \"type\": \"Vehicle\",\n    \"summary\": \"Vehicle TBD\",\n    \"status\": \"Canceled\",\n    \"requestor\": {\n      \"person\": {\n        \"phone\": \"(678) 552-4426\",\n        \"name\": \"Big Jay\",\n        \"id\": \"003j000000BSwJ4AAL\"\n      },\n      \"account\": {\n        \"name\": \"Mascot Autos\",\n        \"id\": \"001j000000IM867AAD\"\n      }\n    },\n    \"readyTime\": \"2020-07-08T19:45:00.000Z\",\n    \"origin\": {\n      \"state\": \"KS\",\n      \"postalCode\": \"66046\",\n      \"lon\": -95.2519995,\n      \"lat\": 38.9431846,\n      \"label\": \"Jayhawk Auto Group\",\n      \"id\": \"a1Pj0000002pxiUEAQ\",\n      \"city\": \"Lawrence\",\n      \"address\": \"1424 W 23rd St\"\n    },\n    \"name\": \"15189\",\n    \"id\": \"a1O3Z000003rYPGUA2\",\n    \"destination\": {\n      \"state\": \"MO\",\n      \"postalCode\": \"64153\",\n      \"lon\": -94.70959,\n      \"lat\": 39.304659,\n      \"label\": \"Hertz - MCI Airport 02211\",\n      \"id\": \"a1Pj0000002pxifEAA\",\n      \"city\": \"Kansas City\",\n      \"address\": \"265 Madrid Avenue\"\n    },\n    \"deadlineTime\": \"2020-07-08T22:00:00.000Z\",\n    \"completedTime\": \"2022-05-13T21:23:19.000Z\"\n  }\n}\n</code></pre><p>Example of a trip status webhook update</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"version\": \"1.0\",\n  \"occurredAt\": \"2022-05-16T15:03:00.212Z\",\n  \"eventType\": \"trip.status\",\n  \"eventId\": \"73839a28-3e08-97cd-e00e-4b757fc06aaa\",\n  \"eventCategory\": \"trip\",\n  \"data\": {\n    \"unitCount\": 1,\n    \"taskCount\": 0,\n    \"status\": \"Assigned\",\n    \"requestTime\": \"2022-05-19T15:30:00.000Z\",\n    \"requestor\": {\n      \"person\": {\n        \"phone\": \"(678) 552-4426\",\n        \"name\": \"Big Jay\",\n        \"id\": \"003j000000BSwJ4AAL\"\n      },\n      \"account\": {\n        \"name\": \"Mascot Autos\",\n        \"id\": \"001j000000IM867AAD\"\n      }\n    },\n    \"payments\": [\n      {\n        \"paymentItems\": [],\n        \"id\": \"a0M3Z00000u7CRFUA2\",\n        \"chargeStatus\": \"Incomplete\"\n      }\n    ],\n    \"overallName\": \"456887\",\n    \"overallId\": \"a0R3Z00000EsdFZUAZ\",\n    \"operator\": {\n      \"person\": {}\n    },\n    \"name\": \"456887.1\",\n    \"id\": \"a0R3Z00000EsdFaUAJ\",\n    \"etcTime\": \"2022-05-19T16:40:38.000Z\",\n    \"estimatedDuration\": 4238,\n    \"estimatedDistance\": 9.57,\n    \"driverSelection\": \"Pool\",\n    \"chase\": true\n  }\n}\n</code></pre>","_postman_id":"1dbb5524-4e29-4953-a71e-200b29139771"},{"name":"Schemas","item":[],"id":"5bfa28cd-d92c-4158-8823-8eb22c997b94","description":"<h6 id=\"activity-schema\">Activity Schema</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Example Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>type</strong></td>\n<td>String</td>\n<td>Vehicle</td>\n</tr>\n<tr>\n<td><strong>vehicle</strong></td>\n<td><a href=\"#vehicleSchema\">Vehicle Object</a></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>origin</strong></td>\n<td><a href=\"#address-schema\">Address Object</a></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>destination</strong></td>\n<td><a href=\"#address-schema\">Address Object</a></td>\n<td></td>\n</tr>\n<tr>\n<td><strong>readyTime</strong></td>\n<td>DateTime</td>\n<td>2021-03-22T08:00:00.000Z</td>\n</tr>\n<tr>\n<td><strong>deadlineTime</strong></td>\n<td>DateTime</td>\n<td>2021-03-23T08:00:00.000Z</td>\n</tr>\n<tr>\n<td>notes</td>\n<td>String</td>\n<td>Note you want to attach to an activity</td>\n</tr>\n<tr>\n<td>reference</td>\n<td>String</td>\n<td>ex. order number, unit number, external GUID</td>\n</tr>\n<tr>\n<td>webhook</td>\n<td>URL</td>\n<td>URL that Draiver should call when an activity status has changed. See <a href=\"#webhooks\">webhooks</a> for more info</td>\n</tr>\n</tbody>\n</table>\n</div><h6 id=\"address-schema\">Address Schema</h6>\n<p>There are multiple ways you can specify the activity addresses. You can provide an id, an external reference value, label + address or address. If no existing record match can be found and an address is provided, it will create the address as a new custom destination. If not enough information is provided to find a match (ex. no match on id or reference and no address provided), it will fail to create the activity.</p>\n<p>The following are the available ways to match:</p>\n<ol>\n<li>A DRAIVER location id (ex.  a1P3Z000009YDIGUA3)</li>\n<li>A reference value matching to a unique value in an existing location \"reference\" field if field is used as an external unique id.</li>\n<li>A Label + Full address (address, city, state, zipcode)</li>\n<li>No match and a new location is added with address and optional label.</li>\n</ol>\n<p>When creating with an address, you must pass address, city, state, postalCode, country. You can also supply a \"label\" field which will be used for matching on previous locations, otherwise a default label of the concatenated address will be added. Within the DRAIVER application, locations can be re-used or customized with additional metadata including things like contact information, specific instructions, etc. When an activity is created, it will try to match a location based on the following order:</p>\n<ol>\n<li>An id if the \"id\" field is provided</li>\n<li>A reference value if the \"reference field is provided.</li>\n<li>A match of label + full address</li>\n<li>A match of just full address</li>\n<li>No match and a new location is added with address and optional label.</li>\n</ol>\n<p>Below is the schema when supplying a new origin or destination. <em>required fields are in bold</em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Example Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>a1P3Z000009YDIGUA3</td>\n</tr>\n<tr>\n<td>label</td>\n<td>String</td>\n<td>Kansas Automotive</td>\n</tr>\n<tr>\n<td><strong>address</strong></td>\n<td>String</td>\n<td>7900 College Blvd</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>String</td>\n<td>Suite 141</td>\n</tr>\n<tr>\n<td><strong>city</strong></td>\n<td>String</td>\n<td>Overland Park</td>\n</tr>\n<tr>\n<td><strong>state</strong></td>\n<td>String</td>\n<td>KS</td>\n</tr>\n<tr>\n<td><strong>postalCode</strong></td>\n<td>String</td>\n<td>66210</td>\n</tr>\n<tr>\n<td><strong>country</strong></td>\n<td>String</td>\n<td>US (2 digit code)</td>\n</tr>\n<tr>\n<td><strong>reference</strong></td>\n<td>String</td>\n<td>my id</td>\n</tr>\n<tr>\n<td>lat</td>\n<td>Decimal</td>\n<td>39.123</td>\n</tr>\n<tr>\n<td>lon</td>\n<td>Decimal</td>\n<td>-95.235</td>\n</tr>\n<tr>\n<td>timezone</td>\n<td>String</td>\n<td>America/Chicago</td>\n</tr>\n</tbody>\n</table>\n</div><h6 id=\"vehicle-schema\">Vehicle Schema</h6>\n<p>When adding vehicles to an activity, you can supply a specific VIN number or leave it blank and optionally provide pickup or dropoff instructions. It's recommended if a vin isn't provided, to provide some kind of information in the pickup instructions for the driver to identify the vehicle (ex. stock/unit number, white Chevy Tahoe, etc). You can also provide a year, make, model in addition to the vin which the system will use in the event a vin decode fails to store on the corresponding vehicle record.</p>\n<p>Below is the schema when supplying Vehicle <em>required fields are in bold</em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Example Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>vin</td>\n<td>String</td>\n<td>5YJSA1E29FF103112</td>\n</tr>\n<tr>\n<td>year</td>\n<td>String</td>\n<td>2022</td>\n</tr>\n<tr>\n<td>make</td>\n<td>String</td>\n<td>Honda</td>\n</tr>\n<tr>\n<td>model</td>\n<td>String</td>\n<td>civic</td>\n</tr>\n<tr>\n<td>pickupInstructions</td>\n<td>String</td>\n<td>Get signed papwerwork</td>\n</tr>\n<tr>\n<td>dropoffInstructions</td>\n<td>String</td>\n<td>Leave keys in console</td>\n</tr>\n</tbody>\n</table>\n</div><h6 id=\"accounts\">Accounts</h6>\n<p>DRAIVER supports an account hierarchy where for example one organization can have multiple child accounts and so on. If you are looking to generate activities across multiple accounts within the account hierarchy, please contact integration support for assistance.</p>\n","_postman_id":"5bfa28cd-d92c-4158-8823-8eb22c997b94"}],"event":[{"listen":"prerequest","script":{"id":"cb4fd8b8-f976-4aa2-b600-6138b0c38ae7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"29a11df6-63cd-4cd4-8a7d-652aadbb4fa7","type":"text/javascript","exec":[""]}}]}