{"info":{"_postman_id":"6b6f6f82-6e96-4ba7-b84c-a626a8e14f7d","name":"Public API","description":"<html><head></head><body><h3 id=\"servers\">Servers</h3>\n<p>When making requests to the API, the API url should be assembled with the companies subdomain in the URL. Companies pick their subdomain when signing up and it's the URL of their dashboard. For example, if the companies subdomain is <code>testcompany</code> (dashboard url being <code>https://testcompany.liverydesk.com</code>), the API url would be:</p>\n<p>Production: <code>https://testcompany.liverydesk.com/api</code>\nStaging: <code>https://testcompany.staging.liverydesk.com/api</code> \n<strong>Only specific companies have staging URL's</strong></p>\n<p>In the case where we don't have access to a companies subdomain to assemble the API URL, calls can be made to the following generic URL's:</p>\n<p>Production: <code>https://api.liverydesk.com/api</code>\nStaging Server: <code>https://staging.liverydesk.com/api</code></p>\n<h3 id=\"making-requests\">Making Requests</h3>\n<p>The API accepts data as <code>form-data</code> or <code>JSON</code>. For JSON, make sure the <code>Content-Type</code> is <code>application/json</code>. </p>\n<p>When making requests to Guest endpoints, you'll need to pass the API Key in your headers as <code>X-API-KEY</code>. \nOnce authenticated, you'll need to pass the access token in your headers as <code>X-ACCESS-TOKEN</code>.\nIt's OK to pass both if these at all times if they're both available.</p>\n<h3 id=\"response-envelope\">Response Envelope:</h3>\n<p>All responses are wrapped in a specific envelope which contains a <code>data</code> and <code>meta</code> object. The <code>data</code> object will always contain the data for that endpoint and <code>meta</code> will contain additinal details about the data returned. </p>\n<p>This API uses two different layers for response codes. It will always return HTTP Status 200 if the request to the server was successful on a network level. To determine if the request was successfull on the application level, use the code returned in the <code>meta</code> object.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"data\":{\n        \"user_id\": 1,\n        \"hash\": \"dfa324d\",\n        \"email\": \"ashwinnn+user@gmail.com\",\n        \"first_name\": \"ashwin\",\n        \"last_name\": \"surge\",\n        \"_type\": \"user\"\n    },\n    \"meta\": {\n        \"paging\": {\n            previous: \"\",\n            next: \"\"\n        },\n        \"code\": 201,\n        \"code_description\": \"Created\",\n        \"items\": 0\n    }   \n}\n</code></pre><p>Multiple result sets will be wrapped in an array. If the endpoint supports paging, there will be a <code>paging</code> object inside <code>meta</code>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            ...\n        },\n        {\n            \"id\": \"2\",\n            ...\n        },\n        {\n            \"id\": \"3\",\n            ...\n        },\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"items\": 3\n    }\n}    \n</code></pre><p>If there is an error, there will not be a \"data\" object in the response envelope. There will be an \"error\" object instead.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"error\": {\n        \"message\": \"Incorrect password\"\n    }\n}\n</code></pre><h3 id=\"pagination\">Pagination</h3>\n<p>Pagination can be applied to <code>GET</code> requests. The API respects the following pagination modifiers: <code>_page</code> and <code>_limit</code>. <code>_limit</code> is the amount of results per page and is defaulted to 25. The total amount of found records is the <code>total_results</code> attribute. <code>previous</code> and <code>next</code> are API links to get more records. <code>page</code> respresents the current page of data. <code>total_pages</code> is the total amount of pages which is just <code>total_results</code>/<code>limit</code>.</p>\n<p>The paging metadata is on the <code>paging</code> attribute on the <code>meta</code> object.</p>\n<p>  meta: {\n      \"paging\": {\n        \"per_page\": 25,\n        \"total_pages\": 2,\n        \"page\": 1,\n        \"total_results\": 46,\n        \"previous\": null,\n        \"next\": \"<a href=\"http://127.0.0.1/1/activity?_page=2\">http://127.0.0.1/1/activity?_page=2</a>\"\n      },\n      \"code\": 200,\n      \"code_description\": \"Ok\",\n      \"items\": 25\n    }</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"8109188","collectionId":"6b6f6f82-6e96-4ba7-b84c-a626a8e14f7d","publishedId":"2s8YeoNDE9","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"252935","highlight":"00cdbe"},"publishDate":"2022-11-11T00:16:57.000Z"},"item":[{"name":"Auth","item":[{"name":"Authenticate Employee","id":"89e9e86b-8c57-4a0f-b784-42e7d46f2242","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"username","value":"demodriver@test_company","type":"text"},{"key":"password","value":"pass1234","type":"text"}]},"url":"{{host}}/auth","urlObject":{"path":["auth"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d368688e-67f4-468a-a104-3185f1f37d3c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"username","value":"nickadmin@mlcabs","type":"text"},{"key":"password","value":"pass1234","type":"text"}]},"url":"{{host}}/auth"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"501"},{"key":"ETag","value":"W/\"1f5-TKtQz4e+T3UXGrQMriC6wBNoXLA\""},{"key":"Date","value":"Tue, 27 Apr 2021 17:35:59 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"api_key\": \"3423423432057d1f6f242f58ca8744f1\",\n        \"user_id\": 728,\n        \"company_id\": 1,\n        \"application_id\": 50,\n        \"account_type\": \"employee\",\n        \"access_token_id\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjcyOCwiZXhwIjoxNjUxMDgwOTU5NzE5LCJhcHBsaWNhdGlvbl9pZCI6NTAsImFjY291bnRfdHlwZSI6ImVtcGxveWVlIiwiY29tcGFueV9pZCI6MX0.xbGPQaPYwOzMfoALNwjP7BDSBmAPv07ZNCHzQw6uCbo\",\n        \"expiration_date\": \"2022-04-27 17:35:59\",\n        \"date_created\": \"2021-04-27 17:35:59\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"89e9e86b-8c57-4a0f-b784-42e7d46f2242"},{"name":"Authenticate User","id":"5910d8fe-796b-4d16-a608-422e3eb30a88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"username","value":"testuser@company.com","description":"<p>Email address</p>\n","type":"text"},{"key":"password","value":"strongpass123","type":"text"}]},"url":"{{host}}/auth/user","urlObject":{"path":["auth","user"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"93ad302a-ec95-4238-82d6-771205c594ad","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"username","value":"test@liverydesk.com","description":"Email address","type":"text"},{"key":"password","value":"pass1234","type":"text"}]},"url":"{{host}}/auth/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1557","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 11 Oct 2017 22:10:16 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"615-+ndONz46sB0kC7p1oYYXSt7xAk8\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1507759816879853","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"stage2.liverydesk.com","path":"/","secure":false,"value":"s%3AjnhCv1uArGRa4yUi79mwJHWYdg9_L984.m6WgfibtZ1dLUNz7xxZiWCos%2FSg%2FWwYO%2BrE%2BWMK%2B8rU","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"access_token\":{\"access_token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjE3MSwiZXhwIjoxNTM5Mjk1ODE2ODczLCJhcHBsaWNhdGlvbl9pZCI6MSwiYWNjb3VudF90eXBlIjoidXNlciIsImNvbXBhbnlfaWQiOjF9.-HiS7dCCDUVpJzhQfllTSGRGPZTF6kY-Tk1vXF-PzO4\",\"expiration_date\":\"2018-10-11 22:10:16\"},\"user\":{\"user_id\":171,\"company_id\":1,\"password\":\"$2a$08$1ZAcqMea0RR7IWJ5U2bJp.FMZgZhjObGb5.srCgGd8tw7KrAhRLrS\",\"hash\":\"R_bHfARG-\",\"email\":\"test@liverydesk.com\",\"device_id\":null,\"first_name\":\"LD\",\"last_name\":\"Test\",\"location_id\":null,\"phone_country\":\"US\",\"phone\":\"9175677735\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":\"stripe\",\"payment_processor_id\":\"cus_ANHPLaJLgR37BR\",\"payment_processor_card_id\":\"card_1A2WqxEgaH5gKO4gky4G4E8o\",\"card_last_4\":\"4242\",\"card_address_line1\":null,\"card_address_line2\":null,\"card_address_city\":null,\"card_address_state\":null,\"card_address_zip\":null,\"card_address_country\":null,\"date_created\":\"2017-02-17 21:26:45\",\"date_updated\":\"2017-08-03 16:06:03\",\"last_login_date\":\"2017-08-03 16:06:03\",\"phone_verified\":1,\"phone_verification_code\":null,\"phone_verified_date\":\"2017-02-17 21:30:38\",\"picture\":null,\"phone_international\":\"+1 917 567 7735\",\"phone_national\":\"(917) 567-7735\"}},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"5910d8fe-796b-4d16-a608-422e3eb30a88"}],"id":"af7d429b-43cc-426a-995e-8823f97f1683","_postman_id":"af7d429b-43cc-426a-995e-8823f97f1683","description":""},{"name":"Caller ID Incoming ","item":[{"name":"Utils","item":[{"name":"Validate phone number","id":"0bf46e01-96c1-4cde-8681-44efb87908c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/utils/phone/validate?phone=2222222222&phone_country=us","urlObject":{"path":["utils","phone","validate"],"host":["{{host}}"],"query":[{"key":"phone","value":"2222222222"},{"key":"phone_country","value":"us"}],"variable":[]}},"response":[{"id":"f9689125-e54a-4aea-b8f8-128eea05ef88","name":"Valid phone","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/utils/phone/validate?phone=2222222222&phone_country=us","host":["{{host}}"],"path":["utils","phone","validate"],"query":[{"key":"phone","value":"2222222222"},{"key":"phone_country","value":"us"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"106","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 17 Aug 2017 15:34:33 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"6a-MBVKTgkf9d9ARIbkfvD8/jm3UBw\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1502984073835617","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3A6zS3apJ2i7GphzDMBOl-S6hDmpn-hGGp.sxXn4%2BFhZ%2BYqv3DElJgiGmV7xr784fDLpmyvxVxoHPU","key":"connect.sid"}],"responseTime":null,"body":"{\n    \"data\": {\n        \"country\": \"US\",\n        \"phone\": \"9175677735\",\n        \"is_valid\": true\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\"\n    }\n}"},{"id":"ad7946ec-1c81-40a5-9878-6fa7877f7e54","name":"Invalid phone","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/utils/phone/validate?phone=9123123&phone_country=us","host":["{{host}}"],"path":["utils","phone","validate"],"query":[{"key":"phone","value":"9123123"},{"key":"phone_country","value":"us"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"71","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 17 Aug 2017 15:35:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"47-A52KuN7NNMRNoQMVKbJAWIFTBMs\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1502984146401267","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3A6zS3apJ2i7GphzDMBOl-S6hDmpn-hGGp.sxXn4%2BFhZ%2BYqv3DElJgiGmV7xr784fDLpmyvxVxoHPU","key":"connect.sid"}],"responseTime":null,"body":"{\n    \"data\": {\n        \"is_valid\": false\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\"\n    }\n}"}],"_postman_id":"0bf46e01-96c1-4cde-8681-44efb87908c8"}],"id":"7a0f2fc2-a027-468f-afd2-7e16688f8c4e","_postman_id":"7a0f2fc2-a027-468f-afd2-7e16688f8c4e","description":""},{"name":"Incoming webhook","id":"f465660b-a08e-484a-8683-2ca518de90c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"}],"url":"{{host}}/callerid?name=Callers Name&number=2222222222&line=1&se=start","urlObject":{"path":["callerid"],"host":["{{host}}"],"query":[{"key":"name","value":"Callers Name"},{"key":"number","value":"2222222222"},{"key":"line","value":"1"},{"description":{"content":"<p>Pass <code>start</code> if this is the <code>start</code> of the call</p>\n","type":"text/plain"},"key":"se","value":"start"},{"disabled":true,"key":"country","value":"us"}],"variable":[]}},"response":[{"id":"f64a3468-f821-4e61-983a-6d8a48ec1743","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}","disabled":true},{"key":"x-api-key","value":"{{api_key}}","type":"text"}],"url":{"raw":"{{host}}/callerid?name=Callers Name&number=2222222222&line=1&se=start","host":["{{host}}"],"path":["callerid"],"query":[{"key":"name","value":"Callers Name"},{"key":"number","value":"2222222222"},{"key":"line","value":"1"},{"key":"se","value":"start","description":"Pass `start` if this is the `start` of the call"},{"key":"country","value":"us","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"367"},{"key":"ETag","value":"W/\"16f-mZbo00BXH3sna5N0h63ZReDhdb4\""},{"key":"Date","value":"Tue, 27 Apr 2021 17:48:09 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"incoming_call_id\": 3674162,\n        \"company_id\": 1,\n        \"phone_country\": \"US\",\n        \"number\": \"2222222222\",\n        \"name\": \"Callers Name\",\n        \"jobs\": 47,\n        \"line\": 1,\n        \"processed\": 0,\n        \"date_created\": \"2021-04-27 17:48:09\",\n        \"date_updated\": \"2021-04-27 17:48:09\",\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"f465660b-a08e-484a-8683-2ca518de90c3"}],"id":"8af316e4-e7bd-4d0f-9396-98d6092aa1b9","_postman_id":"8af316e4-e7bd-4d0f-9396-98d6092aa1b9","description":""},{"name":"Company","item":[{"name":"Get company","id":"2d2b99c4-0d25-45c0-a8a0-ea7b635686e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text","description":"<p>Optional. Must have either x-api-key and/or x-access-token</p>\n"},{"key":"x-access-token","value":"{{access_token}}","description":"<p>Optional. Must have either x-api-key and/or x-access-token</p>\n","type":"text"}],"url":"{{host}}/company","urlObject":{"path":["company"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8475744f-25eb-48ac-ba7d-982b7e142bb9","name":"Success - Using Api Key","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"73d243880f29bc45a7969eb12dd17725","type":"text","description":"Optional. Must have either x-api-key and/or x-access-token"},{"key":"x-access-token","value":"{{access_token}}","description":"Optional. Must have either x-api-key and/or x-access-token","type":"text","disabled":true}],"url":"{{host}}/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5214"},{"key":"ETag","value":"W/\"145e-l3njFqlc04/DtghKuOgFpRKheGk\""},{"key":"Date","value":"Tue, 27 Apr 2021 17:56:53 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"company_id\": 100,\n        \"plan_id\": 0,\n        \"name\": \"Test Company\",\n        \"location_id\": 388582,\n        \"subdomain\": \"test_company\",\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"email\": \"testcompany@testcompany.com\",\n        \"website\": \"\",\n        \"currency\": \"USD\",\n        \"is_active\": 1,\n        \"is_on_trial\": 1,\n        \"trial_end_date\": \"2021-05-27 17:53:49\",\n        \"timezone\": \"America/New_York\",\n        \"date_created\": \"2021-04-27 17:53:49\",\n        \"date_updated\": \"2021-04-27 17:53:49\",\n        \"enable_partnerships\": 0,\n        \"current_job_number\": 1,\n        \"config\": {},\n        \"custom_attributes\": null,\n        \"type\": \"courier\",\n        \"cluster\": \"default\",\n        \"date_format\": \"MM/dd/yyyy @ hh:mm a\",\n        \"language\": \"en\",\n        \"billing_email\": null,\n        \"billing_details\": null,\n        \"state_license_number\": null,\n        \"state_delivery_license_number\": null,\n        \"billing_usage_last_reported_date\": null,\n        \"is_parent\": 0,\n        \"parent_company_id\": null,\n        \"location\": {\n            \"location_id\": 388582,\n            \"address\": \"123 West Ave\",\n            \"address_two\": null,\n            \"city\": \"Brisbane\",\n            \"state\": \"Queensland\",\n            \"postal_code\": \"4178\",\n            \"country\": \"AU\",\n            \"long_name\": \"123 West Ave, Wynnum QLD 4178, Australia\",\n            \"short_name\": \"123 West Ave, Wynnum QLD 4178, Australia\",\n            \"latitude\": -27.4498,\n            \"longitude\": 153.16526,\n            \"date_created\": \"2021-04-27 17:53:49\",\n            \"date_updated\": \"2021-04-27 17:53:49\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"5083b07d66c65bffaa3876fd7c62e790\",\n            \"company_id\": null\n        },\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"currency_symbol\": \"$\",\n        \"_trial_expired\": false,\n        \"settings\": {\n            \"push_notification_arrived_at_pickup_location\": \"Your delivery is arriving!\",\n            \"enable_batch_actions\": \"1\",\n            \"sms_notification_job_completed\": \"Hope you enjoyed your delivery!\",\n            \"push_notification_job_completed\": \"Hope you enjoyed your delivery!\",\n            \"enable_push_notification_arrived_at_pickup_location\": \"1\",\n            \"enable_push_notification_job_completed\": \"1\",\n            \"enable_sms_notification_job_completed\": \"1\",\n            \"employee_gcm_arn\": \"arn:aws:sns:us-east-1:774247789040:app/GCM/FCMDriverApps\",\n            \"employee_apns_arn\": \"arn:aws:sns:us-east-1:774247789040:app/APNS/com.liverydesk.ios.drive\",\n            \"disable_cancelled_jobs_return_leg\": \"1\",\n            \"enable_driver_application_approved_emails\": \"1\",\n            \"accept_cash\": \"1\",\n            \"expand_job_car_types\": \"1\",\n            \"acceptance_timeout\": \"20\",\n            \"enable_automatic_user_recruitment\": \"0\",\n            \"enable_driver_referral_reward_push\": \"0\",\n            \"enable_customer_invite_sms\": \"0\",\n            \"driver_referral_reward_push_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n            \"expand_job_options\": \"1\",\n            \"enable_reservation_email_admin_notifications\": \"1\",\n            \"enable_acceptance_timer\": \"1\",\n            \"enable_recruiting_referral_rewards\": \"0\",\n            \"show_nearby_drivers\": \"1\",\n            \"enable_driver_signup_emails\": \"1\",\n            \"sms_notification_arrived_at_pickup_location\": \"Your delivery is arriving!\",\n            \"enable_sms_notification_arrived_at_pickup_location\": \"1\",\n            \"expand_job_notes\": \"1\",\n            \"eta_based_notifications\": {\n                \"dropoff\": {\n                    \"10\": {\n                        \"sms\": {\n                            \"message\": \"Your delivery is 10 minutes away from {in_progress_stop_location}\",\n                            \"enabled\": 1\n                        },\n                        \"push\": {\n                            \"message\": \"Your delivery is 10 minutes away from {in_progress_stop_location}\",\n                            \"enabled\": 1\n                        }\n                    }\n                }\n            },\n            \"enable_single_stop\": \"1\",\n            \"default_recruiting_reward_percentage\": \"0\",\n            \"default_recruiting_money_responsibility\": \"base\",\n            \"driver_app_show_passenger_contact_info\": \"per-job\",\n            \"autodispatch_job_dispatches_limit\": \"25\",\n            \"default_recruiting_reward_flat_rate\": \"0\",\n            \"enable_stop_details\": \"1\",\n            \"user_referral_reward_sms_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n            \"enable_driver_invite_sms\": \"0\",\n            \"enable_user_referral_reward_sms\": \"0\",\n            \"customer_invite_sms_message\": \"You've been invited to join Test Company. Please click the following link to start\",\n            \"enable_user_referral_reward_push\": \"0\",\n            \"user_referral_reward_push_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n            \"enable_driver_referral_reward_sms\": \"0\",\n            \"job_item_structure\": \"{\\\"ID\\\":0,\\\"qty\\\":0,\\\"name\\\":0,\\\"price\\\":0}\",\n            \"driver_invite_sms_message\": \"You've been invited to join Test Company. Please click the following link to start\",\n            \"driver_referral_reward_sms_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n            \"maps_functions_default_clients\": \"{\\\"directions\\\":\\\"here_maps\\\",\\\"distance_matrix\\\":\\\"here_maps\\\",\\\"geocode\\\":\\\"here_maps\\\"}\",\n            \"enable_push_notification_pickup_stop_in_progress\": \"1\",\n            \"enable_sms_notification_job_in_progress\": \"1\",\n            \"sms_notification_pickup_stop_in_progress\": \"Your delivery is on the way! Your driver {driver_first_name} will be there shortly\",\n            \"push_notification_pickup_stop_in_progress\": \"Your delivery is on the way! Your driver {driver_first_name} will be there shortly\",\n            \"availability_requirements\": \"[{\\\"name\\\":\\\"dressed_in_uniform\\\",\\\"display_name\\\":\\\"Your uniform\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"certification_documents\\\",\\\"display_name\\\":\\\"Cannabis Delivery license\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"cash_on_hand\\\",\\\"display_name\\\":\\\"$500 cash for change\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"lockbox_key\\\",\\\"display_name\\\":\\\"Product lockbox key\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"power_bank\\\",\\\"display_name\\\":\\\"Power bank / Spare full battery\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"pen_and_cards\\\",\\\"display_name\\\":\\\"Missed you - forms & pen\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true}]\"\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"},{"id":"36cfeea2-67d2-4df0-8adc-f7dcdfb2cef2","name":"Success - Using Access Token","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"73d243880f29bc45a7969eb12dd17725","type":"text","description":"Optional. Must have either x-api-key and/or x-access-token","disabled":true},{"key":"x-access-token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjk2NSwiZXhwIjoxNjUxMDgyMzEzODU4LCJhcHBsaWNhdGlvbl9pZCI6MTAwMDAwMDE5MywiYWNjb3VudF90eXBlIjoiZW1wbG95ZWUiLCJjb21wYW55X2lkIjoxMDB9.kZnHw5BzUM2ABHP1lxQPP_SjlZ4sI2p7RILoxZ12Nlg","description":"Optional. Must have either x-api-key and/or x-access-token","type":"text"}],"url":"{{host}}/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5214"},{"key":"ETag","value":"W/\"145e-l3njFqlc04/DtghKuOgFpRKheGk\""},{"key":"Date","value":"Tue, 27 Apr 2021 17:59:07 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"company_id\": 100,\n        \"plan_id\": 0,\n        \"name\": \"Test Company\",\n        \"location_id\": 388582,\n        \"subdomain\": \"test_company\",\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"email\": \"testcompany@testcompany.com\",\n        \"website\": \"\",\n        \"currency\": \"USD\",\n        \"is_active\": 1,\n        \"is_on_trial\": 1,\n        \"trial_end_date\": \"2021-05-27 17:53:49\",\n        \"timezone\": \"America/New_York\",\n        \"date_created\": \"2021-04-27 17:53:49\",\n        \"date_updated\": \"2021-04-27 17:53:49\",\n        \"enable_partnerships\": 0,\n        \"current_job_number\": 1,\n        \"config\": {},\n        \"custom_attributes\": null,\n        \"type\": \"courier\",\n        \"cluster\": \"default\",\n        \"date_format\": \"MM/dd/yyyy @ hh:mm a\",\n        \"language\": \"en\",\n        \"billing_email\": null,\n        \"billing_details\": null,\n        \"state_license_number\": null,\n        \"state_delivery_license_number\": null,\n        \"billing_usage_last_reported_date\": null,\n        \"is_parent\": 0,\n        \"parent_company_id\": null,\n        \"location\": {\n            \"location_id\": 388582,\n            \"address\": \"123 West Ave\",\n            \"address_two\": null,\n            \"city\": \"Brisbane\",\n            \"state\": \"Queensland\",\n            \"postal_code\": \"4178\",\n            \"country\": \"AU\",\n            \"long_name\": \"123 West Ave, Wynnum QLD 4178, Australia\",\n            \"short_name\": \"123 West Ave, Wynnum QLD 4178, Australia\",\n            \"latitude\": -27.4498,\n            \"longitude\": 153.16526,\n            \"date_created\": \"2021-04-27 17:53:49\",\n            \"date_updated\": \"2021-04-27 17:53:49\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"5083b07d66c65bffaa3876fd7c62e790\",\n            \"company_id\": null\n        },\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"currency_symbol\": \"$\",\n        \"_trial_expired\": false,\n        \"settings\": {\n            \"push_notification_arrived_at_pickup_location\": \"Your delivery is arriving!\",\n            \"enable_batch_actions\": \"1\",\n            \"sms_notification_job_completed\": \"Hope you enjoyed your delivery!\",\n            \"push_notification_job_completed\": \"Hope you enjoyed your delivery!\",\n            \"enable_push_notification_arrived_at_pickup_location\": \"1\",\n            \"enable_push_notification_job_completed\": \"1\",\n            \"enable_sms_notification_job_completed\": \"1\",\n            \"employee_gcm_arn\": \"arn:aws:sns:us-east-1:774247789040:app/GCM/FCMDriverApps\",\n            \"employee_apns_arn\": \"arn:aws:sns:us-east-1:774247789040:app/APNS/com.liverydesk.ios.drive\",\n            \"disable_cancelled_jobs_return_leg\": \"1\",\n            \"enable_driver_application_approved_emails\": \"1\",\n            \"accept_cash\": \"1\",\n            \"expand_job_car_types\": \"1\",\n            \"acceptance_timeout\": \"20\",\n            \"enable_automatic_user_recruitment\": \"0\",\n            \"enable_driver_referral_reward_push\": \"0\",\n            \"enable_customer_invite_sms\": \"0\",\n            \"driver_referral_reward_push_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n            \"expand_job_options\": \"1\",\n            \"enable_reservation_email_admin_notifications\": \"1\",\n            \"enable_acceptance_timer\": \"1\",\n            \"enable_recruiting_referral_rewards\": \"0\",\n            \"show_nearby_drivers\": \"1\",\n            \"enable_driver_signup_emails\": \"1\",\n            \"sms_notification_arrived_at_pickup_location\": \"Your delivery is arriving!\",\n            \"enable_sms_notification_arrived_at_pickup_location\": \"1\",\n            \"expand_job_notes\": \"1\",\n            \"eta_based_notifications\": {\n                \"dropoff\": {\n                    \"10\": {\n                        \"sms\": {\n                            \"message\": \"Your delivery is 10 minutes away from {in_progress_stop_location}\",\n                            \"enabled\": 1\n                        },\n                        \"push\": {\n                            \"message\": \"Your delivery is 10 minutes away from {in_progress_stop_location}\",\n                            \"enabled\": 1\n                        }\n                    }\n                }\n            },\n            \"enable_single_stop\": \"1\",\n            \"default_recruiting_reward_percentage\": \"0\",\n            \"default_recruiting_money_responsibility\": \"base\",\n            \"driver_app_show_passenger_contact_info\": \"per-job\",\n            \"autodispatch_job_dispatches_limit\": \"25\",\n            \"default_recruiting_reward_flat_rate\": \"0\",\n            \"enable_stop_details\": \"1\",\n            \"user_referral_reward_sms_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n            \"enable_driver_invite_sms\": \"0\",\n            \"enable_user_referral_reward_sms\": \"0\",\n            \"customer_invite_sms_message\": \"You've been invited to join Test Company. Please click the following link to start\",\n            \"enable_user_referral_reward_push\": \"0\",\n            \"user_referral_reward_push_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n            \"enable_driver_referral_reward_sms\": \"0\",\n            \"job_item_structure\": \"{\\\"ID\\\":0,\\\"qty\\\":0,\\\"name\\\":0,\\\"price\\\":0}\",\n            \"driver_invite_sms_message\": \"You've been invited to join Test Company. Please click the following link to start\",\n            \"driver_referral_reward_sms_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n            \"maps_functions_default_clients\": \"{\\\"directions\\\":\\\"here_maps\\\",\\\"distance_matrix\\\":\\\"here_maps\\\",\\\"geocode\\\":\\\"here_maps\\\"}\",\n            \"enable_push_notification_pickup_stop_in_progress\": \"1\",\n            \"enable_sms_notification_job_in_progress\": \"1\",\n            \"sms_notification_pickup_stop_in_progress\": \"Your delivery is on the way! Your driver {driver_first_name} will be there shortly\",\n            \"push_notification_pickup_stop_in_progress\": \"Your delivery is on the way! Your driver {driver_first_name} will be there shortly\",\n            \"availability_requirements\": \"[{\\\"name\\\":\\\"dressed_in_uniform\\\",\\\"display_name\\\":\\\"Your uniform\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"certification_documents\\\",\\\"display_name\\\":\\\"Cannabis Delivery license\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"cash_on_hand\\\",\\\"display_name\\\":\\\"$500 cash for change\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"lockbox_key\\\",\\\"display_name\\\":\\\"Product lockbox key\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"power_bank\\\",\\\"display_name\\\":\\\"Power bank / Spare full battery\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"pen_and_cards\\\",\\\"display_name\\\":\\\"Missed you - forms & pen\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true}]\"\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"2d2b99c4-0d25-45c0-a8a0-ea7b635686e8"}],"id":"a8df37e8-a574-4692-a7d0-3dab406f4e98","_postman_id":"a8df37e8-a574-4692-a7d0-3dab406f4e98","description":""},{"name":"Driver","item":[{"name":"Get nearby drivers","id":"d45c4cc3-9270-4306-b406-e58e577d8329","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/driver/nearby?latitude=40.703&longitude=-73.667&proximity=5","urlObject":{"path":["driver","nearby"],"host":["{{host}}"],"query":[{"key":"latitude","value":"40.703"},{"key":"longitude","value":"-73.667"},{"description":{"content":"<p>In miles. Setting this value will find all drivers within this proximity of the latitude and longitude passed in</p>\n","type":"text/plain"},"key":"proximity","value":"5"}],"variable":[]}},"response":[{"id":"159f3ca5-6e6e-4c49-8a9e-bce6011ceaa4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjk2NSwiZXhwIjoxNjUxMDgyMzEzODU4LCJhcHBsaWNhdGlvbl9pZCI6MTAwMDAwMDE5MywiYWNjb3VudF90eXBlIjoiZW1wbG95ZWUiLCJjb21wYW55X2lkIjoxMDB9.kZnHw5BzUM2ABHP1lxQPP_SjlZ4sI2p7RILoxZ12Nlg"}],"url":{"raw":"{{host}}/driver/nearby?latitude=40.70055&longitude=-73.80344","host":["{{host}}"],"path":["driver","nearby"],"query":[{"key":"latitude","value":"40.70055"},{"key":"longitude","value":"-73.80344"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5326"},{"key":"ETag","value":"W/\"14ce-Ok+tlcv7WF9LbDEX9P4E8kwH+GA\""},{"key":"Date","value":"Tue, 27 Apr 2021 18:01:29 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"employee_id\": 965,\n            \"driver_number\": 1,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Company\",\n            \"username\": \"demodriver@test_company\",\n            \"email\": \"testcompany@testcompany.com\",\n            \"hash\": \"rjgtIGdgx\",\n            \"company_id\": 100,\n            \"location_id\": 388582,\n            \"primary_phone_country\": \"US\",\n            \"primary_phone\": \"2222222222\",\n            \"secondary_phone_country\": null,\n            \"secondary_phone\": null,\n            \"is_driver\": 0,\n            \"role_name\": \"driver\",\n            \"is_active\": 1,\n            \"is_deleted\": 0,\n            \"social_security_number\": null,\n            \"date_of_birth\": null,\n            \"base\": null,\n            \"base_id\": 67,\n            \"old_base_id\": null,\n            \"base_license_number\": null,\n            \"base_fee\": null,\n            \"base_fee_frequency\": null,\n            \"base_fee_last_processed\": null,\n            \"enable_recurring_base_fee\": 0,\n            \"base_fee_start_date\": null,\n            \"hack_license_number\": null,\n            \"hack_license_expiration\": null,\n            \"driver_license_number\": \"Change this\",\n            \"driver_license_expiration\": \"2021-05-27\",\n            \"driver_license_class\": \"D\",\n            \"is_car_owner\": 0,\n            \"dispatch_app_version\": null,\n            \"device_id\": null,\n            \"date_created\": \"2021-04-27 17:53:51\",\n            \"date_updated\": \"2021-04-27 17:53:51\",\n            \"car_type_id\": 255,\n            \"new_car_type_id\": null,\n            \"car_make\": \"Toyota\",\n            \"car_model\": \"Camry\",\n            \"car_year\": 2016,\n            \"car_color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"on_duty\": 0,\n            \"on_duty_date\": null,\n            \"phone_verified\": null,\n            \"phone_verification_code\": null,\n            \"phone_verified_date\": null,\n            \"picture\": null,\n            \"attributes\": null,\n            \"profile\": null,\n            \"application_approved_date\": null,\n            \"application_approved\": 0,\n            \"number_of_ratings\": 0,\n            \"average_rating\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            },\n            \"transaction_balance\": 0,\n            \"suspended_until\": null,\n            \"date_unsuspending\": null,\n            \"password_reset_hash\": null,\n            \"password_reset_client_hash\": null,\n            \"password_reset_hash_date\": null,\n            \"vehicle_inspection_expiration_date\": \"2021-05-27 13:53:50\",\n            \"is_suspended\": 0,\n            \"recruiter_entity_id\": null,\n            \"recruiter_entity_type\": null,\n            \"car_vin\": null,\n            \"assigned_to_vehicle_id\": 364,\n            \"parent_employee_id\": null,\n            \"custom_attributes\": null,\n            \"primary_phone_international\": \"+1 222 222 2222\",\n            \"primary_phone_national\": \"(222) 222-2222\",\n            \"transaction_balace\": 0,\n            \"location\": {\n                \"distance_in_miles\": 0.0000833118606110756,\n                \"driver_number\": 1,\n                \"location_data\": {\n                    \"latitude\": 40.70055,\n                    \"longitude\": -73.80344,\n                    \"accuracy\": 123,\n                    \"speed_meters\": 24,\n                    \"date_created\": \"2021-04-27 18:00:42\"\n                },\n                \"employee_id\": 965,\n                \"longitude\": -73.80344,\n                \"latitude\": 40.70055,\n                \"accuracy\": 123,\n                \"speed_meters\": 24,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_color\": \"Black\",\n                \"license_plate_number\": \"Change this\",\n                \"date_created\": \"2021-04-27 18:00:42\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 1\n    }\n}"}],"_postman_id":"d45c4cc3-9270-4306-b406-e58e577d8329"},{"name":"Get Job history","id":"7e70a04a-d852-4e7f-b213-9549ca454a0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/driver/history?from_date=2019-02-01T19:36:57-04:00&to_date=2021-07-15T19:36:57-04:00&employee_id=965","urlObject":{"path":["driver","history"],"host":["{{host}}"],"query":[{"key":"from_date","value":"2019-02-01T19:36:57-04:00"},{"key":"to_date","value":"2021-07-15T19:36:57-04:00"},{"key":"employee_id","value":"965"},{"disabled":true,"key":"_page","value":"1"}],"variable":[]}},"response":[{"id":"05fa4e2b-ce79-4952-afb8-609d4bee6bb7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjk2NSwiZXhwIjoxNjUxMDgzMzAzMTA3LCJhcHBsaWNhdGlvbl9pZCI6MTAwMDAwMDE5MywiYWNjb3VudF90eXBlIjoiZW1wbG95ZWUiLCJjb21wYW55X2lkIjoxMDB9.UoJstV0cGhNrWI-9iXZkO9Ms-fIoDK8SXVEbHg369SM"}],"url":{"raw":"{{host}}/driver/history?from_date=2019-02-01T19:36:57-04:00&to_date=2021-07-15T19:36:57-04:00&employee_id=965","host":["{{host}}"],"path":["driver","history"],"query":[{"key":"from_date","value":"2019-02-01T19:36:57-04:00"},{"key":"to_date","value":"2021-07-15T19:36:57-04:00"},{"key":"employee_id","value":"965"},{"key":"_page","value":"1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"22429"},{"key":"ETag","value":"W/\"579d-RCSJcymU6xsoe2kK0FrIvAbQC0w\""},{"key":"Date","value":"Tue, 27 Apr 2021 21:22:20 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"job_id\": 2174812,\n            \"job_number\": 2,\n            \"origin_job_number\": null,\n            \"hash\": \"DV7XSOJRY\",\n            \"user_id\": null,\n            \"contact_name\": \"Test User\",\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388163,\n            \"actual_pickup_location_id\": 388533,\n            \"dropoff_location_id\": 388161,\n            \"actual_dropoff_location_id\": 388533,\n            \"pickup_location\": {\n                \"location_id\": 388163,\n                \"address\": \"123 William St\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10038\",\n                \"country\": \"US\",\n                \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                \"latitude\": 40.70922,\n                \"longitude\": -74.00689,\n                \"date_created\": \"2019-11-07 16:26:36\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388161,\n                \"address\": \"234 E 149th St\",\n                \"address_two\": null,\n                \"city\": \"Bronx\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10451\",\n                \"country\": \"US\",\n                \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"latitude\": 40.81753,\n                \"longitude\": -73.9241,\n                \"date_created\": \"2019-11-06 15:25:37\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-27 18:13:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": \"2021-04-27 21:21:31\",\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 7,\n            \"in_progress_date\": \"2021-04-27 21:20:31\",\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": 964,\n            \"date_timezone_offset\": 240,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": null,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": {\n                \"total_cost\": 0,\n                \"route_costs\": [\n                    {\n                        \"stop\": {\n                            \"job_stop_id\": 3909313\n                        },\n                        \"price\": {\n                            \"name\": \"Test Company Default Rule\",\n                            \"base_id\": 67,\n                            \"priority\": 1,\n                            \"is_active\": 1,\n                            \"mile_rate\": 0,\n                            \"stop_rate\": 0,\n                            \"wait_rate\": 0,\n                            \"zone_id_1\": 70,\n                            \"zone_id_2\": null,\n                            \"base_price\": 0,\n                            \"company_id\": 100,\n                            \"is_default\": 1,\n                            \"is_deleted\": 0,\n                            \"pricing_id\": 39,\n                            \"surcharges\": null,\n                            \"minute_rate\": 0,\n                            \"old_base_id\": null,\n                            \"service_fee\": 0,\n                            \"date_created\": \"2021-04-27 17:53:51\",\n                            \"date_updated\": \"2021-04-27 17:53:51\",\n                            \"is_flat_rate\": false,\n                            \"minimum_price\": 0,\n                            \"amount_of_stops\": 0,\n                            \"distance_meters\": 0,\n                            \"estimated_price\": 0,\n                            \"cancellation_fee\": 0,\n                            \"duration_seconds\": 0,\n                            \"wait_time_overage\": 0,\n                            \"per_job_surcharges\": {},\n                            \"per_leg_surcharges\": {},\n                            \"estimated_price_low\": 0,\n                            \"estimated_price_high\": 0,\n                            \"new_vehicle_modifiers\": null,\n                            \"process_initial_price\": true,\n                            \"applied_option_surcharges\": [],\n                            \"variable_price_estimate_low_buffer\": 0.1,\n                            \"variable_price_estimate_high_buffer\": 0.1\n                        },\n                        \"option_ids\": [],\n                        \"distance_meters\": 0,\n                        \"duration_seconds\": 0,\n                        \"wait_time_overage\": 0,\n                        \"process_initial_price\": true,\n                        \"wait_time_overage_seconds\": 0\n                    }\n                ],\n                \"applied_surcharges\": [],\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_time_overage_seconds\": 0\n            },\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-27 18:13:47\",\n            \"date_updated\": \"2021-04-27 21:21:33\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": 0,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 0,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 7,\n                \"name\": \"Completed\",\n                \"slug\": \"completed\",\n                \"order\": 70\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 7,\n                \"name\": \"Completed\",\n                \"slug\": \"completed\",\n                \"order\": 70\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": null,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": 0,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"leg_costs\": [\n                    {\n                        \"base_price\": 0,\n                        \"mile_rate\": 0,\n                        \"minute_rate\": 0,\n                        \"wait_rate\": 0,\n                        \"service_fee\": 0,\n                        \"stop_rate\": 0,\n                        \"cancellation_fee\": 0,\n                        \"option_surcharges\": [],\n                        \"estimated_price\": 0\n                    }\n                ],\n                \"applied_surcharges\": [],\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/DV7XSOJRY\",\n            \"payment_instructions\": {\n                \"collect_payment\": true,\n                \"amount_to_collect\": 0\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909313,\n                    \"company_id\": 100,\n                    \"job_id\": 2174812,\n                    \"location_id\": 388163,\n                    \"actual_location_id\": 388533,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": {},\n                    \"status_id\": 7,\n                    \"arrival_date\": \"2021-04-27 22:13:00\",\n                    \"actual_arrival_date\": \"2021-04-27 21:20:35\",\n                    \"in_progress_date\": \"2021-04-27 21:20:30\",\n                    \"completed_date\": \"2021-04-27 21:21:20\",\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 18:13:47\",\n                    \"date_updated\": \"2021-04-27 21:21:20\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 17259,\n                    \"duration_to_next_stop_seconds\": 1797,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": 45,\n                    \"total_duration_seconds\": 50,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388163,\n                        \"address\": \"123 William St\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10038\",\n                        \"country\": \"US\",\n                        \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"latitude\": 40.70922,\n                        \"longitude\": -74.00689,\n                        \"date_created\": \"2019-11-07 16:26:36\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                        \"company_id\": null\n                    },\n                    \"actual_location\": {\n                        \"location_id\": 388533,\n                        \"address\": \"93-37 150th St\",\n                        \"address_two\": null,\n                        \"city\": \"Jamaica\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11435\",\n                        \"country\": \"US\",\n                        \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"latitude\": 40.7004,\n                        \"longitude\": -73.80361,\n                        \"date_created\": \"2020-05-27 16:18:41\",\n                        \"date_updated\": \"2020-05-27 16:18:41\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 7,\n                        \"name\": \"Completed\",\n                        \"slug\": \"completed\",\n                        \"order\": 70\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909314,\n                    \"company_id\": 100,\n                    \"job_id\": 2174812,\n                    \"location_id\": 388161,\n                    \"actual_location_id\": 388533,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": {},\n                    \"status_id\": 7,\n                    \"arrival_date\": \"2021-04-27 22:13:00\",\n                    \"actual_arrival_date\": \"2021-04-27 21:21:24\",\n                    \"in_progress_date\": \"2021-04-27 21:21:20\",\n                    \"completed_date\": \"2021-04-27 21:21:30\",\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 18:13:47\",\n                    \"date_updated\": \"2021-04-27 21:21:30\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 17259,\n                    \"duration_from_previous_stop_seconds\": 1797,\n                    \"wait_time_seconds\": 6,\n                    \"total_duration_seconds\": 10,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388161,\n                        \"address\": \"234 E 149th St\",\n                        \"address_two\": null,\n                        \"city\": \"Bronx\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10451\",\n                        \"country\": \"US\",\n                        \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"latitude\": 40.81753,\n                        \"longitude\": -73.9241,\n                        \"date_created\": \"2019-11-06 15:25:37\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                        \"company_id\": null\n                    },\n                    \"actual_location\": {\n                        \"location_id\": 388533,\n                        \"address\": \"93-37 150th St\",\n                        \"address_two\": null,\n                        \"city\": \"Jamaica\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11435\",\n                        \"country\": \"US\",\n                        \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"latitude\": 40.7004,\n                        \"longitude\": -73.80361,\n                        \"date_created\": \"2020-05-27 16:18:41\",\n                        \"date_updated\": \"2020-05-27 16:18:41\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 7,\n                        \"name\": \"Completed\",\n                        \"slug\": \"completed\",\n                        \"order\": 70\n                    }\n                }\n            ],\n            \"actual_pickup_location\": {\n                \"location_id\": 388533,\n                \"address\": \"93-37 150th St\",\n                \"address_two\": null,\n                \"city\": \"Jamaica\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11435\",\n                \"country\": \"US\",\n                \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"latitude\": 40.7004,\n                \"longitude\": -73.80361,\n                \"date_created\": \"2020-05-27 16:18:41\",\n                \"date_updated\": \"2020-05-27 16:18:41\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                \"company_id\": null\n            },\n            \"actual_dropoff_location\": {\n                \"location_id\": 388533,\n                \"address\": \"93-37 150th St\",\n                \"address_two\": null,\n                \"city\": \"Jamaica\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11435\",\n                \"country\": \"US\",\n                \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"latitude\": 40.7004,\n                \"longitude\": -73.80361,\n                \"date_created\": \"2020-05-27 16:18:41\",\n                \"date_updated\": \"2020-05-27 16:18:41\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                \"company_id\": null\n            },\n            \"current_stop\": {\n                \"job_stop_id\": 3909313,\n                \"company_id\": 100,\n                \"job_id\": 2174812,\n                \"location_id\": 388163,\n                \"actual_location_id\": 388533,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-27 22:13:00\",\n                \"actual_arrival_date\": \"2021-04-27 21:20:35\",\n                \"in_progress_date\": \"2021-04-27 21:20:30\",\n                \"completed_date\": \"2021-04-27 21:21:20\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 18:13:47\",\n                \"date_updated\": \"2021-04-27 21:21:20\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 17259,\n                \"duration_to_next_stop_seconds\": 1797,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": 45,\n                \"total_duration_seconds\": 50,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388163,\n                    \"address\": \"123 William St\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10038\",\n                    \"country\": \"US\",\n                    \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"latitude\": 40.70922,\n                    \"longitude\": -74.00689,\n                    \"date_created\": \"2019-11-07 16:26:36\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388533,\n                    \"address\": \"93-37 150th St\",\n                    \"address_two\": null,\n                    \"city\": \"Jamaica\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11435\",\n                    \"country\": \"US\",\n                    \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"latitude\": 40.7004,\n                    \"longitude\": -73.80361,\n                    \"date_created\": \"2020-05-27 16:18:41\",\n                    \"date_updated\": \"2020-05-27 16:18:41\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909314,\n                \"company_id\": 100,\n                \"job_id\": 2174812,\n                \"location_id\": 388161,\n                \"actual_location_id\": 388533,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-27 22:13:00\",\n                \"actual_arrival_date\": \"2021-04-27 21:21:24\",\n                \"in_progress_date\": \"2021-04-27 21:21:20\",\n                \"completed_date\": \"2021-04-27 21:21:30\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 18:13:47\",\n                \"date_updated\": \"2021-04-27 21:21:30\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 17259,\n                \"duration_from_previous_stop_seconds\": 1797,\n                \"wait_time_seconds\": 6,\n                \"total_duration_seconds\": 10,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388161,\n                    \"address\": \"234 E 149th St\",\n                    \"address_two\": null,\n                    \"city\": \"Bronx\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10451\",\n                    \"country\": \"US\",\n                    \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"latitude\": 40.81753,\n                    \"longitude\": -73.9241,\n                    \"date_created\": \"2019-11-06 15:25:37\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388533,\n                    \"address\": \"93-37 150th St\",\n                    \"address_two\": null,\n                    \"city\": \"Jamaica\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11435\",\n                    \"country\": \"US\",\n                    \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"latitude\": 40.7004,\n                    \"longitude\": -73.80361,\n                    \"date_created\": \"2020-05-27 16:18:41\",\n                    \"date_updated\": \"2020-05-27 16:18:41\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                }\n            },\n            \"previous_stop\": null\n        }\n    ],\n    \"meta\": {\n        \"total_gross\": 0,\n        \"paging\": {\n            \"per_page\": 25,\n            \"total_pages\": 1,\n            \"page\": 1,\n            \"total_results\": 1,\n            \"previous\": null,\n            \"next\": null\n        },\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 1\n    }\n}"}],"_postman_id":"7e70a04a-d852-4e7f-b213-9549ca454a0f"},{"name":"Get queued jobs","id":"2633ca74-db46-46d0-91f7-e3b3b5217537","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/driver/queuedjobs?employee_id=965","urlObject":{"path":["driver","queuedjobs"],"host":["{{host}}"],"query":[{"description":{"content":"<p>optional, will override access token</p>\n","type":"text/plain"},"key":"employee_id","value":"965"}],"variable":[]}},"response":[{"id":"faacedf0-5ab2-43a3-a745-1aa3c553a143","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/driver/queuedjobs?employee_id=965","host":["{{host}}"],"path":["driver","queuedjobs"],"query":[{"key":"employee_id","value":"965","description":"optional, will override access token"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18114"},{"key":"ETag","value":"W/\"46c2-MHJyPZrb7HJLBGvp8vbArRqqX6s\""},{"key":"Date","value":"Tue, 27 Apr 2021 21:23:55 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"job_id\": 2174813,\n            \"job_number\": 3,\n            \"origin_job_number\": null,\n            \"hash\": \"07WxwJMJr\",\n            \"user_id\": null,\n            \"contact_name\": \"Test User\",\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388163,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388161,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388163,\n                \"address\": \"123 William St\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10038\",\n                \"country\": \"US\",\n                \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                \"latitude\": 40.70922,\n                \"longitude\": -74.00689,\n                \"date_created\": \"2019-11-07 16:26:36\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388161,\n                \"address\": \"234 E 149th St\",\n                \"address_two\": null,\n                \"city\": \"Bronx\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10451\",\n                \"country\": \"US\",\n                \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"latitude\": 40.81753,\n                \"longitude\": -73.9241,\n                \"date_created\": \"2019-11-06 15:25:37\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-27 21:23:12\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 9,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 240,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": \"2021-04-27 21:23:00\",\n            \"driver_reminded_date\": \"2021-04-27 21:23:52\",\n            \"date_created\": \"2021-04-27 21:23:12\",\n            \"date_updated\": \"2021-04-27 21:23:46\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 0,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27 13:53:50\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/07WxwJMJr\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909315,\n                    \"company_id\": 100,\n                    \"job_id\": 2174813,\n                    \"location_id\": 388163,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": {},\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 05:23:11\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:23:13\",\n                    \"date_updated\": \"2021-04-27 21:23:14\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 17259,\n                    \"duration_to_next_stop_seconds\": 1797,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388163,\n                        \"address\": \"123 William St\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10038\",\n                        \"country\": \"US\",\n                        \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"latitude\": 40.70922,\n                        \"longitude\": -74.00689,\n                        \"date_created\": \"2019-11-07 16:26:36\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909316,\n                    \"company_id\": 100,\n                    \"job_id\": 2174813,\n                    \"location_id\": 388161,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": {},\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 05:23:11\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:23:13\",\n                    \"date_updated\": \"2021-04-27 21:23:44\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 17259,\n                    \"duration_from_previous_stop_seconds\": 1797,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.81753,\\\"lng\\\":-73.9241,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-27T17:47:57-04:00\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":17259,\\\"time\\\":1497,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": \"2021-04-27 21:47:57\",\n                    \"location\": {\n                        \"location_id\": 388161,\n                        \"address\": \"234 E 149th St\",\n                        \"address_two\": null,\n                        \"city\": \"Bronx\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10451\",\n                        \"country\": \"US\",\n                        \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"latitude\": 40.81753,\n                        \"longitude\": -73.9241,\n                        \"date_created\": \"2019-11-06 15:25:37\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909315,\n                \"company_id\": 100,\n                \"job_id\": 2174813,\n                \"location_id\": 388163,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:23:11\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:23:13\",\n                \"date_updated\": \"2021-04-27 21:23:14\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 17259,\n                \"duration_to_next_stop_seconds\": 1797,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388163,\n                    \"address\": \"123 William St\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10038\",\n                    \"country\": \"US\",\n                    \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"latitude\": 40.70922,\n                    \"longitude\": -74.00689,\n                    \"date_created\": \"2019-11-07 16:26:36\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909316,\n                \"company_id\": 100,\n                \"job_id\": 2174813,\n                \"location_id\": 388161,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": {},\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:23:11\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:23:13\",\n                \"date_updated\": \"2021-04-27 21:23:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 17259,\n                \"duration_from_previous_stop_seconds\": 1797,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.81753,\\\"lng\\\":-73.9241,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-27T17:47:57-04:00\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":17259,\\\"time\\\":1497,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": \"2021-04-27 21:47:57\",\n                \"location\": {\n                    \"location_id\": 388161,\n                    \"address\": \"234 E 149th St\",\n                    \"address_two\": null,\n                    \"city\": \"Bronx\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10451\",\n                    \"country\": \"US\",\n                    \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"latitude\": 40.81753,\n                    \"longitude\": -73.9241,\n                    \"date_created\": \"2019-11-06 15:25:37\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 1\n    }\n}"}],"_postman_id":"2633ca74-db46-46d0-91f7-e3b3b5217537"},{"name":"[DEPRECATED] Get active driver locations","id":"2e8dd049-a6b7-436f-a85b-425850a1af31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/driver/locations","description":"<p>This endpoint has been deprecated. Please use <code>/driver/online</code> instead</p>\n","urlObject":{"path":["driver","locations"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9cbdfc10-48b4-4f6b-959d-67af1b3dba42","name":"Succes","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjk2NSwiZXhwIjoxNjUxMDgzMzAzMTA3LCJhcHBsaWNhdGlvbl9pZCI6MTAwMDAwMDE5MywiYWNjb3VudF90eXBlIjoiZW1wbG95ZWUiLCJjb21wYW55X2lkIjoxMDB9.UoJstV0cGhNrWI-9iXZkO9Ms-fIoDK8SXVEbHg369SM"}],"url":"{{host}}/driver/locations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2896"},{"key":"ETag","value":"W/\"b50-hE4fuHjrzRoZkQxt2TGSh1Xgg/o\""},{"key":"Date","value":"Tue, 27 Apr 2021 21:24:40 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"driver_number\": 1,\n            \"employee\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 0,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27 13:53:50\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0\n            },\n            \"location_data\": {\n                \"latitude\": 40.70055,\n                \"longitude\": -73.80344,\n                \"accuracy\": 123,\n                \"speed_meters\": 24,\n                \"date_created\": \"2021-04-27 21:24:23\"\n            },\n            \"employee_id\": 965,\n            \"longitude\": -73.80344,\n            \"latitude\": 40.70055,\n            \"accuracy\": 123,\n            \"speed_meters\": 24,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Company\",\n            \"car_make\": \"Toyota\",\n            \"car_model\": \"Camry\",\n            \"car_color\": \"Black\",\n            \"license_plate_number\": \"Change this\",\n            \"date_created\": \"2021-04-27 21:24:23\"\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 1\n    }\n}"}],"_postman_id":"2e8dd049-a6b7-436f-a85b-425850a1af31"},{"name":"Invite driver","id":"c85315c0-9aed-4fd8-b123-04683de8f5b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{api_key}}"},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"phone","value":"2222222221","type":"text"},{"key":"phone_country","value":"US","type":"text"}]},"url":"{{host}}/driver/invite","urlObject":{"path":["driver","invite"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"cc209d69-736e-4570-9527-7f77dd69d757","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{api_key}}","disabled":true},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"phone","value":"2222222221","type":"text"},{"key":"phone_country","value":"US","type":"text"},{"key":"email","value":"email@email.com","type":"text","disabled":true}]},"url":"{{host}}/driver/invite"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"398"},{"key":"ETag","value":"W/\"18e-EBGY2/IsCc1Ia4cgDo83iLEGB0A\""},{"key":"Date","value":"Tue, 27 Apr 2021 21:29:49 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"invitation_id\": 36,\n        \"inviter_entity_type\": \"employee\",\n        \"company_id\": 100,\n        \"inviter_entity_id\": 965,\n        \"invited_entity_type\": \"employee\",\n        \"invited_entity_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222221\",\n        \"email\": null,\n        \"url_sent\": \"URL\",\n        \"date_updated\": \"2021-04-27 21:29:49\",\n        \"date_created\": \"2021-04-27 21:29:49\",\n        \"date_signed_up\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"c85315c0-9aed-4fd8-b123-04683de8f5b2"},{"name":"Create self assigned job","id":"e09f7d43-7bc3-4273-bb7c-553ca086a4a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"pickup_location_latitude","value":"40.71405","description":"<p>Required</p>\n","type":"text"},{"key":"pickup_location_longitude","value":"-73.95528","description":"<p>Required</p>\n","type":"text"},{"key":"dropoff_location_latitude","value":"41.77392","description":"<p>Optional</p>\n","type":"text"},{"key":"dropoff_location_longitude","value":"-72.87200","description":"<p>Optional</p>\n","type":"text"},{"key":"name","value":"User Name","description":"<p>Optional</p>\n","type":"text"},{"key":"phone","value":"2222222222","description":"<p>Optional</p>\n","type":"text"},{"key":"driver_notes","value":"driver notes","description":"<p>Optional</p>\n","type":"text"},{"key":"phone_country","value":"us","description":"<p>Optional</p>\n","type":"text"}]},"url":"{{host}}/job","description":"<p>Only drivers can hit this endpoint. The job created will be automatically assigned to the driver that created it and will be marked as started</p>\n","urlObject":{"path":["job"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5b82dfe6-fd19-43b1-bc15-900179d20dc8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjk2NSwiZXhwIjoxNjUxMDgzMzAzMTA3LCJhcHBsaWNhdGlvbl9pZCI6MTAwMDAwMDE5MywiYWNjb3VudF90eXBlIjoiZW1wbG95ZWUiLCJjb21wYW55X2lkIjoxMDB9.UoJstV0cGhNrWI-9iXZkO9Ms-fIoDK8SXVEbHg369SM"}],"body":{"mode":"formdata","formdata":[{"key":"pickup_location_latitude","value":"40.71405","description":"Required","type":"text"},{"key":"pickup_location_longitude","value":"-73.95528","description":"Required","type":"text"},{"key":"dropoff_location_latitude","value":"41.77392","description":"Optional","type":"text"},{"key":"dropoff_location_longitude","value":"-72.87200","description":"Optional","type":"text"},{"key":"name","value":"User Name","description":"Optional","type":"text"},{"key":"phone","value":"2222222222","description":"Optional","type":"text"},{"key":"driver_notes","value":"driver notes","description":"Optional","type":"text"},{"key":"phone_country","value":"us","description":"Optional","type":"text"}]},"url":"{{host}}/job"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18124"},{"key":"ETag","value":"W/\"46cc-0osMncPGkTnqlkZyuOZZmcePvt4\""},{"key":"Date","value":"Tue, 27 Apr 2021 21:32:42 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174814,\n        \"job_number\": 4,\n        \"origin_job_number\": null,\n        \"hash\": \"nyZbOPvCh\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": 965,\n        \"pickup_location_id\": 388586,\n        \"actual_pickup_location_id\": null,\n        \"dropoff_location_id\": 388587,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388586,\n            \"address\": \"385 Metropolitan Ave\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11211\",\n            \"country\": \"US\",\n            \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"latitude\": 40.71407,\n            \"longitude\": -73.95536,\n            \"date_created\": \"2021-04-27 21:32:35\",\n            \"date_updated\": \"2021-04-27 21:32:35\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388587,\n            \"address\": \"231 Haynes Rd\",\n            \"address_two\": null,\n            \"city\": \"Avon\",\n            \"state\": \"Connecticut\",\n            \"postal_code\": \"06001\",\n            \"country\": \"US\",\n            \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n            \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n            \"latitude\": 41.77357,\n            \"longitude\": -72.87228,\n            \"date_created\": \"2021-04-27 21:32:36\",\n            \"date_updated\": \"2021-04-27 21:32:36\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2021-04-28 01:32:35\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 4,\n        \"in_progress_date\": null,\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"driver notes\",\n        \"internal_notes\": \"\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 965,\n        \"updated_by_employee_id\": 965,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": null,\n        \"price_override_flag\": 0,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-27 21:32:40\",\n        \"date_updated\": \"2021-04-27 21:32:40\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": null,\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": null,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"driver\": {\n            \"employee_id\": 965,\n            \"driver_number\": 1,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Company\",\n            \"username\": \"demodriver@test_company\",\n            \"email\": \"testcompany@testcompany.com\",\n            \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n            \"password_hint\": \"pa*****4\",\n            \"hash\": \"rjgtIGdgx\",\n            \"company_id\": 100,\n            \"location_id\": 388582,\n            \"primary_phone_country\": \"US\",\n            \"primary_phone\": \"2222222222\",\n            \"secondary_phone_country\": null,\n            \"secondary_phone\": null,\n            \"is_driver\": 0,\n            \"role_name\": \"driver\",\n            \"is_active\": 1,\n            \"is_deleted\": 0,\n            \"social_security_number\": null,\n            \"date_of_birth\": null,\n            \"base\": null,\n            \"base_id\": 67,\n            \"old_base_id\": null,\n            \"base_license_number\": null,\n            \"base_fee\": null,\n            \"base_fee_frequency\": null,\n            \"base_fee_last_processed\": null,\n            \"enable_recurring_base_fee\": 0,\n            \"base_fee_start_date\": null,\n            \"hack_license_number\": null,\n            \"hack_license_expiration\": null,\n            \"driver_license_number\": \"Change this\",\n            \"driver_license_expiration\": \"2021-05-27\",\n            \"driver_license_class\": \"D\",\n            \"is_car_owner\": 0,\n            \"dispatch_app_version\": null,\n            \"device_id\": null,\n            \"date_created\": \"2021-04-27 17:53:51\",\n            \"date_updated\": \"2021-04-27 17:53:51\",\n            \"car_type_id\": 255,\n            \"new_car_type_id\": null,\n            \"car_make\": \"Toyota\",\n            \"car_model\": \"Camry\",\n            \"car_year\": 2016,\n            \"car_color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"on_duty\": 0,\n            \"on_duty_date\": null,\n            \"phone_verified\": null,\n            \"phone_verification_code\": null,\n            \"phone_verified_date\": null,\n            \"picture\": null,\n            \"attributes\": null,\n            \"profile\": null,\n            \"application_approved_date\": null,\n            \"application_approved\": 0,\n            \"number_of_ratings\": 0,\n            \"average_rating\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            },\n            \"transaction_balance\": 0,\n            \"suspended_until\": null,\n            \"date_unsuspending\": null,\n            \"password_reset_hash\": null,\n            \"password_reset_client_hash\": null,\n            \"password_reset_hash_date\": null,\n            \"vehicle_inspection_expiration_date\": \"2021-05-27 13:53:50\",\n            \"is_suspended\": 0,\n            \"recruiter_entity_id\": null,\n            \"recruiter_entity_type\": null,\n            \"car_vin\": null,\n            \"assigned_to_vehicle_id\": 364,\n            \"parent_employee_id\": null,\n            \"custom_attributes\": null,\n            \"primary_phone_international\": \"+1 222 222 2222\",\n            \"primary_phone_national\": \"(222) 222-2222\",\n            \"transaction_balace\": 0,\n            \"car_type\": {\n                \"vehicle_id\": 364,\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            },\n            \"assigned_to_vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            }\n        },\n        \"vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"summary\": \"null null null null\"\n        },\n        \"vehicle_car_type\": {\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"driver_base\": {\n            \"base_id\": 67,\n            \"name\": \"TEST_COMPANY\"\n        },\n        \"job_status\": {\n            \"status_id\": 4,\n            \"name\": \"In Progress\",\n            \"slug\": \"in-progress\",\n            \"order\": 40\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 965,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Company\",\n            \"email\": \"testcompany@testcompany.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 4,\n            \"name\": \"In Progress\",\n            \"slug\": \"in-progress\",\n            \"order\": 40\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 0,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 0,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/nyZbOPvCh\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909318,\n                \"company_id\": 100,\n                \"job_id\": 2174814,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 5,\n                \"arrival_date\": \"2021-04-28 05:32:35\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:32:40\",\n                \"date_updated\": \"2021-04-27 21:32:42\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 196205,\n                \"duration_to_next_stop_seconds\": 9121,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 5,\n                    \"name\": \"In Front\",\n                    \"slug\": \"in-front\",\n                    \"order\": 50\n                }\n            },\n            {\n                \"job_stop_id\": 3909317,\n                \"company_id\": 100,\n                \"job_id\": 2174814,\n                \"location_id\": 388587,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:32:36\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:32:40\",\n                \"date_updated\": \"2021-04-27 21:32:42\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 196205,\n                \"duration_from_previous_stop_seconds\": 9121,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":41.77357,\\\"lng\\\":-72.87228,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-27T23:59:32Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":196205,\\\"time\\\":8821,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388587,\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            }\n        ],\n        \"current_stop\": {\n            \"job_stop_id\": 3909318,\n            \"company_id\": 100,\n            \"job_id\": 2174814,\n            \"location_id\": 388586,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": null,\n            \"status_id\": 5,\n            \"arrival_date\": \"2021-04-28 05:32:35\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-27 21:32:40\",\n            \"date_updated\": \"2021-04-27 21:32:42\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 196205,\n            \"duration_to_next_stop_seconds\": 9121,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 5,\n                \"name\": \"In Front\",\n                \"slug\": \"in-front\",\n                \"order\": 50\n            }\n        },\n        \"next_stop\": {\n            \"job_stop_id\": 3909317,\n            \"company_id\": 100,\n            \"job_id\": 2174814,\n            \"location_id\": 388587,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2021-04-28 05:32:36\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-27 21:32:40\",\n            \"date_updated\": \"2021-04-27 21:32:42\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 196205,\n            \"duration_from_previous_stop_seconds\": 9121,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":41.77357,\\\"lng\\\":-72.87228,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-27T23:59:32Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":196205,\\\"time\\\":8821,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388587,\n                \"address\": \"231 Haynes Rd\",\n                \"address_two\": null,\n                \"city\": \"Avon\",\n                \"state\": \"Connecticut\",\n                \"postal_code\": \"06001\",\n                \"country\": \"US\",\n                \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"latitude\": 41.77357,\n                \"longitude\": -72.87228,\n                \"date_created\": \"2021-04-27 21:32:36\",\n                \"date_updated\": \"2021-04-27 21:32:36\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            }\n        },\n        \"previous_stop\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"e09f7d43-7bc3-4273-bb7c-553ca086a4a4"},{"name":"Get online drivers","id":"32d29d29-26de-4bba-9c73-4bf9708564da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/driver/online","urlObject":{"path":["driver","online"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3937300d-50a2-42a5-8921-d71c97121bb7","name":"Get online drivers","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/driver/online"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5397"},{"key":"ETag","value":"W/\"1515-YTywPCGEyLD1z/1ID2TeGIX6IlM\""},{"key":"Date","value":"Thu, 10 Jun 2021 20:44:50 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"employee\": {\n                \"employee_id\": 186,\n                \"driver_number\": 999,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Driver\",\n                \"username\": \"testdriver@123\",\n                \"email\": \"test@123.com\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"g1bW2sG6Zl\",\n                \"company_id\": 1,\n                \"location_id\": 451,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"9175677732\",\n                \"secondary_phone_country\": \"US\",\n                \"secondary_phone\": null,\n                \"is_driver\": 0,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": \"2017-05-18\",\n                \"base\": {\n                    \"base_id_old\": \"B01534\",\n                    \"company_id\": 1,\n                    \"name\": \"B01534 - Liverydesk Drivers\",\n                    \"is_active\": 1,\n                    \"is_default\": 0,\n                    \"is_deleted\": 0,\n                    \"date_created\": \"2015-04-15 00:00:00\",\n                    \"date_updated\": \"2018-03-06 20:14:07\",\n                    \"base_id\": 1\n                },\n                \"base_id\": 1,\n                \"old_base_id\": \"B01534\",\n                \"base_license_number\": null,\n                \"base_fee\": 1,\n                \"base_fee_frequency\": 1,\n                \"base_fee_last_processed\": \"2021-06-10 00:07:36\",\n                \"enable_recurring_base_fee\": 1,\n                \"base_fee_start_date\": \"0000-00-00 00:00:00\",\n                \"hack_license_number\": \"123\",\n                \"hack_license_expiration\": \"2022-07-22\",\n                \"driver_license_number\": \"123\",\n                \"driver_license_expiration\": \"2022-07-22\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": \"3.7-android-staging-build-147\",\n                \"device_id\": null,\n                \"date_created\": \"2014-07-22 15:00:29\",\n                \"date_updated\": \"2021-06-10 20:41:24\",\n                \"car_type_id\": 25,\n                \"new_car_type_id\": 1,\n                \"car_make\": \"BMW\",\n                \"car_model\": \"M3\",\n                \"car_year\": 2015,\n                \"car_color\": \"White\",\n                \"registration_number\": \"123\",\n                \"registration_expiration\": \"2022-08-08\",\n                \"registration_owner_name\": \"Test Driver\",\n                \"license_plate_number\": \"65464\",\n                \"insurance_policy_number\": \"123\",\n                \"insurance_provider_name\": \"123\",\n                \"insurance_expiration_date\": \"2022-07-22\",\n                \"tlc_number\": \"123\",\n                \"tlc_expiration_date\": \"2022-07-22\",\n                \"tlc_inspection_date\": \"2022-07-22\",\n                \"tlc_inspection_expiration_date\": \"2022-07-22\",\n                \"on_duty\": 1,\n                \"on_duty_date\": \"2021-06-10 20:25:02\",\n                \"phone_verified\": 1,\n                \"phone_verification_code\": 53487,\n                \"phone_verified_date\": null,\n                \"picture\": {\n                    \"size\": 3365,\n                    \"path\": \"tmp/06f0a6250e1f13abf461b79f7a4d6954\",\n                    \"name\": \"JPEG_20210525_185520_3288708075768183550.jpg\",\n                    \"type\": \"image\",\n                    \"extension\": \"jpg\",\n                    \"stored_name_sm\": \"sm-Tx5c63iuI.jpg\",\n                    \"stored_name\": \"Tx5c63iuI.jpg\",\n                    \"original_filename\": \"JPEG_20210525_185520_3288708075768183550.jpg\",\n                    \"remote_path\": \"liverydesk-public-dev/employee/picture\",\n                    \"url_fullsize\": \"https://s3.amazonaws.com/liverydesk-public-dev/employee/picture/Tx5c63iuI.jpg\",\n                    \"url_small\": \"https://s3.amazonaws.com/liverydesk-public-dev/employee/picture/sm-Tx5c63iuI.jpg\"\n                },\n                \"attributes\": {\n                    \"ash_custom_emplpoyee_field\": \"blao\"\n                },\n                \"profile\": \"hi\",\n                \"application_approved_date\": \"2019-11-24 21:36:28\",\n                \"application_approved\": 1,\n                \"number_of_ratings\": 366,\n                \"average_rating\": 3.96,\n                \"company_commission_data\": {\n                    \"commission_percentage\": 11,\n                    \"commission_flat_rate\": 11\n                },\n                \"transaction_balance\": -1527.86,\n                \"suspended_until\": \"2018-03-15 00:21:03\",\n                \"date_unsuspending\": null,\n                \"vehicle_inspection_expiration_date\": \"2022-07-22\",\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 170,\n                \"custom_attributes\": {\n                    \"ash_custom_emplpoyee_field\": \"blao\"\n                },\n                \"parent_employee_id\": null,\n                \"location\": {\n                    \"location_id\": 451,\n                    \"address\": \"12339 Melville Road\",\n                    \"address_two\": null,\n                    \"city\": \"Farmingdale\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11735\",\n                    \"country\": \"US\",\n                    \"long_name\": \"12339 Melville Rd, Farmingdale, NY 11735, USA\",\n                    \"short_name\": \"12339 Melville Rd, Farmingdale, NY 11735, USA\",\n                    \"latitude\": 40.74655,\n                    \"longitude\": -73.43084,\n                    \"date_created\": \"2014-07-22 15:00:29\",\n                    \"date_updated\": \"2019-11-25 18:45:01\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": null,\n                    \"hash\": \"2d58208e03ccfa0d5c88652635f9221c\",\n                    \"company_id\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 170,\n                    \"company_id\": 1,\n                    \"owner_employee_id\": 186,\n                    \"name\": null,\n                    \"type_id\": 25,\n                    \"make\": \"BMW\",\n                    \"model\": \"M3\",\n                    \"year\": 2015,\n                    \"color\": \"White\",\n                    \"registration_number\": \"123\",\n                    \"registration_expiration_date\": \"2022-08-08\",\n                    \"registration_owner_name\": \"Test Driver\",\n                    \"license_plate_number\": \"65464\",\n                    \"insurance_policy_number\": \"123\",\n                    \"insurance_provider_name\": \"123\",\n                    \"insurance_expiration_date\": \"2022-07-22\",\n                    \"inspection_expiration_date\": \"2022-07-22\",\n                    \"tlc_number\": \"123\",\n                    \"tlc_expiration_date\": \"2022-07-22\",\n                    \"tlc_inspection_date\": \"2022-07-22\",\n                    \"tlc_inspection_expiration_date\": \"2022-07-22\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2020-03-30 02:08:38\",\n                    \"date_updated\": \"2021-01-13 20:39:28\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": {\n                        \"ash_custom_veh_field\": \"1233\"\n                    },\n                    \"summary\": \"2015 White BMW M3\",\n                    \"car_type\": {\n                        \"type_id\": 25,\n                        \"old_type_id\": 0,\n                        \"company_id\": 1,\n                        \"name\": \"JunkRat\",\n                        \"order\": 127,\n                        \"icon\": \"towncar.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":5}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2017-04-20 01:24:44\",\n                        \"date_updated\": \"2018-02-22 17:57:32\",\n                        \"date_deleted\": null,\n                        \"side_image\": \"default_towncar.png\",\n                        \"top_image\": null\n                    }\n                },\n                \"car_type\": {\n                    \"type_id\": 25,\n                    \"old_type_id\": 0,\n                    \"company_id\": 1,\n                    \"name\": \"JunkRat\",\n                    \"order\": 127,\n                    \"icon\": \"towncar.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":5}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2017-04-20 01:24:44\",\n                    \"date_updated\": \"2018-02-22 17:57:32\",\n                    \"date_deleted\": null,\n                    \"side_image\": \"default_towncar.png\",\n                    \"top_image\": null\n                },\n                \"primary_phone_international\": \"+1 917 567 7732\",\n                \"primary_phone_national\": \"(917) 567-7732\"\n            },\n            \"location_data\": {\n                \"latitude\": 40.70327,\n                \"longitude\": -73.6673,\n                \"accuracy\": 20,\n                \"speed_meters\": 0,\n                \"date_created\": \"2021-06-10 20:43:59\",\n                \"distance_away_meters\": 7227,\n                \"distance_away_miles\": 4.49\n            },\n            \"job\": {\n                \"job_id\": 565437,\n                \"job_number\": 565440,\n                \"status\": {\n                    \"status_id\": 4,\n                    \"name\": \"In Progress\",\n                    \"slug\": \"in-progress\",\n                    \"order\": 40\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.47.2\",\n        \"items\": 1\n    }\n}"}],"_postman_id":"32d29d29-26de-4bba-9c73-4bf9708564da"}],"id":"03b58e59-4ae7-420f-9a4a-1343f1fd3f0d","description":"<p>Drivers are a type of <code>employee</code></p>\n","_postman_id":"03b58e59-4ae7-420f-9a4a-1343f1fd3f0d"},{"name":"Employee","item":[{"name":"Get an employee","id":"3fe6cdbd-1a31-42f5-96f3-d48ea2dd64d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/employee?id=965","urlObject":{"path":["employee"],"host":["{{host}}"],"query":[{"description":{"content":"<p>optional, will override access token</p>\n","type":"text/plain"},"key":"id","value":"965"}],"variable":[]}},"response":[{"id":"6a05d9f3-0d10-4c99-886c-8c5ee3865299","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/employee?id=965","host":["{{host}}"],"path":["employee"],"query":[{"key":"id","value":"965","description":"optional, will override access token"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4454"},{"key":"ETag","value":"W/\"1166-a4IL7cdjuX8UTFk2e7UEgJaBIPs\""},{"key":"Date","value":"Tue, 27 Apr 2021 21:34:24 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"employee_id\": 965,\n        \"driver_number\": 1,\n        \"first_name\": \"Test\",\n        \"last_name\": \"Company\",\n        \"username\": \"demodriver@test_company\",\n        \"email\": \"testcompany@testcompany.com\",\n        \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n        \"password_hint\": \"pa*****4\",\n        \"hash\": \"rjgtIGdgx\",\n        \"company_id\": 100,\n        \"location_id\": 388582,\n        \"primary_phone_country\": \"US\",\n        \"primary_phone\": \"2222222222\",\n        \"secondary_phone_country\": null,\n        \"secondary_phone\": null,\n        \"is_driver\": 0,\n        \"role_name\": \"driver\",\n        \"is_active\": 1,\n        \"is_deleted\": 0,\n        \"social_security_number\": null,\n        \"date_of_birth\": null,\n        \"base\": {\n            \"base_id_old\": \"\",\n            \"company_id\": 100,\n            \"name\": \"TEST_COMPANY\",\n            \"is_active\": 1,\n            \"is_default\": 1,\n            \"is_deleted\": 0,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"base_id\": 67\n        },\n        \"base_id\": 67,\n        \"old_base_id\": null,\n        \"base_license_number\": null,\n        \"base_fee\": null,\n        \"base_fee_frequency\": null,\n        \"base_fee_last_processed\": null,\n        \"enable_recurring_base_fee\": 0,\n        \"base_fee_start_date\": null,\n        \"hack_license_number\": null,\n        \"hack_license_expiration\": null,\n        \"driver_license_number\": \"Change this\",\n        \"driver_license_expiration\": \"2021-05-27\",\n        \"driver_license_class\": \"D\",\n        \"is_car_owner\": 0,\n        \"dispatch_app_version\": null,\n        \"device_id\": null,\n        \"date_created\": \"2021-04-27 17:53:51\",\n        \"date_updated\": \"2021-04-27 17:53:51\",\n        \"car_type_id\": 255,\n        \"new_car_type_id\": null,\n        \"car_make\": \"Toyota\",\n        \"car_model\": \"Camry\",\n        \"car_year\": 2016,\n        \"car_color\": \"Black\",\n        \"registration_number\": \"Change this\",\n        \"registration_expiration\": \"2021-05-27\",\n        \"registration_owner_name\": \"Demo\",\n        \"license_plate_number\": \"Change this\",\n        \"insurance_policy_number\": \"Change this\",\n        \"insurance_provider_name\": \"Change this\",\n        \"insurance_expiration_date\": \"2021-05-27\",\n        \"tlc_number\": null,\n        \"tlc_expiration_date\": null,\n        \"tlc_inspection_date\": null,\n        \"tlc_inspection_expiration_date\": null,\n        \"on_duty\": 0,\n        \"on_duty_date\": null,\n        \"phone_verified\": null,\n        \"phone_verification_code\": null,\n        \"phone_verified_date\": null,\n        \"picture\": null,\n        \"attributes\": null,\n        \"profile\": null,\n        \"application_approved_date\": null,\n        \"application_approved\": 0,\n        \"number_of_ratings\": 0,\n        \"average_rating\": 0,\n        \"company_commission_data\": {\n            \"commission_flat_rate\": 0,\n            \"commission_percentage\": 0\n        },\n        \"transaction_balance\": 0,\n        \"suspended_until\": null,\n        \"date_unsuspending\": null,\n        \"password_reset_hash\": null,\n        \"password_reset_client_hash\": null,\n        \"password_reset_hash_date\": null,\n        \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n        \"is_suspended\": 0,\n        \"recruiter_entity_id\": null,\n        \"recruiter_entity_type\": null,\n        \"car_vin\": null,\n        \"assigned_to_vehicle_id\": 364,\n        \"parent_employee_id\": null,\n        \"custom_attributes\": null,\n        \"location\": {\n            \"location_id\": 388582,\n            \"address\": \"123 West Ave\",\n            \"address_two\": null,\n            \"city\": \"Brisbane\",\n            \"state\": \"Queensland\",\n            \"postal_code\": \"4178\",\n            \"country\": \"AU\",\n            \"long_name\": \"123 West Ave, Wynnum QLD 4178, Australia\",\n            \"short_name\": \"123 West Ave, Wynnum QLD 4178, Australia\",\n            \"latitude\": -27.4498,\n            \"longitude\": 153.16526,\n            \"date_created\": \"2021-04-27 17:53:49\",\n            \"date_updated\": \"2021-04-27 17:53:49\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"5083b07d66c65bffaa3876fd7c62e790\",\n            \"company_id\": null\n        },\n        \"car_type\": {\n            \"type_id\": 255,\n            \"old_type_id\": null,\n            \"company_id\": 52,\n            \"name\": \"SUV\",\n            \"order\": 30,\n            \"icon\": \"suv.png\",\n            \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n            \"is_active\": 1,\n            \"date_created\": \"2018-08-22 17:36:16\",\n            \"date_updated\": \"2018-08-22 17:36:16\",\n            \"date_deleted\": null\n        },\n        \"assigned_to_vehicle\": {\n            \"vehicle_id\": 364,\n            \"company_id\": 100,\n            \"owner_employee_id\": 965,\n            \"name\": null,\n            \"type_id\": 255,\n            \"make\": \"Toyota\",\n            \"model\": \"Camry\",\n            \"year\": 2016,\n            \"color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration_date\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"inspection_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": 1,\n            \"date_created\": \"2021-04-27 17:53:51\",\n            \"date_updated\": \"2021-04-27 17:53:51\",\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"summary\": \"2016 Black Toyota Camry\",\n            \"car_type\": {\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            }\n        },\n        \"employee_options\": null,\n        \"primary_phone_international\": \"+1 222 222 2222\",\n        \"primary_phone_national\": \"(222) 222-2222\",\n        \"transaction_balace\": 0\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"3fe6cdbd-1a31-42f5-96f3-d48ea2dd64d4"},{"name":"Validate employee account","id":"4b4aec4b-b82f-41f1-ad07-39fcc934cfa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"push_token","value":"push_token","type":"text"},{"key":"platform","value":"android","description":"<p>Either <code>android</code> or <code>ios</code></p>\n","type":"text"}]},"url":"{{host}}/employee/validate","description":"<p>This endpoint does multiple things. It verifies that a driver should be working meaning they're active and valid in the system. It also accepts their push token and other parameters</p>\n","urlObject":{"path":["employee","validate"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"fb5512e5-6452-4d72-81dc-c994f7dd2dad","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"push_token","value":"push_token","type":"text"},{"key":"platform","value":"android","description":"Either `android` or `ios`","type":"text"}]},"url":"{{host}}/employee/validate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"9714"},{"key":"ETag","value":"W/\"25f2-0ZHBJy0LEMrDaoqT4o2ZwXelInw\""},{"key":"Date","value":"Tue, 27 Apr 2021 21:35:13 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"employee\": {\n            \"employee_id\": 965,\n            \"driver_number\": 1,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Company\",\n            \"username\": \"demodriver@test_company\",\n            \"email\": \"testcompany@testcompany.com\",\n            \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n            \"password_hint\": \"pa*****4\",\n            \"hash\": \"rjgtIGdgx\",\n            \"company_id\": 100,\n            \"location_id\": 388582,\n            \"primary_phone_country\": \"US\",\n            \"primary_phone\": \"2222222222\",\n            \"secondary_phone_country\": null,\n            \"secondary_phone\": null,\n            \"is_driver\": 0,\n            \"role_name\": \"driver\",\n            \"is_active\": 1,\n            \"is_deleted\": 0,\n            \"social_security_number\": null,\n            \"date_of_birth\": null,\n            \"base\": {\n                \"base_id_old\": \"\",\n                \"company_id\": 100,\n                \"name\": \"TEST_COMPANY\",\n                \"is_active\": 1,\n                \"is_default\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"base_id\": 67\n            },\n            \"base_id\": 67,\n            \"old_base_id\": null,\n            \"base_license_number\": null,\n            \"base_fee\": null,\n            \"base_fee_frequency\": null,\n            \"base_fee_last_processed\": null,\n            \"enable_recurring_base_fee\": 0,\n            \"base_fee_start_date\": null,\n            \"hack_license_number\": null,\n            \"hack_license_expiration\": null,\n            \"driver_license_number\": \"Change this\",\n            \"driver_license_expiration\": \"2021-05-27\",\n            \"driver_license_class\": \"D\",\n            \"is_car_owner\": 0,\n            \"dispatch_app_version\": null,\n            \"device_id\": null,\n            \"date_created\": \"2021-04-27 17:53:51\",\n            \"date_updated\": \"2021-04-27 17:53:51\",\n            \"car_type_id\": 255,\n            \"new_car_type_id\": null,\n            \"car_make\": \"Toyota\",\n            \"car_model\": \"Camry\",\n            \"car_year\": 2016,\n            \"car_color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"on_duty\": 0,\n            \"on_duty_date\": null,\n            \"phone_verified\": null,\n            \"phone_verification_code\": null,\n            \"phone_verified_date\": null,\n            \"picture\": null,\n            \"attributes\": null,\n            \"profile\": null,\n            \"application_approved_date\": null,\n            \"application_approved\": 0,\n            \"number_of_ratings\": 0,\n            \"average_rating\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            },\n            \"transaction_balance\": 0,\n            \"suspended_until\": null,\n            \"date_unsuspending\": null,\n            \"password_reset_hash\": null,\n            \"password_reset_client_hash\": null,\n            \"password_reset_hash_date\": null,\n            \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n            \"is_suspended\": 0,\n            \"recruiter_entity_id\": null,\n            \"recruiter_entity_type\": null,\n            \"car_vin\": null,\n            \"assigned_to_vehicle_id\": 364,\n            \"parent_employee_id\": null,\n            \"custom_attributes\": null,\n            \"location\": {\n                \"location_id\": 388582,\n                \"address\": \"123 West Ave\",\n                \"address_two\": null,\n                \"city\": \"Brisbane\",\n                \"state\": \"Queensland\",\n                \"postal_code\": \"4178\",\n                \"country\": \"AU\",\n                \"long_name\": \"123 West Ave, Wynnum QLD 4178, Australia\",\n                \"short_name\": \"123 West Ave, Wynnum QLD 4178, Australia\",\n                \"latitude\": -27.4498,\n                \"longitude\": 153.16526,\n                \"date_created\": \"2021-04-27 17:53:49\",\n                \"date_updated\": \"2021-04-27 17:53:49\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"5083b07d66c65bffaa3876fd7c62e790\",\n                \"company_id\": null\n            },\n            \"car_type\": {\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            },\n            \"assigned_to_vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"name\": null,\n                \"type_id\": 255,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"employee_options\": null,\n            \"primary_phone_international\": \"+1 222 222 2222\",\n            \"primary_phone_national\": \"(222) 222-2222\",\n            \"transaction_balace\": 0,\n            \"user_agents\": [\n                {\n                    \"name\": \"PostmanRuntime/7.26.10\",\n                    \"date_created\": \"2021-04-27 21:35:13\"\n                }\n            ]\n        },\n        \"company\": {\n            \"company_id\": 100,\n            \"plan_id\": 0,\n            \"name\": \"Test Company\",\n            \"location_id\": 388585,\n            \"subdomain\": \"test_company\",\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"email\": \"testcompany@testcompany.com\",\n            \"website\": \"\",\n            \"currency\": \"USD\",\n            \"is_active\": 1,\n            \"is_on_trial\": 1,\n            \"trial_end_date\": \"2021-05-27 17:53:49\",\n            \"timezone\": \"America/New_York\",\n            \"date_created\": \"2021-04-27 17:53:49\",\n            \"date_updated\": \"2021-04-27 18:13:23\",\n            \"enable_partnerships\": 0,\n            \"current_job_number\": 4,\n            \"config\": {},\n            \"custom_attributes\": null,\n            \"type\": \"courier\",\n            \"cluster\": \"default\",\n            \"date_format\": \"MM/dd/yyyy @ hh:mm a\",\n            \"language\": \"en\",\n            \"billing_email\": null,\n            \"billing_details\": null,\n            \"state_license_number\": null,\n            \"state_delivery_license_number\": null,\n            \"billing_usage_last_reported_date\": null,\n            \"is_parent\": 0,\n            \"parent_company_id\": null,\n            \"location\": {\n                \"location_id\": 388585,\n                \"address\": \"285 Broadway\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10007\",\n                \"country\": \"US\",\n                \"long_name\": \"285 Broadway, New York, NY 10007, United States\",\n                \"short_name\": \"285 Broadway, New York, NY 10007, United States\",\n                \"latitude\": 40.71451,\n                \"longitude\": -74.00601,\n                \"date_created\": \"2021-04-27 18:13:23\",\n                \"date_updated\": \"2021-04-27 18:13:23\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c9643c6420e337c3dc5dc2c03010822d\",\n                \"company_id\": null\n            },\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"currency_symbol\": \"$\",\n            \"_trial_expired\": false,\n            \"settings\": {\n                \"push_notification_arrived_at_pickup_location\": \"Your delivery is arriving!\",\n                \"enable_batch_actions\": \"1\",\n                \"sms_notification_job_completed\": \"Hope you enjoyed your delivery!\",\n                \"push_notification_job_completed\": \"Hope you enjoyed your delivery!\",\n                \"enable_push_notification_arrived_at_pickup_location\": \"1\",\n                \"enable_push_notification_job_completed\": \"1\",\n                \"enable_sms_notification_job_completed\": \"1\",\n                \"employee_gcm_arn\": \"arn:aws:sns:us-east-1:774247789040:app/GCM/FCMDriverApps\",\n                \"employee_apns_arn\": \"arn:aws:sns:us-east-1:774247789040:app/APNS/com.liverydesk.ios.drive\",\n                \"disable_cancelled_jobs_return_leg\": \"1\",\n                \"enable_driver_application_approved_emails\": \"1\",\n                \"accept_cash\": \"1\",\n                \"expand_job_car_types\": \"1\",\n                \"acceptance_timeout\": \"20\",\n                \"enable_automatic_user_recruitment\": \"0\",\n                \"enable_driver_referral_reward_push\": \"0\",\n                \"enable_customer_invite_sms\": \"0\",\n                \"driver_referral_reward_push_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n                \"expand_job_options\": \"1\",\n                \"enable_reservation_email_admin_notifications\": \"1\",\n                \"enable_acceptance_timer\": \"1\",\n                \"enable_recruiting_referral_rewards\": \"0\",\n                \"show_nearby_drivers\": \"1\",\n                \"enable_driver_signup_emails\": \"1\",\n                \"sms_notification_arrived_at_pickup_location\": \"Your delivery is arriving!\",\n                \"enable_sms_notification_arrived_at_pickup_location\": \"1\",\n                \"expand_job_notes\": \"1\",\n                \"eta_based_notifications\": {\n                    \"dropoff\": {\n                        \"10\": {\n                            \"sms\": {\n                                \"message\": \"Your delivery is 10 minutes away from {in_progress_stop_location}\",\n                                \"enabled\": 1\n                            },\n                            \"push\": {\n                                \"message\": \"Your delivery is 10 minutes away from {in_progress_stop_location}\",\n                                \"enabled\": 1\n                            }\n                        }\n                    }\n                },\n                \"enable_single_stop\": \"1\",\n                \"default_recruiting_reward_percentage\": \"0\",\n                \"default_recruiting_money_responsibility\": \"base\",\n                \"driver_app_show_passenger_contact_info\": \"per-job\",\n                \"autodispatch_job_dispatches_limit\": \"25\",\n                \"default_recruiting_reward_flat_rate\": \"0\",\n                \"enable_stop_details\": \"1\",\n                \"user_referral_reward_sms_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n                \"enable_driver_invite_sms\": \"0\",\n                \"enable_user_referral_reward_sms\": \"0\",\n                \"customer_invite_sms_message\": \"You've been invited to join Test Company. Please click the following link to start\",\n                \"enable_user_referral_reward_push\": \"0\",\n                \"user_referral_reward_push_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n                \"enable_driver_referral_reward_sms\": \"0\",\n                \"job_item_structure\": \"{\\\"ID\\\":0,\\\"qty\\\":0,\\\"name\\\":0,\\\"price\\\":0}\",\n                \"driver_invite_sms_message\": \"You've been invited to join Test Company. Please click the following link to start\",\n                \"driver_referral_reward_sms_message\": \"Hi {first_name}, you've earned {amount} through your referrals\",\n                \"maps_functions_default_clients\": \"{\\\"directions\\\":\\\"here_maps\\\",\\\"distance_matrix\\\":\\\"here_maps\\\",\\\"geocode\\\":\\\"here_maps\\\"}\",\n                \"enable_push_notification_pickup_stop_in_progress\": \"1\",\n                \"enable_sms_notification_job_in_progress\": \"1\",\n                \"sms_notification_pickup_stop_in_progress\": \"Your delivery is on the way! Your driver {driver_first_name} will be there shortly\",\n                \"push_notification_pickup_stop_in_progress\": \"Your delivery is on the way! Your driver {driver_first_name} will be there shortly\",\n                \"availability_requirements\": \"[{\\\"name\\\":\\\"dressed_in_uniform\\\",\\\"display_name\\\":\\\"Your uniform\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"certification_documents\\\",\\\"display_name\\\":\\\"Cannabis Delivery license\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"cash_on_hand\\\",\\\"display_name\\\":\\\"$500 cash for change\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"lockbox_key\\\",\\\"display_name\\\":\\\"Product lockbox key\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"power_bank\\\",\\\"display_name\\\":\\\"Power bank / Spare full battery\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true},{\\\"name\\\":\\\"pen_and_cards\\\",\\\"display_name\\\":\\\"Missed you - forms & pen\\\",\\\"type\\\":\\\"checkbox\\\",\\\"required\\\":true}]\"\n            }\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"4b4aec4b-b82f-41f1-ad07-39fcc934cfa8"},{"name":"Create Driver","id":"26b22828-81c3-410e-b08d-c0fb74f48b13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Test","type":"text"},{"key":"last_name","value":"Driver","type":"text"},{"key":"username","value":"testdr123@mlcabs3","type":"text"},{"key":"password","value":"pass1234","type":"text"},{"key":"primary_phone","value":"9171234567","type":"text"},{"key":"primary_phone_country","value":"US","type":"text"},{"key":"driver_number","value":"0","type":"text"},{"key":"driver_license_number","value":"na","type":"text"},{"key":"driver_license_expiration","value":"2017-01-01","type":"text"},{"key":"driver_license_class","value":"na","type":"text"},{"key":"car_type_id","value":"1","type":"text"},{"key":"car_color","value":"na","type":"text"},{"key":"car_year","value":"2016","type":"text"},{"key":"car_make","value":"na","type":"text"},{"key":"car_model","value":"na","type":"text"},{"key":"car_vin","value":"","description":"<p>Optional VIN number of the vehicle</p>\n","type":"text"},{"key":"registration_owner_name","value":"na","type":"text"},{"key":"license_plate_number","value":"na","type":"text"},{"key":"registration_number","value":"na","type":"text"},{"key":"registration_expiration","value":"2017-01-01","type":"text"},{"key":"insurance_provider_name","value":"na","type":"text"},{"key":"insurance_policy_number","value":"na","type":"text"},{"key":"insurance_expiration_date","value":"2017-01-01","type":"text"},{"key":"picture","type":"file","value":null},{"key":"courier_insurance","value":"","description":"<p>Base64 encoded image</p>\n","type":"text"},{"key":"drivers_license_back","value":"","description":"<p>Base64 encoded image</p>\n","type":"text"},{"key":"drivers_license_front","value":"","description":"<p>Base64 encoded image</p>\n","type":"text"},{"key":"cbt_license","value":"","description":"<p>Base64 encoded image</p>\n","type":"text"},{"key":"religion","value":"Christianity","type":"text"},{"key":"language","value":"English","type":"text"},{"key":"employee_address[address]","value":"104-16 132nd Street, Jamaica NY","description":"<p>Optionally send a full location object with latitude/longitude etc. so the endpoint will skip a geo lookup</p>\n","type":"text"}]},"url":"{{host}}/employee","description":"<p>When sending the address, this endpoint accepts it in two ways. It expects <code>employee_address</code> with either a full location object, or just an address string. If you're sending just an address string like <code>1234 Some Street, NY</code>, send it as <code>employee_address[address]</code>.</p>\n","urlObject":{"path":["employee"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"08b72bb2-96c1-42b7-a8c9-08e3d2e9cf73","name":"Create Driver","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Test","type":"text"},{"key":"last_name","value":"Driver","type":"text"},{"key":"username","value":"testdr123@mlcabs3","type":"text"},{"key":"password","value":"pass1234","type":"text"},{"key":"primary_phone","value":"9171234567","type":"text"},{"key":"primary_phone_country","value":"US","type":"text"},{"key":"driver_number","value":"0","type":"text"},{"key":"driver_license_number","value":"na","type":"text"},{"key":"driver_license_expiration","value":"2017-01-01","type":"text"},{"key":"driver_license_class","value":"na","type":"text"},{"key":"car_type_id","value":"1","type":"text"},{"key":"car_color","value":"na","type":"text"},{"key":"car_year","value":"2016","type":"text"},{"key":"car_make","value":"na","type":"text"},{"key":"car_model","value":"na","type":"text"},{"key":"registration_owner_name","value":"na","type":"text"},{"key":"license_plate_number","value":"na","type":"text"},{"key":"registration_number","value":"na","type":"text"},{"key":"registration_expiration","value":"2017-01-01","type":"text"},{"key":"insurance_provider_name","value":"na","type":"text"},{"key":"insurance_policy_number","value":"na","type":"text"},{"key":"insurance_expiration_date","value":"2017-01-01","type":"text"},{"key":"picture","type":"file","src":[]},{"key":"courier_insurance","value":"","description":"Base64 encoded image","type":"text"},{"key":"drivers_license_back","value":"","description":"Base64 encoded image","type":"text"},{"key":"drivers_license_front","value":"","description":"Base64 encoded image","type":"text"},{"key":"cbt_license","value":"","description":"Base64 encoded image","type":"text"},{"key":"religion","value":"Christianity","type":"text"},{"key":"language","value":"English","type":"text"},{"key":"employee_address[address]","value":"104-16 132nd Street, Jamaica NY","description":"Optionally send a full location object with latitude/longitude etc. so the endpoint will skip a geo lookup","type":"text"}]},"url":"{{host}}/employee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3720"},{"key":"ETag","value":"W/\"e88-hvkeBNrZCqKVMMivbdDDqN3hpf0\""},{"key":"Date","value":"Wed, 14 Aug 2019 13:40:12 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"employee_id\": 899,\n        \"driver_number\": 7820,\n        \"first_name\": \"Test\",\n        \"last_name\": \"Driver\",\n        \"username\": \"testdr123@mlcabs\",\n        \"email\": \"\",\n        \"password\": \"$2a$08$lDMJRkw5uVeUeg05dOPmCOTd4s6Zz0a1J7n.KpS71/vtCDAnYUcIq\",\n        \"password_hint\": \"pa*****4\",\n        \"hash\": \"S1VHJ9bVr\",\n        \"company_id\": 1,\n        \"location_id\": 386751,\n        \"primary_phone_country\": \"US\",\n        \"primary_phone\": \"9171234567\",\n        \"secondary_phone_country\": null,\n        \"secondary_phone\": null,\n        \"is_driver\": 0,\n        \"role_name\": \"driver\",\n        \"is_active\": 0,\n        \"is_deleted\": 0,\n        \"social_security_number\": null,\n        \"date_of_birth\": null,\n        \"base\": {\n            \"base_id_old\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"is_active\": null,\n            \"is_default\": null,\n            \"is_deleted\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"base_id\": null\n        },\n        \"base_id\": 0,\n        \"old_base_id\": null,\n        \"base_license_number\": null,\n        \"base_fee\": null,\n        \"base_fee_frequency\": null,\n        \"base_fee_last_processed\": null,\n        \"enable_recurring_base_fee\": 0,\n        \"base_fee_start_date\": null,\n        \"hack_license_number\": null,\n        \"hack_license_expiration\": null,\n        \"driver_license_number\": \"na\",\n        \"driver_license_expiration\": \"2017-01-01\",\n        \"driver_license_class\": \"NA\",\n        \"is_car_owner\": 0,\n        \"dispatch_app_version\": null,\n        \"device_id\": null,\n        \"date_created\": \"2019-08-14 13:40:11\",\n        \"date_updated\": \"2019-08-14 13:40:11\",\n        \"car_type_id\": 1,\n        \"new_car_type_id\": null,\n        \"car_make\": \"na\",\n        \"car_model\": \"na\",\n        \"car_year\": 2016,\n        \"car_color\": \"na\",\n        \"registration_number\": \"na\",\n        \"registration_expiration\": \"2017-01-01\",\n        \"registration_owner_name\": \"na\",\n        \"license_plate_number\": \"na\",\n        \"insurance_policy_number\": \"na\",\n        \"insurance_provider_name\": \"na\",\n        \"insurance_expiration_date\": \"2017-01-01\",\n        \"tlc_number\": null,\n        \"tlc_expiration_date\": null,\n        \"tlc_inspection_date\": null,\n        \"tlc_inspection_expiration_date\": null,\n        \"on_duty\": 0,\n        \"on_duty_date\": null,\n        \"phone_verified\": null,\n        \"phone_verification_code\": null,\n        \"phone_verified_date\": null,\n        \"picture\": null,\n        \"attributes\": {\n            \"courier_insurance\": \"\",\n            \"drivers_license_front\": \"\",\n            \"drivers_license_back\": \"\",\n            \"cbt_license\": \"\",\n            \"language\": \"English\",\n            \"religion\": \"Christianity\"\n        },\n        \"profile\": null,\n        \"application_approved_date\": null,\n        \"application_approved\": 0,\n        \"number_of_ratings\": 0,\n        \"average_rating\": 0,\n        \"company_commission_data\": {\n            \"commission_flat_rate\": 0,\n            \"commission_percentage\": 0\n        },\n        \"transaction_balance\": 0,\n        \"suspended_until\": null,\n        \"date_unsuspending\": null,\n        \"password_reset_hash\": null,\n        \"password_reset_client_hash\": null,\n        \"password_reset_hash_date\": null,\n        \"vehicle_inspection_expiration_date\": null,\n        \"is_suspended\": 0,\n        \"user_agents\": null,\n        \"recruiter_entity_id\": null,\n        \"recruiter_entity_type\": null,\n        \"location\": {\n            \"location_id\": 386751,\n            \"address\": \"104-16 132nd Street\",\n            \"address_two\": null,\n            \"city\": \"Queens\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11419\",\n            \"country\": \"US\",\n            \"long_name\": \"104-16 132nd St, Jamaica, NY 11419, USA\",\n            \"short_name\": \"104-16 132nd St, Jamaica, NY 11419, USA\",\n            \"latitude\": 40.68999,\n            \"longitude\": -73.814,\n            \"date_created\": \"2017-10-30 16:09:19\",\n            \"date_updated\": \"2017-11-30 01:13:28\",\n            \"place_id\": null,\n            \"apartment_number\": null\n        },\n        \"car_types\": {\n            \"type_id\": 1,\n            \"old_type_id\": 1,\n            \"company_id\": 1,\n            \"name\": \"Sedan\",\n            \"order\": 1,\n            \"icon\": \"sedan.png\",\n            \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":4}}\",\n            \"is_active\": 1,\n            \"date_created\": \"0000-00-00 00:00:00\",\n            \"date_updated\": \"2018-07-31 19:33:13\",\n            \"date_deleted\": null\n        },\n        \"employee_options\": null,\n        \"transactions\": null,\n        \"employee_transactions\": {\n            \"balance\": null\n        },\n        \"job_transactions\": {\n            \"balance\": null\n        },\n        \"car_type\": {\n            \"type_id\": 1,\n            \"old_type_id\": 1,\n            \"company_id\": 1,\n            \"name\": \"Sedan\",\n            \"order\": 1,\n            \"icon\": \"sedan.png\",\n            \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":4}}\",\n            \"is_active\": 1,\n            \"date_created\": \"0000-00-00 00:00:00\",\n            \"date_updated\": \"2018-07-31 19:33:13\",\n            \"date_deleted\": null\n        },\n        \"courier_insurance\": \"\",\n        \"drivers_license_front\": \"\",\n        \"drivers_license_back\": \"\",\n        \"cbt_license\": \"\",\n        \"language\": \"English\",\n        \"religion\": \"Christianity\",\n        \"primary_phone_international\": \"+1 917 123 4567\",\n        \"primary_phone_national\": \"(917) 123-4567\",\n        \"transaction_balace\": 0\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\"\n    }\n}"}],"_postman_id":"26b22828-81c3-410e-b08d-c0fb74f48b13"},{"name":"Update Driver","id":"d760dea2-1ecb-42d4-a0ed-0cf85faea20e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Test","type":"text"},{"key":"last_name","value":"Driver","type":"text"},{"key":"username","value":"testdr123@mlcabs","type":"text","disabled":true},{"key":"password","value":"pass1234","type":"text"},{"key":"primary_phone","value":"9171234567","type":"text"},{"key":"primary_phone_country","value":"US","type":"text"},{"key":"driver_number","value":"123","type":"text"},{"key":"driver_license_number","value":"123","type":"text"},{"key":"driver_license_expiration","value":"2019-01-01","type":"text"},{"key":"driver_license_class","value":"d","type":"text"},{"key":"car_type_id","value":"1","type":"text"},{"key":"car_color","value":"red","type":"text"},{"key":"car_year","value":"2016","type":"text"},{"key":"car_make","value":"asdf","type":"text"},{"key":"car_model","value":"asdf2","type":"text"},{"key":"registration_owner_name","value":"asdfasfd","type":"text"},{"key":"license_plate_number","value":"asdf","type":"text"},{"key":"registration_number","value":"asdf","type":"text"},{"key":"registration_expiration","value":"2019-01-01","type":"text"},{"key":"insurance_provider_name","value":"asdfasdf","type":"text"},{"key":"insurance_policy_number","value":"sdfasdfasdf","type":"text"},{"key":"insurance_expiration_date","value":"2019-01-01","type":"text"},{"key":"picture","type":"file","value":null,"disabled":true},{"key":"email","value":"testemail@email.com","type":"text"},{"key":"profile","value":"I'm the best","type":"text"},{"key":"courier_insurance","value":"","description":"<p>Base64 encoded image</p>\n","type":"text"},{"key":"vehicle_engine_size","value":"123","type":"text"}]},"url":"{{host}}/employee","urlObject":{"path":["employee"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"088bf745-f948-4711-ab94-fa907b80f25a","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Test","type":"text"},{"key":"last_name","value":"Driver","type":"text"},{"key":"username","value":"testdr123@mlcabs","type":"text","disabled":true},{"key":"password","value":"pass1234","type":"text"},{"key":"primary_phone","value":"9171234567","type":"text"},{"key":"primary_phone_country","value":"US","type":"text"},{"key":"driver_number","value":"123","type":"text"},{"key":"driver_license_number","value":"123","type":"text"},{"key":"driver_license_expiration","value":"2019-01-01","type":"text"},{"key":"driver_license_class","value":"d","type":"text"},{"key":"car_type_id","value":"1","type":"text"},{"key":"car_color","value":"red","type":"text"},{"key":"car_year","value":"2016","type":"text"},{"key":"car_make","value":"asdf","type":"text"},{"key":"car_model","value":"asdf2","type":"text"},{"key":"registration_owner_name","value":"asdfasfd","type":"text"},{"key":"license_plate_number","value":"asdf","type":"text"},{"key":"registration_number","value":"asdf","type":"text"},{"key":"registration_expiration","value":"2017-01-01","type":"text"},{"key":"insurance_provider_name","value":"asdfasdf","type":"text"},{"key":"insurance_policy_number","value":"sdfasdfasdf","type":"text"},{"key":"insurance_expiration_date","value":"2019-01-01","type":"text"},{"key":"picture","type":"file","src":[]},{"key":"email","value":"testemail@email.com","type":"text"},{"key":"profile","value":"I'm the best","type":"text"},{"key":"courier_insurance","value":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABAAAAAJYCAYAAAD8EJQjAABfyElEQVR42uzdh59c5X0/+t+/ceP7uvcGMMYGO65x/znYsR232MZ2HKe5xfklcWInccFxixuOHcc9NkWAKEINVYQwkhAIkEQvAiEkVChCIFABtDtbZnb2ued7Zs/s7O7s7myRtDv7fr9eHyPNTlnNPDOe53POec7/+r+++kASERERERERkfbO//IkiIiIiIiIiCgAREREREREREQBILMpv3duLS8aSPF3z42IiIiIiIgCQNpk4n/2zx5J3732qbTmgefT7md78sSf47L4mSJARERERGT0PPBkVzrjPx46IRvqhseGO5kzBYCBPvXn7yvLn0wHXyiPmigDvrzsSc+1iIiIiMgoqfan9MTR3vTOX+ye1u/qMcH/l6X70/UPvZBe6OpLw8Vl8bO4zotmaRHwonOPT4zLGV4A/N4k2qtvrD6Q/vS3e6Zt4E3ksSczqGbSGzJ+l8V3HR0y2X/6+ZEpfhbXVQKIiIiIiDQvAIoJ+WeueGzK35t/b2DiH6VCf3bfcf/PlfrS5j2dQxKXxc/6BwqIuM1EHrtxDtYsY92m8e+v/P6OdPq3t4+4zXjzu5f8x0P1YqO/f3pSvA4nY87a6px2+KHXrbwmbVcAxGBdv+NY+ufFT7R8myefK6cfrzs45cc+7Zvb00NPdaf/uenZlq7/nl/tTnc+Wkpv++muCT3OojuP5v/Gxlyz7fn04m9tT9sPdKffbHr2hL24zbb8X33Pc/nv0JjGn8dtfMCLiIiIyFxPbBxr3EAWk/DYEv/8wGT2P9Y8Nenv9XEowda9nfn9xP3G4/zxLx4ZdWIYP4vrFCVE3LbVwxE+Pm/fiPlJkU9e9tiI63/o/L35z/7+qifqk9Wl9xxNDz/dne85/J3s3914/S8s2Z8uvOXQmAVA2JL9zv+9/uC0ZMvAczfdE/8oOL51zVNpXfY6f+/apyb088bEXiILs3nh/fu78sQc8bU/fLj+839Y+MSI1+KSzYfbrwC4adex9Ojh3rTh4WMtNU3TWQBEfnvzofS5Kx9v6bHf++s96eCxSnrLT3a13G5F7n2ilG7f15l+fsMz9cTvH7crHv9EFABxXH+z3f1j4A0/vmj44QBxWx/6IiIiIjLXC4DY2rzk7loJEJPvn254Jp/cxVb5UPxsopP/2DAY9x3rChQT//heHnsWxGM0Ji57UUMRELeJ28Z9tFICvOuXu9PPsjlJY2JyGnOdT18+tAB4ybcfyjeCxs++OzDBjcePOcJZ392R/urSR9NjR3rTmdmfi/nR3Y+V0r9evX/M3yH8d/ZvaWWv6Vb22o77CtO55Tw2VscG40ee6Un7j5bTZbcdntDPG3+XW3d3pBX3PZe+vupAPheMOfDq+58f8vvvPNg95DX52ooD7VUAvP3ntQlpNEZPPV8esWX9//v6g3kD9flFT+RvquLJKwqAl33nofSXlzya/s+Cx/M/x8/e9F+70msampSXZpfH/cZ9FZfFdYq25a3ZZD52XSl+FteNQR73F4P5/1w1eN9v/PHOfOC/ZOBNNdrv16wAiK3szX4eZcIfNDz+//7vXXmLFHsn/Mmvdqf/d+D3fsX3duSPFW+2s767Y1LPd7xhmxUA8bPhW/2H57tjtFkiIiIiInOxBOifpgIgtiD3D2z1LwqBuN/YpX20Xd7jZ3GdYsJf/F5xX5P9d93zeGnEBPbizYfzvQsezyb5xZzgvOueTrc80pH/+ZRvbM/nSB/4zZ76pDju5//59wcnVADE7d7wo50jJvDx3Ma/dbzDHIoCoChJpuO1jsl67A0d87MoV4ZP8Mf6eczjYi+JmE8W87zG215+25G091BP/e8X3HIo3TzwnLbtGgCxJTzaofjzjqe6h7xQrzrv4bxp2nWwJ/9vPDl/O7ClPgqAG3cey2/z4IGudCD7+13Z/cTEfe2DL+SD8f/+Wm3A/XLjM/kx7TFxLgZotC3FYIvmKia/jXsXLL/3uRH3HRPyuO36HS+M+/s1KwCWZfdZ/E6NiZYnHr9YWyDeWBfdeijteLo7fyO9/WePpM9mv3s8zt3ZGyl+p/jd3vc/eyb8wXLtA8+PWgDE7krxvEWD1ew6cVsf+CIiIiIitUN8i+POGw8BiMn/ZBeiiwlu/De26MdksjimPSbmsVX+IxfszRN/jsuKY+jjunGbxvuYaGJDZ8yDhu/CHvOQ2Lofk/uYQxUFwL+vPJDPkeLPMWlv3Es6dsWPNdvGe8zhBUD8G+LfFLePf0dsdH3JwJ4RhZgnjVcAFKb7NW9WAIz189f/qPacjnYoRGz9byxcrrz9SD6XbesCICa0v7qxNvmOZinKgGJSe+6KJ/MnrNjaHQ1SseU9Ll+97fn6lv7YNSImqR+7aF/6ZjbY4uevPq/2s027OvLJ+fk3H6oP4rhu8SZpVgA03ncM7hjQH7tw35Dffazfr1kBcNu+znxQFom9EOJnMbFvXAMgFvGIQR97NcSuObF3QrFOQVwnHifKj8kszrcn+7c2m9wPP57oJ+sPNj0rgA97EREREZGhewIUJrPlf3j+8D935mVC3O912WQw5he/N8opAONncZ24btwmbjvZx425Unzff+l3Buczscd0bHj8wXVP539vLABe958P53OLmKPERPaGgcO5Y2t3bLA89ZvbR10gcLQCoFgboDicIcTcaLh4npsd5jDTCoDIK3/wcNPrxrw1NjR/f+3T9ctij/E4lCA2Lsfccf7Ww1N6TWdcAfAXlzyaTyyLLdl/fvG+fKIdC1LEzz9x8aP5lvtLs3/4O34+9Jz0w9cA+PD5e/P7+tRlj+UT9zj+Io45efn3duRb1GMw3LqntjtFtEYxwS5u26wAGHHf2e81fDGMsX6/ZgVAbOnfmE3ci8Tu/aMVAP81sD5A4/MUb6YoISLROMbW+ukqAGJXkyJfWlZb8C8/zqfhOnsUACIiIiIix7UAKO63OBQgtq7H/TaeCjD+HJfFz4ZffzKJDZrxXb/YYFrs+r/yvufyvZ+LjYSNBUAk1keLeUxsPIzDleM6sb5bTGrHWiBwrAKgKAGKYqNR7IlQnPkgJtuNZcVMLQCaJYqVbU925c9t42ESscf6v2Vz2H9a9EReusRG4BN1SMAJKQCuuP1IPlGP1fCLxDoAcSxEcZ14AmLXkphox8+LBmT4JP2Dv92b3zZ2h4mBF7vhxCQ5nrw4XiXWGoiGJY61j4ltrBLZagHwoVEKgLF+v6keAhBvouLvX1yyP7//ON1HLBxRJPaYeNE0HQIwvAxotiaAQwBERERERI7fIQDDU+wSX0z6YyNmpPGyYq/mqSSO5485UOMx6l9d/mQ+f4r5TsyDIjFPid3ZYwNps/v5m/mP5nOb2HBZLBD418MWCGylACgSG24LsZG0OCQgDg8onofGf/9sKACitIj5VsxJX3Xew2NeNzbMxjz03b/cPfsLgNgVJAZF7C7yo+sP1hOTzLg8dhkZvrdANEixtX3USfrAHgBRAMTx7LHrSVw/Bk5cFpPwaKxiMh2FwHQUAKP9fs0KgNEWARxvD4A/m7cv/7cVi2pMJdG+NZvwR8MWz1c0f9++pnbqkt9tf2HI9UZr7kRERERE5uKW/+lcBLBZYrId919svGxcHC8ui5+Ndaq9VhJboGNrdMxVGi+fl82hYp7SmJgTxF4Aa5psGIzfK06DF/OYsRYInEgBUGwMjee1WdERG19jwcPiMOyiAChOCzgTCoDG1yxOAR9zrDgMvjgcfPh1G/8ep1yM5+5DoxQus6oAiN3zYyI+vM0odrePVide5Fg44UUDx7dEy1PsHTBeARCDIfYuiMl9HEsfl8VtY2G92JLe+JiTLQDG+v2mswCIsiSOg4k3WtESRZs2mULgj376SP7vbZzYx2kIX9Rw/P+LBgqU4cf/x2194IuIiIiIyf/0nwZwtHxqYA4S91+sbh9/bvzZVBJb+PP1zi7aN+51hx8C0JjYaBnHr8c8JdZnu2tgbbfiLGqNp1EfXgAMX49ssikKgOP12k+0AGg8C0D8OfYYj+coFo6PeW+RmFPGnC/WmIs5V1w3DhePEuX+/V31s8LN6gIgJrOxsEGzXeJjIcB4cmLlyJjExwJ+sdtINCXFlvvxDgGIy6KBit1UilP4xeEAMfh+MqwNmmwBMNbvN52HAETiVIf3ZS9+lCbxePE7Nt5mIvly7EoybC+AeINGeRGJPw//+ZcH1gUQEREREZnru/5HCVB8D69U+4ccAhDnbp+uQwAat3QPXwNguhaHi3XSYtH0Vq47VgEQ87df31SbU8UCgTFnKRYIjPXPRlsDIDaiNi6UPpXEfc2kAqDxLADxesWcslli7hmHBsR8L78s5mDZf2PD9Z/+ds8JGdf/a6a8wWIxiZiAv+dXu8c9j+Rc+P3ilIDnXLB33ONFWvngijJhvPUA4jpxXR/2IiIiIiIjU+0fnJSPd5766djzIDKVBf9OVIYvENjsOrHHRDx/05m4z5n0PIx2FoDR8taf7EofvXBv00ME5kQBIMcvsahE7P3QrAiIy+JnX7LlX0RERERkzAIgJv/FbvnH+/CD2TD5l9kXBcAcSRxjEov7xSEZcTxKJP4clznmX0RERERk7MRaXc3OSS+iABARERERERERBYCIiIiIiIiIKABEREREREREZLoLgOLUFS86V0RERE5UfAkRERGRE14AJAAAYE7oq6b0+7/tEJE5GgUAAAAoAEREAQAAALSLsgJARAEAAAAoAEREAQAAACgAREQBAAAAzAbWABBRAAAAAAoAEVEAAAAA7cAhACIKAAAAQAEgIgoAAACgHTgEQEQBAAAAKABERAEAAAC0A4cAiCgAAAAABYCIKAAAAIB24BAAEQUAAACgABARBQAAANAOHAIgogAAAAAUACKiAAAAABQAIqIAAAAAZgVrAIgoAAAAAAWAiCgAAACAduAQABEFAAAAoAAQEQUAAADQDhwCIKIAAAAAFAAiogAAAADagUMARBQAJ01/f/+0BAAAUACIyAwuAL7yla9MOV/96ld9kgMAgAJARBQAAABAsAaAiAIAAABQAIiIAgAAAGgHDgEQUQCcNBYBBAAABYCIWAPAGgAAADCNHAIgogBQAAAAgAJARBQAAABAO3AIgIgCAAAAUACIiALg+LEIIAAAKABExBoA1gAAAIBpZA0AEQXASROT96nm3HPP9UkOAAAtsAeAiAIAAABQAIiIAgAAAFAAiIgCAAAAmBWsASCiAAAAABQAIqIAAAAA2oFDAEQUAAAAgAJARBQAAABAO3AIgIgCAAAAUACIiAIAAABoBw4BEFEAAAAACgARUQAAAAAKABFRAAAAALOCNQBEFAAAAMAcYA8AEQUAAACgABARBQAAAKAAEBEFAAAAMCtYA0BEAQAAACgAREQBAAAAtAOHAIgoAAAAAAWAiCgAAAAABYCIKAAAAIBZwRoAIgoAAABgDrAHgIgCAAAAUACIiAIAAABQAIiIAgAAAJgVrAEgogAAAAAUACKiAAAAABQAIqIAAAAAZgVrAIgoAAAAgDnAHgAiCgAAAEABICIKAAAAQAEgIgoAAABAASAiCgAAAGBmsAigiAIAAACYA+wBIKIAAAAAFAAiogAAAAAUACKiAAAAAGYFawCIKAAAAIA5wB4AIgoAAABAASAiCgAAAEABICIKAAAAQAEgIgoAAABgZrAIoIgCAAAAmAPsASCiAAAAABQAczKnnd+R7nqqL+17rto0e49W00/v6D3pv+cpWT6yoitdv7eSnuroT6VyfzrS3Z/uPNCXvryxx2spCgAAAEABMF4BcLCzf9TnrD/70eUPlE/u5D/7HT+/rjt1V0b/HefdX/Z6igIAAACosQbAyJx+wWABEFvWf3xb75D8aGtv+qvVXSf1d3xx9jvuPlLNf8fevpR+dVdv+ptrutK3bu5JBztqv3tPJaU/vbrkNRUFAAAAYA+AsfYAiGn0zmySPd5u+H+ZTbyX7CinLfv70rp9lfSLbDL+ios769eJP1/9cDktzfIP13en39zdmzY/0Zf/ubjOH17WmX6dXX7jY5W0Obufyx4op7OvGn3yftoFHXl5E7/jnU/3Ddkz4Pube1I1+0El+3mUFW+8fPDxv7C+u369f1rXnV8ev/vbFpQGf8/s75+7rjt9c1NP2pj9Prdmv0/8m6IY+dDyUlq2s5L/W5c+XEnvbygYpnr7qT6fsUfE/Ox5i59ddN/g3g+nZv/W8+/tzS+/4kF7RSgAAABAASATLABiYhlb3vuaHC3w6PPVfFId13t9NrkvPDWwdT4m6Odt6c0nvO9fWkpPvFAdcR+Hu/rTn6/qGvV3PDBwXx29/emL67tHLSj+ZHEpv14cFnDJtnL9d593f29tDGSXn7Oia8jv+eSxof+o+Numx/vyx2oUaw689cqR/87J3H6qz2eUHTc9VjsmopL9/R0La9d/65Wd+TiPa0YZYYwrAAAAQAEgI9YAeDqbYP73Hb1D8u2be+oTy56+2sTygWer6V82dKfLHizXJ9vFOgGNE9YQW+4fzyb8X7upp77gYIhd+WPr+OXZfbzQ01+/39HKh//c2pP6GybYOw9X0/n39NYnvlMpACrZ77I8+11ii3pneXBGvudoNV1wb2/aur+vPvH+zT29I/6dk7n9VJ/Pf9/Uk6e435/c3pv/O8/bMnjZd26xOKICAAAA5ihrAIy9BsBwcenjL/TnE+vYIl2sCfCR5V312z4fk/fsijc/XtvaHLvgF7fdcaiaXje/s74b/oeXl/LLY3K6YHu5XkDElvB8Ip29Pn+ypDRqCfCDbHJ7tHvo7xqT6KuzyXfsKh+/53uWlOoT4Iu3DT5GUQDEY0QBUPyecb2Vuyr1Qw3W7K7Urxd7K8Tlr7m0tlU9rrtq4LpTuf10PJ+RV17SWb9+bO2PtRI2PV57/Lj8VZd0GuMKAAAAmJvsATD2HgCxyv6uI9UhufmJwd3Iz8om2bElPiabsQU+tkQXu5tvebJvyBbrmJTGse2Nx+t/+5aewclsdvut2W0iDx2q1ifT/zzK7v1FXp1Npv8rmzhve6Yvv35xf7cf6JvUHgCNv2dcb+GOcv16b7qisz6xj9MOxuPc8Ghl1H/nRG4/1eezeLzf7a1N+I/19qfXZs/Ncz0jH0cUAAAAoACQltcAiC3sxUQ9JrcPZxPWO7JJd29faxPWmKzGbupjiQn9VzaO3G39zHmd6bXzaznjwsHd/T+STeRj4lwvDzZ0z5oCYKrPZ1GqfDH7Nxc/v2J7uf5cfPVGu/8rAAAAQAEgEywAYqL5zZsHjy3/z6299Yntoa7+lvcA+OqN3fX7+PVdvemdi0oj0rgCfjGpPm/r4GP/cOCxi/v8RsPvVdxn8fiXztACYDqez8bX79nS4B4cIRYbjNLE+FYAAACAAkAmVADExDYWBCwmrF/e2JNvgf/M2q76QnatTFjjZ8XK+AeO9ac/G1j1P04BGBPjLzTZ/T8e5wNLS/kx9SFWyC/OFhCnE9w4sBJ+/F7f2NSTzrho8JSBdzzVl+8xEMfR33ewb8YUANP1fBaPuWJXpT7G43rX7rb7vwIAAADmOIsAjr4IYEw6Yzf00fYA+PjKrvz5CzFJ3R/Hqzccg3/fweqIxfEWP1QeUTb84s7BwwDidrFYXXHce0zuYyG7ZiXF/G3lIa9lV6VW6BT3Eyvux94Dcft7Byb7ISbejafaa7YIYPF7xuMsGpjAx7/1jQMT+NOLCXx23fX7KqP+O1u9/XQ9n8Vr87nruoaUXJ9f121sKwAAAGBuswfA5NcAiInmd28dXIW/NkntyxfjSwMT+djaPt4W67if72/pSQc6BmflcR77O5/qy4/pH+vxv3VLT3ok+x0bzwMQp91b9UglnT1wOsDYkv6xbHK997lq/TrPlGrXycfADFkDYLqez+I13H+s9u89mP1bjWsFAAAAKAAUANOyx8CHl3eNerq+VlOcsi9254+t3BO5bVw/bveuxaUx7z/WA4hSodleBe30fEYB8MQL1bwkWLbT7v8KAAAAQAEgbZXYi+BLG7vT6t2D6yB88touz40CAAAAsAaAtNveGMXiiLH1f9PjfZ4XBQAAABDsASDttn7DA89W8/UOYtf/V1/q1H8KAAAAQAEgIgoAAABQAIiIAgAAAGgb1gAQUQAAAAAKABFRAAAAAO3AIQAiCgAAAEABICIKAAAAQAEgIgoAAABgVrAGgIgCAAAAmAPsASCiAAAAABQAIqIAAAAAFAAiogAAAABmBWsAiCgAAAAABYCIKAAAAIB24BAAEQUAAACgABARBQAAAKAAEBEFAAAAMCtYA0BEAQAAAMwB9gAQUQAAAAAKABFRAAAAAAoAEVEAAAAAs4I1AEQUAAAAwBxgDwARBQAAAKAAEBEFAAAAoAAQEQUAAAAwK1gDQEQBAAAAKABERAEAAAC0A4cAiCgAAAAABYCIKAAAAAAFgIgoAAAAgFnBGgAiCgAAAGAOsAeAiAIAAABQAIiIAgAAAFAAiIgCAAAAmBWsASCiAAAAABQAIqIAAAAA2oFDAEQUAAAAgAJApK1z6vkd6ce396a9z1UVAAAAQHtzCIDM5Zx2fkf6zT296Wh3vwIAAABQADROli68rzfte67aNHuOVtN3N/eYWMqMzylZ3ruklDY93peO9fan7G2Qth+qpq9v6mlpr4F/u6E7bXy0kv5za+/I+85+/tm1Xenep/tSR3bfHeX+tO2ZavrH67vH/71avO1UHkMBAAAAc9REDgGIic+yneXUn91u65N9af2+ypCsy/IvG7pNMGXG5w2XdaZnSv2pq5LS2j2VtHRHOR3s7E992eD+2k09TQuDP11WSgsfql0vVLP//M/dvSOu96HseqVsQh57FSzYXk6XP1i7TU9fSp+8tmvMUqKV207lMRQAAACgAJhQARATn09NcJIhMpOO+//lXb35OP7ewB4rMal+96LapHrH4WrT2yx9uJwXBrHXwBXby00LgLje6t2V/GefWds9ZMIek/O47Vi/Vyu3ncpjKAAAAEABcFwKgLcvLKX528rp1v196YbHKukX2aTrrHmdQ+4vJlAX3Nebb7WMPQiufrhS//lLL+pIP76tN92UTWhufqIv/Sq7/asu6TSJlSkXAFdn4zi29n9oedeQQ1xuP9CXOntT063zH1vZlV5/WWe++30cAtCsAIj7iMNhHnuhOuLy+w72pSNd/WMeYtPKbafyGAoAAACYwya0BsAFHWl5NnGqZLf51JquMY9jjgn98z39qbPcn0+qdhyq5ocO3P9MNZ1xYe16L87u75Ej1fwY7Njy2t2X0kOHapOa183vTPdnk5k4Nju2yO7Kkh+n/Ww1veJiJYBMbeG/X9/VmxcAP7+rd8gk/12LS+njK7vGLRC+tLFWAPx6WAFwejamY8zf8VTfiPfO9Xsr+fstxnaz+231tlN5DAUAAADMYZPdA+DvftedXptNMhpTbN2PCVYsThYT+/dfXarfttht+usDx1jH9aIAiMsuuq9cLwaK3a1jgvaNgUXZ4rKf31nbbfu39/SayMq0rAFQycbTtbsr6ROrWz+kZcw9ALJJeBRkm57oG/HeWfVIJR/TUTKMVrC1ctupPIYCAAAAFAATKgCa6c8mHat2VepbUj+QTfzft7Q0ZOtqrFoe17v4/nK9ANh1pJoOlobusnzmvI5874H7nqmOmCAd7urP9yIwiZWpngXgIyu68l3m8/Gb5eHD1fSlG7qnXADEBHysyfl7loxeALRy26k8hgIAAAAUABM7C0A2wZj/QDk/Pr/Ij7J89rruIROsP1/dlVbsqqQ7DvSlndnk6rHnq/ltL39gaAFwoKN/yO0+mk3MwhPHqvmCZkVuzhLFQOP1RaZaBPzlNV1pZTZxjsNQYvL80zt6p7YHQP8U9gDob3EPgH57AAAAABN0PNYAiInIz+6oHWO952g1P3Xab+7pTYt21A4BuGygAIg1AKIA2H+sf8jk6nPXdeVbZGOif+/BvhG54dE+k1eZ3iIgG3cfXl5Kh7r603M9/WOuMzHeGgClSsoXvhz+3rlu4Pj8N14x+hoArdx2Ko+hAAAAAAXAtBYAMUGJSVTsUl0c1x8TrDhzwLgFQJxv/epSfr04NtvkVKY7Me5iMcmrHiqPGN8rd1Xy8X3Osq5JFwD7j1XzsT/8Me88UNuDZaz3TSu3ncpjKAAAAGAOOx6nAfyDSzrzXZQbt1BGARDnXB/vEIDi8pjgHO3uT29bUBpyH3GYQZyKzURWpnIWgCeP9aenOodu6Y/L73qqLy/FXn1p56QOAYj3yPpHK6m3L9UXwIy86fLO1FHuT3c+1Tfm+6uV207lMRQAAACgAJjWAiAmUnE6v9iSGmsFfO2mnnxra09fbbHApQ9XxiwAYoL17Vt68sMAYt2A79zak/4um/hfuq2cT3oW7yibyMqkE+P4f+7pzcfXtmeq6fube/LxtvGxSn7Zxsf6Jr0GQOzB8sk1Xfn76tFs7MZZLL5yY3e+x0EcEvPljYNntYizWcTaGMWCfa3ettXrKQAAAIDjXgDEBCWOp95xqFp/nFi9P07jF3sG3PV035gFQDHJion/05399fvoqqR8UcFXXWIPAJl6CTDv/nK+u3zj+LpuT2XcPUzGKgAax+6RrsH7fqGnNv4bH3/dvkoq96X01w2H07Ry24lcTwEAAADUTWQNgMmssH72VaX0Zyu76msBTGZxtg8uy+5jVZeJvxyX9QDWZxPxOJ7+rHnTO75Oz8b8R5Z3pY9m4//MJvcdj/2GyzsndduJXk8BAAAATGgPAJF23BNg/rbyuLv9t3MUAAAAoAAQEQUAAACgABARBQAAADBrlBUAIgoAAABAASAiCgAAAKANOARARAEAAAAoAEREAQAAALQDhwCIKAAAAAAFgIgoAAAAgHbgEAARBQAAADBHmASJKAAAAAAFgIgoAAAAAAWAiCgAAAAABYCIKAAAAAAFgMhsyKnnd6Qf396b9j5XVQAAAAAKAJF2LgD+557e9Hx3vwIAAABo/wLgkm3ltO+56pjZc7SavrSxJ512QUda9UglHejoT2+4vNMkUmZlTsny3iWltOnxvnSstz9Vs/fL9kPV9PVNPaPf5vyO9Nm1Xenep/tSR3abjnJ/2vZMNf3j9d3jP16Lt53KYygAAABAATBuztvak9btrdSz+2g1v/2dT/Wl9fsqea7PLv/s2u50WjZBueqhcnrkSDW9dr4CQGZn3nh5Z3qm1J9K5ZTW7qmkpQ+X08HO/lTpT+ncm3qaTuA/vLyUXb8/HenuTwu2l9MVD9Zu01VJ6ZNrusac/Ldy26k8hgIAAAAUAJPKldmkI3x+ElsdRWbDbv+/vKs3VbPJ/vc299T3CHj3otrke8fhatPbrN5dyW/zmbXd9dt8aFkp9fSlfE+CsR6vldtO5TEUAAAAoACY9gIgJik/2NKTluwoDx5DfXdv+nk2ofroyq60clclbX2yL63K/ht/N+GUmVgAXL2znPqyifaHlg+O0di75fYDfamzd+R7J34Wh8I89kJ1xOX3HexLR7pGX0Og1dtO5TEUAAAAoACYUgHQ7LjjF1/QkW5+oi+Vq6n+9zgc4Gh3f+os9+eHD8R6ATG56sgmUp++1l4EMrMSE+pf39Wbj9EorhrXBXjX4lL6eJPi6vRsnMf4vuOpoVvhY02MODwm3g+vG+WQmFZvO5XHUAAAAIAC4IQVAPH3rw0cOx1bWL+2qSc/nnr7s1WTTpmxawDEuF2zu5I+sWrsvVVicl7pS+mmx0dOzlc/UkmV7H6iPJjKbafyGAoAAABQAByXQwBuziYofQMFQGxN3XWkmp8VYPhW1q37+/KtrO+cwKRF5ESdBeAjK7ryXetDNkzTw4er6Us3NN9jJSbhMZY3PdE34v0QZ8WIn71nSWlKt53KYygAAABAAXDSCoC43vwHyvmCZv+0zmEAMnOLgL+8piutzCbYsQBgTLJ/ekdv00l8ZZzJ+Whb51u97VQeQwEAAAAKgJNaAJx/b22l9S+uVwDIzC8CPrislA519acXevvTKy7uHDGJL1VS2vzkyMn52r21yfmbrugctQBo5bZTeQwFAAAAKABOyBoAUQDsP9Y/YtKzfGc5P275g1c7G4DMnMSYjbUprnqoPGLMxlksYsyes6xrxHH8+49V88MEht/XnQf60vM9/WOuH9DKbafyGAoAAABQAEypABht1/04H3nj/UcBEJOTV1/amW9Jjbz0oo70dEd/OtLdn8640KRTZk5iov3ksf58r5XGLf0x0b7r6b7Ukw3vGMvDJ+EbHq2knkpK7186uBv+m6/oTB2xcv+BvjELh1ZuO5XHUAAAAIAC4IQVACEWVPu3G7rz3P107ToX3Vc26ZQZldil/n/u6c0X/tv2TDV9f3NP+vYtPWnjY5X8so2P9TU9ROCTa7ryQ18efb6avrGpJ33lxu58T4LYNf/LGwfPgPHb7L53Hq7WF+xr9batXk8BAAAAnNQC4HBXf1q3r5JPXkL899o9lXyrpkmnzMQSYN795XzPlUJXJaXrsjH7+suaH2d/Snab79zak450Dd7mhez2P7+zd8j9xvugnL1F/npN14RuO5HrKQAAAIBpKQAmmigADnbWjk+ORcr+YnVXvtuyiabMhvUA1mcT9jju/qx5rY3Z0y/sSB9Z3pU+urIrndnkNnGfb7i8c1K3nej1FAAAAMBJKwBEZlPiLBbzt5XThkf72u7fpgAAAAAFgAJAZA5EAQAAAAqAac+SHeW0dk/FpEtEAQAAALRzASAiCgAAAEABICIKAAAAQAEgIgoAAABAASAiCgAAAEABICIKAAAAUACYBIkoAAAAAAWAiCgAAAAABYCIKAAAAAAFgIgoAAAAAAWAiCgAAACAmVUAnHq+NItJpCgAAACAtioAgNmhr5oUAAAAwOQLABGxBwAAAKAAEBEFAAAAoAAQEQUAAACgABARBQAAAKAAEBEFAAAAoAAQEQUAAACgABARBQAAAGASJKIAAAAAFAAiogCAOWbz5s1p5cqVaeHChenKK6+UWZB4rVavXp2/dsaBcWAcGAfTPQ5AASAiCgBoM0eOHEnLly9PS5YsSVu2bEl79+5N1WrVEzPDxWsUr1W8ZvHaLVu2LH8tjQPjwDgwDqY6DkABMHNySuT82n9N5GQyOTUbP3//u+702PPV9PGVXQoAmOuT/9hytGHDBk/GLLd+/fr8tZzMl37jwDgwDowDUAAMTLjPbz0nYuJy6bZyWrqjnM7b0mMyK5MuAL60sTtVqil9ao0CAOa02EoUXxRpDzFxi623xoFxYBww2XEAc70AuPrhctr3XHXc3PR4X8tb8GMCduokC4Oj3f3577/1yT6TWZnw3iPvX1pKNzxWycdRjKTHX6imefeX0xkXjn/bN1/RmX52Z2+666m+9Lr5nSOKsr9Z05VuP9CXnu/pT53l/rTzcDV999aelkq2Vm47lcdQAEATcZzo4sWLPRFtJl7TiRwDbBwYB8aBcQAKgMHcur+vpfvbfbTa0v1dnE22nuroz3PmvE4FgJywvHNRqT5+GsUlNzxaaXqbl1/cmb51c0/akr0PegfeCn3ZDd50ReeQcuAvVnelUnnkfVezi356R++YxUIrt53KYygAYBSxWFQcL0p7idc0Fm8zDowD44CJjgNQAHSkf1rXnX58W289BztrE5DYAtl4+bk39bS8R0HhLAWAnMDd/pcMjL2YwP8oG7PnLO9KWwcKrrjsU9d2jbjN8l2VEe+d4QXAadn1bnuydj8dvf3p3zf1pE+u6cpLseK98upLm4/1Vm87lcdQAMAoYsXoWDSK9hKvaby2xoFxYBww0XEACoCRKSYcUQQM/9mbr+xMv72nN216vC/fYnrV9nJ679JSfcG+Kx8sp11HBhdSXb6zUj+WP67zl9d05cf3x2037KukX9/dm/7gkk4FgEw5L76gI93+VG0CfaCjv75L/SezSX8xqf/5XUO3op+W3WblI5W0/4X+fKxuHpiAl7Mh/MaGAuDl8zpST19tS/y1uyv18uDr2SS9uO+v3Ni8IGv1tlN5DAUAjCIWiLK6d/uJ1zReW+PAODAOmOg4AAVA6wXAx1Z01fcO6B9IiF2W/+WG7vw6z/UM3X05/nbL/tpE/pd39uaTmOG3j2O0/2hBSQEgUy4ANjxa25rfU4mt/bUxedbFnenT13blW///eFFpxO2KY/2jDCj2XmksAKJE+NjKWokQk/Pf3NNbv/yjK0ZePvyY/lZuG6XaZB9DAQDjfOHHa2scGAfGgXEACoCJFwCxGFmIldVja2ls7e8sDx4uELtM/2BLT7r76cE1BX52R2/6wobu/Gc9AxdvP1RNX8wum//A4KECcV8KAJnqAoCfWduVT95Db/bf6/ZU0sdXdbV8CMHShkMIikMA4n4/fe3gJPxnDcfiv/2qUq3Qyi6/omEMN/5Ordw2xv9kH0MBAL4Uem2NA+PAODAOgGktAIrJSWichHz7lp765T+5vXfUNQDeemWpvpZAbNEsbv/8wB4DW/b3KQBk6iXAwC7zjQsBxmT+d3srI1b1n0gB8Nm1LUzitzcvAFq57YLstpN9DAUA+FLotTUOjAPjwDgAprUAiMl94e+v765fHouSFVY/UhlzEcDYFfs/t/bkZx2IvQli1/++ga21cdozBYBMV954eWe64N7e9HTH4CEr9z9TzQ8TGO02Yx0C8LfXDa4j0Lhq/zsWluqT9sub7QHQ4m2jVJvsYygAwJdCr61xYBwYB8YBMK0FQBx7XIhTlTUed10c1x9bWUcrAOK/set/McHZkf05VjwvTrumAJDpSIyzSDHRP+OijnTN7kp93H11jEX0xioA/nzV4Nb5WLiymJx/4OrByflF9zUvAFq57bzstpN9DAUA+FLotTUOjAPjwDgAprUAaNzVP3axLi7/yPLBQwMWDOye3KwAKFYyD3EYQHH7Q139CgCZluP/z1k+OFGuL6KX5UPLWptAj3YIQOS18zvzvVViN/xlOyv1yf0/r++u3/d3bmleLrR626k8hgIAfCn02hoHxoFxYByAAmDaCoC3LSjVF/HbcbiaT47OzCb3Nz0+uODf315XOzRg0UODBcAHl9VWXf+vhkMIilOZxarsPfYAkGlKbO3v6K2Nnb3PVfMxG5P68+/trU+gv7+5Z1IFwGnZzx58tva+eKbUn96zpJRelj3e5v21ARzj+OyrSvmE/R/Wdadr91TSlwbOjNHqbVu9ngIAfCnExA/jAK8tHNcCIBLHHxdiS2V3ZfCxoggorhdnAmi83j0H+/I9BYrV2WMi80Qc/99wxsCY+CgAZCqJCfyF9w0WTXG2iucbTkt5oKM/vf6yzkkVADGxj1NdVgfuLn5ejP/GLfYxiY+xHZ7r7p/QbVu9ngIAfCnExA/jAK8tTFsB8MiRaj4Jeaqjf8TPYmtqTNBjQhLpLNcmJo2L/cWeAXF8f3GdB56p1g8jONw1eNt7n+5L9x3syx/rhWyidsaFtdvHdeKyxjMDiLSSmIDH8fPPlvqHFAF3ZWPtnOVjnw5wtDUAGguC79zak2+dL5Syqy99uFIfu7H2wPp9lXx8b24Yv63cdiLXUwCAL4VeWxM/jAO8tjAtBcB4iUlObNGP86s3TvyH5+0LS/n1zmy4Ttz2w9llsXuzCasczyIg9liJvU3GO/3fZE41GIe2xPh/1SWdTdcjeNMVnZO67USvpwAAXwq9tsaBcWAcGAdeWziuBYDIbDgc4Kd39qaDpf45+xwoAMCXQq+tcWAcGAfGASgAREQBAL4UYuKHcYDPelAAiIgCAHwpxMQP4wCf9aAAEBEFAPhSiIkfxgE+60EBICIKAPClEBM/jAN81oMCQEQUAOBLISZ+GAf4rAcFgIgoAMCXQkz8MA7wWQ8KABFRAIAvhZj4YRzgtQUFgIgoAMCXQq+tcWAcGAfGASgAREQBAL4UYuKHcYDPelAAiIgCAHwpxMQP4wCf9aAAEBEFAPhSiIkfxgE+60EBICIKAPClEBM/jAN81oMCQEQUAOBLISZ+GAf4rAcFgIgoAMCXQkz8MA7wWQ8KABFRAED7fSnsn+RtJpIx76u/ISZ+J/R1n67nfjruyziYvePA54ECABQAIqIAgFnypfCHW3vSvuerLV//tgOV9Mu7yxNKd6X5fW3YV0l/saorvXNRKb1/aSn96LYeE78TYPP+Svr8+u70wWWl9O7FpfSh7L//ekN3uuvpyoTv67EXqunLG7vTOSu60ruy1/Gc5aX0hQ3dadfR1seUcTB7x4HPAwUAKABERAEAM/xL4ZId5Xyydtr5tTfq8p3llm8bE7yJfhDsbjIZHO1+zprXOamJqInf+K56qJxedUnnmK/V6y9v7fl/qqOa3r2klE4Z477edlXnuEWAcTC7x4HPAwUAKABERAEAM+hLYexGW83+Z/uhavrra7rSyy4c+UadSAFw9oKpf+H/1LVd9Z+95MLO9LYFnelVl3bWJ5NnXtQ56u6/M23X4Nkw8Yvn66s3do94XU45fyDDLo9iaNXu0Sddz3ZW08svHjqBPKXh/hovf+lFHWnnkeYlgHEwu8eBzwMFACgAREQBADPsC/83b+lJr50/9pf0iRQAr7l08HYvyyZ3sSVxvMTW4kJXNp84deD2L5/XmQ6VBn/2ud8NTk7OzSYqzb7sv/XKzvSzO3tm5Wt7ssbBvPvL2WTqWP25PT2bZH1mbVe6JpvcxRb6Sx8op7cvHLo1/yUXdow6sYq9RxrHzzuyv8d9PHS4mhY+VE7vGbZnwJuvHDmBMw5m/zjweaAAAAWAiCgAYAZ9Kfz1XeWmW/vOmjf5AiC+5Be3u/De8oR/p4vuHfydfrx15Bf3F59f27L8vxd0jvjZpwe2FMYk5t6D1Vn32p6scRC7UTdO0kZb8+Ef1g3dOhzHgw+39UBlyATxs9d1Nb2vc28ael8rd1WMg0y1Wk1XXXXVrB8HPg8UAKAAEBEFAMywL4Wx4FbxZnzxBZ3pfUtKafXALr2TLQBe3LCL9/2T+NL9zZt76rdv9qX9DwZ2LX/N/I4hl9/WMPF8b/bvmI2v7ckYB7GwWuNrvXD72K917G5dXPdNV4ycdMVhJI1bh8fyiobDBD5wdck4OIkFwHSPA58HCgBQAIiIAgBm2JfCWOzrLdmX95/e0TPm/zlPpAAYPOb72KR+p280fOFvtkDcKwcWJ3v1pUMnHa+/rLNeZDxbqs7K1/ZkjIO/a9iN+oxxJuzhfUtLQxZgG65x8bhYPX4sjcd2x4TSODh5BcB0jwOfBwoAUACIiAIAZtGXwskUALF4V32PgvM7JvW4v27YK+HiB4Y+bhxrfMbAIoVvvHzwC/93twxOEs7b0jNrX9uTMQ7+bFVXOjV7rSJ/eNn4W0r/bGXXmBO/mHAVP//h1p5xC6jGRQKNg5NXAEz3OPB5oAAABYCIKACgzQuAKx8c/LL+snm1xcFiIa5qQ8ZblTu21hX38ZYrOwdvk+U39wze/6fW1I4tf6azWj8O+I2Xdc7q13Y2TA4aV3U/u8lx143j5sYnxl4hvvG1Hr6Fd66Og5O5BsB0jgOfBwoAUACIiAIA2rwA+NYtg1ve4swCP7qtJz/Xe2whjOPBz7q4M1+sa7wtw+9eXBpyP7ES+fuXDq4+Hqcfe+yF2mTxTwauGz+biecDb7cC4LSGY7qHb12NReMax00ru143Xn/1sFPKzcVxMFsKgLHGgc8DBQAoAEREAQBzoACIL+aNx/yO9eaPxbtGW5n7hd406qkJT21YTTwWKquvNr+2e9a/tjN9ctB4nHizBf5ueXzoQnKtaDxjwPBV4ufiOJgNBcB448DngQIAFAAiogCAOVAAvH/pyC/pMcGL44rj9IKnDPtZnGf8kSOjbyX+1s096c1XdOarxb/m0s50zoqu/FzyIXYBPnPgtGVjLUKmAJgea/cMPb3ft28ZudV27d6pFQBxVoq5Pg5megHQyjjweaAAAAWAiCgAYA4UAG9fOLhbbnzJjwnAggfL6amOar57+Nc39aSzLhr6IfCmyyf3Zf3TDSvIL9pebovXdqZODg4cq9YXW4u8YZTX7HgVAHNpHMzkAqDVceDzQAEACgARUQDAHCgAwkX3lvMtc6t3NT/+Nnbnfc38ziH3v37fxI7V3fpk83N8N1tgTAEwNfEcxjnW61tpL+hsejq2k1EAtOM4mKkFwETGgc8DBQAoAEREAQBzpABoxQPPVtPvNywi9ueruiZ0+2bn+N6QTRpiQbG4LHYvPv2CjnwL5G0HKrPmtZ2J4+BtCzqH7L69cIytq1MtAH59V3nOj4OZWgBMZBz4PFAAgAJARBQAoAAYInYfLu6/lfOOF7576+DK4t8bWH38/PvKI44n/v2GXY8XnsRdgmdzAfChZUOP4Y5V3Mcy1UUA47Rxc30czMQCYKLjwOeBAgAUACKiAAAFwBB/tnLwmN1WF+2KY5BfPLCl8A0D5/h+vjfVz/sdK4LHCuWXbSunT13blf89Lj/joo7UPwte25kyDuK5+sza7iFbfM+9afxV1RvP2R7ZfXRipwFsddfvdh4HM6kAmOw48HmgAAAFgIgoAKDNC4D4Qt0/cJxtK1+uP9WwaNdLL+po6f7fvWTwHN/Frrxf2zS4BfD7w85H/sUbuqe0wNxcLADieT634Tn9/YFJVKsaT/e2ZMfYz/kjR4cWBrE43FwfBzOlAJjqOPB5oAAABYCIKACgjQuASx4op7++pivPL+4cfxfhDy8f3K34lZeMv8XvqocGz/Ed5xcvFKcaO6XJLufdlcF/x19d0zXjX9uZMA7itWucxH90xcSet5c0rBL/5Y1jTxh/dXd5yK7ZrWj3cTBTCoCpjgOfBwoAUACIiAIA2rgA+Kd1g1vXXnnp+F/gX3Pp4P2ffdX4x/yeeVFtt94zh+0e/O7FpfoCYM0Uu/3GBEMBMLY4Nrrx2Ol4bifq9Q3Hco/3up4zwUnfXBgHM6EAmI5x4PNAAQAKABFRAEAbFwA3PjZ0Abhbnxj9eO74WeMEY7zjiht3D1740NDf5T0DX/hPG2UL8imT3II51wqAjY9X8ueweJ7fcuXkzsf+pYbdrGOy9Uxn8936Y9fwxr0FPrlm/NdnLoyDk10ATNc48HmgAAAFgIgoAKCNC4DwyosHt/6+Ivvzk8eq9WOAi2OCD2YTwpc3XC8W8eoeY+23OLa3+NL+niUjt9p9umEycN/TQyebsahc8bMvbuie8a/tyRoH2w9Vh0zGX31pR+oqNxzDPU4axUKAjRPIt2YTyGrDseCR+PuHlw++bnEKuHsPjn38/1wZByerAOif5nHg80ABAAoAEVEAQJsXALE17tSG44ZjN9zY0vaDLT3pvK096ROruvLLGu/7a+Ns7bvr6Up6w+WldPqFg+f4btS4pTFOHxZbnKsDE4tXN+xWfP/B6ox/bU/WOHj5vKGvydkLSvk501tJnCJuuL+/vnvI/cX9xwJycfq4L9zQnV4zf+j/EZyzYvzdsefKODhZBUC5Ov3jwOeBAgAUACKiAIA2LgDCf9zSk2/RbeUD4M9Xt74b7linlHvfksFjyWPrc5xGrHEr9MdXds2K1/ZkjYOpfIiPtqt1cSz2eHn9ZRPbxbzdx8HJLACOxzjweaAAAAWAiCgAYBZ8KYxV2Yus2DmxU2Zds7uS3nh5Z37bU347LOfXdgduZWXwifjIilJ+30Me64KO9IlrumbNa3uyxkHjaz3RnH7B6Kv3f+XG7vyUbiNel+zvL7mwM332uul/bWb7OJhpBcB0jAOfBwoAUACIiAIA5sCXwkOlavrZHT35+be/sL47nbelJ+06evx2vY2tgt+6uSff3Tz+u+/56qx6bdt1HPxuTyV9+5ae9Pl13emb2euybOfxPQf7bB4HM+U0gD4PfNaDAkBEFADgSyEKABQA+KwHBYCIKADAl0IUACgA8B4HBYCIKADAl0KvrXFgHCgAjANQAJgEiSgAwJdCFADGgQJAAWAcgAJARBQA4EshCgAUAPisBwWAiCgAwJdCFAAoAPBZDwoAEVEAgC+FKABQAOCzHhQAIqIAAF8KUQCgAMBnPSgAREQBAL4UogBAAYDPelAAiIgCAHwpRAGAAgDvcVAAiIgCAHwp9NoaB8aBAgDvcVAAiIgCAHwp9NoaB8aBAsA4AAWAiCgAwJdCFAAoAPBZDwoAEVEAgC+FJ05/f78XSgFgHCgAjAMFACgAREQBAO38pXDjxo22SioAjAMFQP773XDDDWnRokVeVAUAKABERAEA7falMLb0rVu3Lv8dJ7rVbzLXHy3jXVcBMPPGwVReo1Zv227jYDYUADEOTsTvONc/D0ABICIKAFAAnFCPP/54uvrqq/PfL7Jw4cJ0yy23tPSl/Y477shvG1uNW7V27dp8YtEs3d3d9es98MADafHixfnvtGDBgvz3uuuuuxQAM2gcbNmyJb9evD6R2GLc6mvU6uvbjuNgphYA8Z5+7LHHhoyDeE1vvfXWMf8tmzdvHjIO4vW6++67W3oe5vrnASgAREQBAAqAE+b555/Pv0zH77Zy5cp0zTXX1P8ek7tmHn300SHXi1x//fUtP+aSJUvy28SX+eHp7e2tP0Zx39dee22e4vFiIqAAOPnjIHYRL4qCmMRFitds69atYz5eq69vu46DmVoAHD16dMg4WL16dX1S3+w1jX/Hhg0bhoyDeI2KSfptt9027vMw1z8PQAEgIgoAUACcMMWX95tuuql+2YEDB+pf6JspJgWxlbD4sj+RAiAmPqPddyEmH3G/27ZtGzIZjMddunSpAuAkj4OYmMXP4rUslUr1yx955JH6VuPpeH3bdRzMxAIgfqf169fnz+3NN9+cXxZ7BDz55JP1CfpwsYW+eL2LcRC32bVrV355TO5beR6a3fdc+TwABYCIKABAAXDCrFq1Kv+9du/ePeTyYqtcMzt37sy3FIY4BGCiBUBcf7wv7cUuwMPFRGMmPo+zvQCY6Dh4+OGH88ujDGr1tZvM69uu42CmFgAxDmJSvWfPniGXxzgY/vvGRH/Hjh35v3nNmjVN/33jFUFxvbj9smXL5uznASgAREQBAAqAEya2+MXvFQt+NS6q9cQTT+STvPFMtgCIica9996bb3GO3YQ7OztHXKfZVsHly5fnP4td1hUAM2ccFGIrcCtbflt9fdt1HMzkPQDi3xD/LcZB/DfGQRR/rero6MjvJ/YSaqUAiCLpnnvuyT8Pbr/99iF7lbT75wEoAEREAQAKgBOm8djvFStW5JO9iayuPdECYP/+/fXjg4tjeou/N040R9tLoNgVOCYkCoCZMw4Kv/vd7/L7GO/Y71Zf33YdB7NlDYCY9E90HMS/7brrrsvvJz4fRhP3GwtPNvs8iOemsXBo588DUACIiAIAFAAnVOz2XayuXRzzHVvhjkcBECuMx267sctv7AHw0EMP5bsPF1/6K5VKS1/4434UADNnHITYgtvK7twTeX3bdRzM5LMAxDoOjeMg3q/xPm+lCIjrxOr/cbvYOj/edeM4/uLz4L777ss/D2IByuJx4/Og2EugXT8PQAEgIgoAUACcFLHVtzgWPBILw013ATCamADE/cQkspWJnz0AZtY4KBb/i0ltK7tj2wNgZhYAjZPzOL6/cRzEWR/Gu01stS8m75PdLT+em/g8iL0CoiQca50AewCAAkBEFACgAJjgF/3hW/aKU27FF/Dhx+IerwIgzjffOMmIx252HHlxzO/hw4cVADNkHMRu3MWp4lrdEtvq69uu42CmFwCN42Lfvn31PUJGGwdxvXjt4/WKf1eMiak8ZpyFIO7rxhtvzJ+r4qwj7fh5AAoAEVEAgALghIkv9c1Wci+2/MWW3eksAGILf3ypH27Tpk35/WzcuDH/+2inCix2TZ7Nr207jYNDhw7lr1VM0MYbK41afX3bdRzM1EUA47lutqJ/cXaA4WeJKDz77LP112q06zSb6MfhAo2nniwuj8vi8eK/o50qMC5vh88DUACIiAIAFAAnTLHltnEV/vgCXnyxPnbs2KQLgGZblWNxsLj+Aw88MOR6xZa87du355cVhwTEVujCkSNH8t91vHOGKwBOzDiI6xanYWt8PVsZB62+vu06DmZqARDP6/At/X19fflzHb9vs3EQK/7HOIjbPvjggy2Pg8bFAhtvF5fH50FcHmsCNB4SUIyDuJ/Y6h+XjXdKUZ/1oAAQEQUA+FI4IE77VhyzG7vd3nrrrfVJVytfrMcqAOKymDQ07hYex+oWu5XHVv/YI6Bx0a9CFAHFMeWbN2/OF6OLiUlctnXrVgXADBgHcXmx2FtsqR2e4qwOzcZBq69vu46DmVoAFOMgJvwxDuLQnGIcNDsGP24z3jiIdQHienGGiHjtisMDGs8CEM9FfB7EHgHF50Ex7uJ6URAUhyHEOIizTMSf43NkIgtVKgBAASAiCgCY818K44t542m44s9xKrg4JVgrBUBcPyYOw8V9xM+KrfqFbdu21bcYFo8XX/afeeaZIdeLCUhMDBp/rzg/+Wx/bdtlHBR7DYyW2Lo71jho9fVtx3EwU9cAKLbKN56SrzglYLNxUCzQN1ZiXA3fql+Iyf39999fL3WKDP88iOtFQTD8dIGtLFDpsx4UACKiAABfCpuILXxjLfQ1UXEKr7EW54qfxVbisa4T9xHHlsdWxO7u7rZ4bY2Dib++7TYOZvoigMVu97EnwHSOgzh8Y6zPg3h9x7pOuVzOx8GuXbva5vMAFAAiogAABcBJsXbt2qYrbTO3CgDjQAEQv9+1116bb7VHAQAKABFRAIAvhbRpAYACAJ/1oAAQEQUA+FKIAgAFAN7joAAQEQUA+FLotTUOjAMFAN7joAAQUQAAvhR6bY0D40ABYByAAkBEFADgSyEKABQA+KwHBYCIKADAl0IUACgA8FkPCgARUQCAL4UoAFAA4LMeFAAiogAAXwpRAKAAwGc9KABERAEAvhSiAEABgM96UACIiAIAfClEAYACAO9xUACIiAIAfClEAYACAO9xUACIiAIAfCn02hoHxoECwDgABYCIKADAl0IUACgA8FkPCgARUQCAL4UoAFAA4LMeFAAiogAAXwpRAKAAwGc9KABERAEAvhSiAEABgM96UACIiAIAfClEAYACgOkVr633OCgARBQAgC+FXlvjwDhQAMyBAsBrCwoAEQUAYOLntTUOjAOTRAUAKABERAEAJgcoAFAAoAAABYCIKABAAYACAAUACgBQAIiIAgBmz+QgvhzSfl/4J1oAGAdzexwUk0TjoP1UKhUFACgARBQAPgIhpYULF6a9e/d6ItpMvKbx2hoHxkGr4yAm/osWLUr79u3zxLWR/v7+tGfPnrR48WJPBigARBQAMNetXLkybdmyxRPRZuI1Xb16tXFgHLQ8DqIAWLVqVdq6dasnrs0KgM2bN6c1a9Z4MkABIKIAgLkuvhjaMtR+X/jjNY3X1jgwDlodB8VEcenSpfmfaQ99fX1pyZIlih1QAIgoAHwEQs3y5cvT+vXrfelvE+vWrUvLli0zDoyDCY+D2AtgxYoVacOGDcZBG4jXM8ZBvKaAAkBEAQDkjh49mhYsWJB/UfSlf/aK1y4m8PFaxmtqHBgHkxkHhw8fzm+rBGiPyX8s/jeZcQAKABFRAECblwCxtTB2GY7jhmPxMKuBz44v+fFaxWsWr11sxZ/Kl33jwDgIR44cye8jdh0vxkHsSh6FgMzcxGsUC/4Vh/TE2h4m/6AAEBEFAIwqvjjGomGxcnicPkxmfuK1ii/6Eznm3zgwDsYTE8pbb73VOJil48CinqAAEBEFAAAAKABERAEAAAAoAEREAQAAACgAREQBAAAAKABERAEAAAAoAEREAQAAACgAREQBAAAAKABERAEAAAAoAEREAQAAAJgEiSgAAAAABYCIKAAAAAAFgIgoAAAAAAWAiCgAAAAABYCIKABg5ujv7xeZlfH+mJnPGYACQEQUADADJ/6bN29OK1euTAsXLkwLFiwQmRWJ8bp69ep8/B6vSa33h8zWLFq0KF1zzTVpy5YtSh9QAIiIAgBSOnLkSFq+fHlasmRJ/iVx7969qVqtemKY8WKcxniNcRvjd9myZfl49v6AlPr6+oa8P1asWJGOHj3qiQEFgIgCAOaq+DJ45ZVXpvXr13symPXWrVuXj+fpmuR4f9BOZVm8P6666iolACgARBQAMFfFFlOTG9rJhg0b8i323h8wsgSI8RyHsoACwCRIRAEAc0wc07x48WJPBG0nxnWMb+8PGFkCFIezgAJARBQAMIfEwmm+BNKOYlxPdSun9wftKBYCjHEd4xsUACKiAIA5JFYzjwWioN3EuI7x7f0BIwuAPXv22LsFBYBJkIgCAOaaWNzMaua0oxjXMb69P2CkSqWSLwYICgARUQDAHCsAwPj2/mDuFWQKABQAJkEiCgAwQQLj2/sDBQAoAEREAQAmSKAAAAUAKABERAEACgBQAIACABQAIqIAAAUAKABAAQAKABFRAIACABQAoAAABYCIKABAAQAKAFAAgAJARBQAYIIDCgBQAIACQEQUAGCCg/Ht/QEKAFAAiIgCABMkML69P1AAgAJARBQAYII0F/T3Z1+K+2v/bfrzNPDzaXqc8dI/7PooACY13lKTsdU/997X3m8KAFAAiIgCABMkBUDdh5d3pdMv7EyfXNPVdJL/hQ3d+c/PvbF7So/zvqWl/H7GS/E4/3tBZzr1/I70wLNVL5ICYMKT3/O29qQ/uLgznZKNoVN+eyy9+ILO9N4lpfTkseM3nupl2UmeSFeyf+J7W3i/nXFRZ/r6pu5Uzq7/1uz99pILO9KDbf5+UwCAAkBEAQAmSHPa2QtK9Q+FtXsrI37+19d05T/72+umVgB8dm13ev3lpXpishH3+4psktZ4+X/f0ZNf/92LaxOY3UcVAAqAiSnG7GnZ5D/G97uzif/L53Xml730oo70bGn6x1RM/M+/p5yP2c+s7TrpBcBnWni/vfGKUvr5nT359d+Vvd9elj1He44qAEABICIKADBBmhMFQEwOhm+9HKsA6J/C7tUxKYv7/d6WnqY/7x92n8Xf+9PQwxYcJaAAaLTgoXI+rs7IJry7hk1m37WoNuY+umL6J+h92UD8r9t70inZ/X9oWWlGPSf5BD97v8UeNbFnxFymAAAFgIgCAEyQFAADW0bjv7HlsJUC4GBnNX3q2q70uvml9KpLartXb32y0vKEfLwC4O+yx4vfrfCxlV3pE6u60lXby/nhAa/MHvMtV3amKx4sKwEUAHUxNmJc/eyOkePqocPVfIL+smysFxPjOATmIytKIybMsQdK45b8mOAve7iSzl5YG+9vvqIzfWVjd15ExfXfuaiUXjt/8L30jqtKaeWucq28ynKgo5ofZlO8Xz6wtJRuOzD4fon7iGLi49kYX7KjnP4oG/vFGL/g3nL+8x9mk/c3ZY/7yks788fb+Fil9QJg8egFQPz8c9n7/p0LS/W/x/vtL1Z3pSseKOeHB8TvEs/tgu2z+/2mAAAFgIgCAEyQFADZB8K3bulJp/22I58g3dwwsWhWAOw8Us0nUcWW1jPn1W4XE4yYrExHAfCa+bX7L8QuzKeeX3ucmGBFThn4fX92Z48XUgGQi2P9Y5yM5tybutOXNtbGchz7Hrvsv+zCodePy2PdgJioF5P/8zb31A8rePnFnen0C2pj781XlFJvX8ove8mFnYPXyd4TF95XmyxvP1R7v5wy8H552cD7Je7jovvK9ceMMZ6P6fMHxvi8wTH+x9nkvCgvirLu9Oz69x8cf5f98QqAeOx4v8Xv0/i7NHu/vTi77Jd3zd73mwIAFAAiCgAwQVIAZB8IP72jJ/3rDd35n199aceYBUCxlfVv1gxuIY1jieOymIAdrwIg/h6/Y30yd2Pt9z3jog4vpAIgV0yyW9FqARB/P3NebdJ/+1O1cuxYb0qvzn5+WnbZb+4pj3oIQL7A3pW1xQg/O7BHQVw33m+/n0/oO/OSoHHS/a2ba++Jvuyyf1xfG+Nx+Xdu7alP6M9Z0ZXfZ7w/j2cB8JWBRTnjd/7qwPvt5Rd3zNq9ABQAoAAQUQCACZICYKAACK+7rPYB8c8bupsWAM+UqvUt/8P98cAx1j9s4TjjyRQApzXZshu7Q8f1NuyreDEVALVd8I9DARDjLybI9w1scY9d/1fsrKR/3didNj5aGbUAiF3/80nzvI4Rk/J3LKpNyn98W0/9MYb/7lE0xO3Parh9PPbSHeX8sd6+cPzCbbw1AEYrAF7a5HmJ99uLs+vFv1kBAAoAEVEAgAJglhcAcVzyqQO7Id/zdHVEAXDZttoia7FVc7hiC2EcP3yiCoA4vWBc77u3OgxAAVD7YvuSaS4AYgL9f67vrh3mkuUPLyulz2Xvh3sPVusLVTYrAGKifsn9AxP1q4a+X+L6X97Ynb/PPrG6a8xJd+PvUtzvun2V/H7ftqDFAmDx1AuA4vSCcT8/2Dw7328KAFAAiCgAwARJAdBQAIS/v742kX/9ZZ0jCoBfDOzqHxP44X6wpfazD7awCvp0FQCxcFqxhgEKgOK49dF2Ub/v6Wq6c2A3/lYLgGLSfeE95bz4imP9Y+IeOWd5KX+sZgVAXBaLEcZl77u6NKIA+G42iY77iEUIZ0sB8JHlXbXDERQAoAAQEQUAKADaowAIsep3XP66y0pDCoBYeTwvBy4fOcmPswLEz/6uySkDj1cBcPZVtfu5emfZi6kAyNeviPEwf9vI8fBsqZpPphsnuvHnlw5bQyIW9WucdPenoae6jD8vebicrwsQk+Ef3dYz6h4A6x+tTdTffOXIMw3EGhpx+3+8vntWFABxeZydINY9WL5rdr7fFACgABBRAIAJkgKgSQGwPptg/P75gx8YjYsAxkQhLrvr6aHHAb9sYKG+OIzgeBQAMeF57IXBVc9f6B3c4ht/RgHw7zfV9kJ57fyOUQuqOMVfMaE9K5vEv+SCY3k50Di5juvFpDv+vuaRSr6l/uyG3fhjgb7PX1/bhf/T2f0WC/udMmwPmKJkiOPm7z5YGXJ5vF9ePLCw4HEvACaxBkD8/fGG99vh7tr77SUXzN73mwIAFAAiCgAwQVIANCkAwicHJkzDC4Cvb6pNdGL36Vgs8Bs399S3vP7JklJLjzvZswDEVtevZ48XiclbXPah5SUvpAKg7g2Xdw6czaIz/dvG7nxtincOLFAZE+7i1HkxMY7JeozlP7y8lL6RjesoCeJMFkUB0FgUxGT//VeX0k9ur50xo5jYL95RzvcOuGlg75g4Lea/Z/d10xO1xQG/dlPt/XLGRZ3pC9n7Jd4/r7q0dgjBB64uDZl0z6Q9AGor/tfeb1/b1FN/Dj66cva+3xQAoAAQUQCACdKc9varahODn93RfCL+iotruzl/7ndDd+uPiVVMfopjoU+9oDY5atWfDCwm9v1RCoA4G0Hj+dzzPQCyv7/x8oHjrwcWKnzLFZ2p2wkAFAANYjy8d0kpP2Skcay8dn7nkLNFxB79e56r5pPf4nqnDoypuO1rLh04BCC74ub9lfTay4beX5wJ46s3dg+ZSBen/Ivd5L95y+Dp/P7lhqHvl/j5h5cP3VMgDkU486KRBcBp5x+r/y5FARCHFsTv+kdXtVYARDEXj//D25oXAPFvK87sURQA8Xu+4bLOIc/NHy2Y3e83BQAoAEQUAGCCxBSs2FlOi7aX06FS9bg+TuMaALEFN1ZXv/dg1QugABhV7KYeYzPOXLHv+dHHShQB256tpvkPltOOI2Nfb2f288seKKdN+5vPgmNyHiXDNY9URkyU42fLs/fL4ofK6XBp5o7dxr0RovyIUx9emj2H9z0z+99vCgBQAIgoAMAEiVlgtEUAUQBw/AqAdqMAAAWAiAIATJBQABjf3h8oAEABICIKADBBYiZ4x6JSesuVnZ4IBQDHWawZEO+3VtYXUACAAkBEFACgAAAFACgAQAEgIgoAUACAAgAUAKAAEBEFACgAQAEACgBQAIiIAgAUAKAAAAUAKABERAEAJjgY3woAUACAAkBEFABggoPx7f2BAgAUACKiAIA5NUGKL4LQjhOc6SgAvD9oR5VKRQGAAsAkSEQBAHPNwoUL0969ez0RtJ0Y1zG+vT9gqP7+/rRnz560ePFiTwYKABFRAMBcsnLlyrR582ZPBG1ny5YtafXq1VN+f8T9QLsVAPG5v2bNGk8GCgARUQDAXJskxVag+EII7TTBiXE91XIrbm8rKe2mr68vLVmyJG3dutWTgQJARBQAMNesWLEirV+/XglA21i3bl1atmzZtNzX8uXL8/cHtINY0yLeH/G5DwoAkyARBQDMQUePHk0LFizIvxQqAZjNYvzGZD3Gc4xr7w8YOfmPxf+m6/0BCgARUQDALC0BYktn7O4chwXEAlGxm2hMeERmcmKcxkJ9xeEssWVzuic3w98f8XjeHzJb3h/xeV4czhLrWpj8gwJARAEA5GJyc80116RFixblWz1FZkNivK5ateq4L2gZ9+/9IbP1/eGYf1AAiIgCAAAAFAAiogAAAAAUACKiAAAAABQAIqIAAAAAFAAiogAAAAAUACKiAAAAABQAIqIAAAAAFAAiogAAAAAUACKiAAAAAAWAiCgAAAAABYCIKAAAAAAFgIgoAAAAAAWAiCgAAAAABYCIKAAAAAAFgIgoAAAAAAWAiCgAAAAABYCIKAAAAAAFgIgCAAAAUACIiAIAAABQAIiIAgAAAFAAiIgCAAAAUACIiAIAAABQAIiIAgAAAFAAiIgCAAAAUACIiAIAAABQAIiIAgAAABQAIqIAAAAAFAAiogAAAAAUACKiAAAAABQAIqIAAAAAFAAiogAAAAAUACKiAAAAABQAIqIAAAAAFAAiogAAAAAFgIgoAAAAAAWAiCgAAAAABYCIKAAAAAAFgIgoAAAAAAWAiCgAAACA46hcVQCIKAAAAAAFgIgoAAAAAAWAiCgAAAAABYCIKAAAAAAFgIgoAAAAAAWAiCgAAAAABYCIKAAAAAAFgIgoAAAAAAWAiCgAAABAASAiCgAAAEABICIKAAAAQAEgIgoAAABAASAiCgAAAEABICIKAAAAQAEgIgoAAABAASAiCgAAAEABICIKAAAAUACIiAIAAABQAIiIAgAAAFAAiIgCAAAAUACIiAIAAABQAIiIAgAAgP+/vTuH8anf4zh+bY/EvoQCxb0RkUlohtBoiMLe2ZegUhAiEkvQIBIKu0JEJILSFgWN2BoKW2EtCAkh9t0Yv+d+f8mZzLiW4TlzmfF6J688w8woJifz/M/nf/7nLxkAAAOAJEmSJAMAYACQJEmSZAAADACSJEmSAcBJEBgAJEmSJBkAAAOAJEmSJAMAYACQJEmSZAAADACSJEmSDACAAUCSJEmSAQAwAEiSJEkyAAAGAEmSJEkGAMAAIEmSJMkAABgAJEmSJAMAYACQJEmSZAAADACSJEmSDACAAUCSJEmSAQAwAEiSJEkyAAAGAEmSJEkGAMAAIEmSJMkAABgAJEmSJBkAAAOAJEmSZAAADACSJEmSDACAAUCSJEmSAQAwAEiSJEkyAAAGAEmSJEkGAMAAIEmSJMkAABgAJEmSJBkAAAOAJEmSJAMAYACQJEmSDABOgsAAIEmSJMkAABgAJEmSJBkAAAOAJEmSJAMAYACQJEmSZAAADACSJEmSDACAAUCSJEmSAQAwAEiSJEkyAAAGAEmSJEkGAMAAIEmSJBkAAAOAJEmSJAMAYACQJEmSZAAADACSJEmSDACAAUCSJEmSAQAwAEiSJEkyAAAGAEmSJEkGAMAAIEmSJMkAABgAJEmSJAMAYACQJEmSZAAADACSJEmSDACAAUCSJEmSAQAwAEiSJEkyAAAGAEmSJEkGAMAAIEmSJMkAABgAJEmSJBkAAAOAJEmSZABwEgQGAEmSJEkGAMAAIEmSJMkAABgAJEmSJBkAAAOAJEmSJAMAYACQJEmSZAAADACSJEmSDACAAUCSJEmSAQAwAEiSJEkyAAAGAEmSJMkAABgAJEmSJBkAAAOAJEmSJAMAYACQJEmSZAAADACSJEmSDACAAUCSJEmSAQAwAEiSJEkyAAAGAEmSJEkGAMAAIEmSJBkAAAOAJEmSJAMAYACQJEmSZAAADACSJEmSDACAAUCSJEmSAQAwAEiSJEkyAAAGAEmSJEkGAMAAIEmSJMkAABgAJEmSJAOAkyD4YweA9+/fp6qqqhrx59p/96f8ubq6+qfU/tkBwO/iZ/+/BjRt76qq03+2PacJ+PfWp9mf8mfK8a//lgAAAIAmzw8BAAAADAAAAACAAQAAAAAwAAAAAAAGAAAAAMAAAAAAABgAAAAAAAMAAAAAYAAAAAAAAwAAAABgAAAAAAAMAAD8sObNm6dmzZr5WQAAYAAAaKon/iE+NgDQUOLYatGixRc57mjoY+9n+NkBGAAAmtSJf5x8xcctW7ZMlZWVqUuXLoYASlec5H/rRMsQQEP9nvsV3wuAAQDgt3omtjjZ6t+/f9q3b1968eJFOnDgQM3fOxmjjGOteGlJ27Zt0/Dhw9PSpUvT1q1b07Zt29KKFSvSyJEjU4cOHep8rZ8dZR6D7du3T506dUodO3asl/ja+B7HIoABAKDRPxNbPKvVrVu3tGbNmnT//v304cOH9ODBg3Tz5s3UtWtXAwClXXYdH0+ePDmdPXs2vX37Nn3e+/fv0/nz59OsWbPqXCngZ0gZz/zPnTs33bhxI12/fj2Lj7+l9tfF97oSAMAAANCoL/f/66+/0uzZs9OVK1fyCdjdu3fTunXr8oPea9eu5We/DAD805P/+G+rVq3Sli1b8kn+69ev07Fjx9KiRYvS2LFj06hRo9KCBQvSkSNH8tUnVVVVaffu3flKAccfZRx/cSzdunUrPXnypObEvr7ie+J7HY8ABgCARnu5/9ChQ/NJWDzj//Lly3zpf0VFRX6QWzwDFpfAesBLGc/+b968OX38+DGfUE2YMOGrx9To0aPTpUuXUnV1ddqzZ4+bUlLKABAvLSmeze/Ro0dq06ZN/ru4vP9L4nPxNfG1xdUA8XeORQADAECjOPEvTqR69+6dduzYkZ49e5afaT1z5kwaM2ZMzefjWf+rV6/mB72uAOCfvswk/jtlypT07t27fBI1YMCAms/FDSeLd54o3gUgPte3b9908eLFfHzOmTOnzr8FPzMAxEl9MWzGx9/7vfaz3weAAQDgl17uX/vEPm66dvv27fTp06d8MjZv3rz8LFd8Pk7Gige8cfm/KwAo48QrjqvTp0/nAWD69Ok1Lwf42vcVn4tRKl4OEFcDOA4pcwCozzP5ta8cMAAAGAAAGs0D33jmdPz48fnmanHi//Dhw7Rp06bUq1evOvcEqP1A2QBAWc/+DxkyJL/m/8SJE/meE/UdruK/8U4UcRVA3CfAVQC4AgDAAADANx68VlZWpkOHDuU7rsfN1+LjwYMH17wuu/YJVe0HvF4CQFkDwPz58/MNJleuXFnvk/jia+LO69Hq1asNABgAAAwAAHzt2dN4HfWdO3fyZdTx7H/cab34XO1n/L/0gNcVAJQ1AKxduzafxE+bNu2HB4A4ZqPt27cbADAAABgAAPjeAPD06dN07ty5NGLEiDovC/j8/awNADTkADB16lQDAAYAAAwAAA31oHfgwIH5vdVfvXqVXwZw8ODBNGjQoDovASi+1ksA+F1fArBq1SoDAAYAAAMAAN97ABsnTZMmTcovA4j3Vn/06FHasGFD6tmzZ80VA24CSENdiRI3AXzz5k2+CWDr1q3rdTwVA9Xhw4fzTQDHjRtX598EAwCAAQCAL5yEFSdNnTt3TsuWLcsvCyjeBjCeYW3btm2dZ1cNAJR54hVv63fy5Mn8NoAzZszIfxfvBvC1Y6p4G8A46X/58mW6cOGC45BSB4DibQDjd2MxNn2u+L3pbQABDAAAjfJy7OIBbZ8+fdLOnTvTs2fP0sePH9OpU6fq3CAwTrYMAJR5FUBcgRJvBRjH1IABA2pefvIl8bm4f8XFixfzO1fMmTPHs/+UNgDcvHnzh68AiO8xAAAYAAAa3QPh2q+hHjp0aDp+/Hg+yYp7BOzfvz9VVFSkNm3a5KsD4kGvAYCyRoBNmzblYy2OqxgEipP9z40ZMyZdvnw5ffjwIe3evduxRykDQDyTH7/X4kQ+Xv4UVz7FPU7id9yXxOfia+Jr43vie4srBxyTAAYAgEY5BMRrsmfNmpWuXLmSXxZw7969tH79+vxgNxgAKOsErGXLlmnjxo35SoC4J0CMT4sXL86X+sdJ/8KFC9PRo0fzZf/xcoFdu3blMcrxRxnHX7t27fLvtMePH9ec0BeX9n9N8TXxPfFx/BuORwADAECjvz9A9+7d05o1a9L9+/fzM68PHjzIz9TGfQM84KWMk7DiWJs4cWI6c+ZMHgFidKotTvzjLStnzpxZ5woBP0PKGAHinifx8qZQjJzfU3x9fK/fhQAGAIAmcX+A4kFtv3790t69e9Pz58/ToUOH/uctAqGMESCe2R82bFhasmRJ2rx5c9qyZUtavnx5GjFiRM3rrIsbtPnZUaa4rD8u5Y/jrD7ia4sbpQJgAABoci8LiEu1KysrU5cuXfxsaNDB6XtDATTE/Sj+398LgAEA4Ld/WYBnX2noY+3zdwBwkgUABgAAftFrZgEAwAAAAAAAGAAAAAAAAwAAAAAYAAAAAAADAAAAAGAAAAAAAAwAAAAAgAEAAAAAMAAAAAAABgAAAADAAAAAAAAYAAAAAOBP8DfXBTD0izaqvwAAAABJRU5ErkJggg==","type":"text"}]},"url":"{{host}}/employee"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"4423","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 03 Jul 2017 19:39:03 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1147-z4NNJA6GW2TsjWPCqCe5C49sSCg\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1499110743184324","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"stage2.liverydesk.com","path":"/","secure":false,"value":"s%3AexHjltdZdWkKl2Rk1KqbJaL8_CQDN4R0.waot11eWNk9TItsuRNecqGr04u%2FTqq5eLrzkybYSDIY","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"employee_id\":681,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"testdriver@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$GMzy0ZycyGyI9iRoH02T0e00Zh/pUv53JpCx1VhDRpbgQlvs9ACt6\",\"password_hint\":\"pa*****4\",\"hash\":\"B1PGVzY1g\",\"company_id\":1,\"location_id\":370845,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":{\"base_id_old\":\"B01534\",\"company_id\":1,\"name\":\"B01534 - Liverydesk Drivers\",\"is_active\":1,\"is_default\":1,\"is_deleted\":0,\"date_created\":\"2015-04-15 00:00:00\",\"date_updated\":\"2017-03-20 18:37:36\",\"base_id\":1,\"_type\":\"base\"},\"base_id\":1,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":\"1.0.0-android-staging-build-1\",\"device_id\":null,\"date_created\":\"2016-10-22 16:30:07\",\"date_updated\":\"2017-07-03 19:39:03\",\"old_car_type_id\":1,\"car_type_id\":1,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":94648,\"phone_verified_date\":null,\"picture\":{\"stored_name_sm\":\"hQDMWd6kp-sm.png\",\"stored_name\":\"hQDMWd6kp.png\",\"type\":\"image\",\"original_filename\":\"Screen Shot 2017-06-29 at 2.08.52 PM.png\",\"remote_path\":\"liverydesk-public/employee/picture\",\"url_fullsize\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/hQDMWd6kp.png\",\"url_small\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/hQDMWd6kp-sm.png\"},\"profile\":\"I'm the best\",\"location\":{\"location_id\":370845,\"address\":\"1234 Broadway\",\"address_two\":null,\"city\":\"Brooklyn\",\"state\":\"New York\",\"postal_code\":\"11221\",\"country\":\"US\",\"long_name\":\"1234 Broadway, Brooklyn, NY 11221, USA\",\"short_name\":\"1234 Broadway, Brooklyn, NY 11221, USA\",\"latitude\":40.6916,\"longitude\":-73.92613,\"date_created\":\"2016-01-23 21:06:28\",\"date_updated\":\"2017-06-13 21:41:17\",\"_type\":\"location\"},\"car_types\":{\"type_id\":1,\"name\":\"Sedan\",\"order\":1,\"icon\":\"sedan.png\",\"company_id\":1,\"attributes\":\"{\\\"capacity\\\":{\\\"value\\\":\\\"3\\\"}}\",\"is_active\":1,\"date_created\":\"2017-04-21 23:54:03\",\"date_updated\":\"2017-04-22 02:16:35\",\"date_deleted\":null,\"old_type_id\":1},\"employee_options\":[{\"option_id\":\"1\",\"name\":\"Pets Allowed\",\"alternate_name\":\"Pets\",\"_type\":\"option\"},{\"option_id\":\"7\",\"name\":\"Accept Hotels\",\"alternate_name\":\"Hotels\",\"_type\":\"option\"},{\"option_id\":\"8\",\"name\":\"Accept Executive\",\"alternate_name\":\"Executive\",\"_type\":\"option\"},{\"option_id\":\"14\",\"name\":\"Patient Driver\",\"alternate_name\":\"Patient\",\"_type\":\"option\"},{\"option_id\":\"90\",\"name\":\"Extra Pickup\",\"alternate_name\":\"Extra Pickup\",\"_type\":\"option\"},{\"option_id\":\"91\",\"name\":\"Early AM Surcharge\",\"alternate_name\":\"Early AM Surcharge\",\"_type\":\"option\"}],\"transactions\":null,\"employee_transactions\":{\"balance\":null},\"job_transactions\":{\"balance\":null},\"_type\":\"employee\",\"options\":[{\"option_id\":\"1\",\"name\":\"Pets Allowed\",\"alternate_name\":\"Pets\",\"_type\":\"option\"},{\"option_id\":\"7\",\"name\":\"Accept Hotels\",\"alternate_name\":\"Hotels\",\"_type\":\"option\"},{\"option_id\":\"8\",\"name\":\"Accept Executive\",\"alternate_name\":\"Executive\",\"_type\":\"option\"},{\"option_id\":\"14\",\"name\":\"Patient Driver\",\"alternate_name\":\"Patient\",\"_type\":\"option\"},{\"option_id\":\"90\",\"name\":\"Extra Pickup\",\"alternate_name\":\"Extra Pickup\",\"_type\":\"option\"},{\"option_id\":\"91\",\"name\":\"Early AM Surcharge\",\"alternate_name\":\"Early AM Surcharge\",\"_type\":\"option\"}],\"car_type\":{\"type_id\":1,\"name\":\"Sedan\",\"order\":1,\"icon\":\"sedan.png\",\"company_id\":1,\"attributes\":\"{\\\"capacity\\\":{\\\"value\\\":\\\"3\\\"}}\",\"is_active\":1,\"date_created\":\"2017-04-21 23:54:03\",\"date_updated\":\"2017-04-22 02:16:35\",\"date_deleted\":null,\"old_type_id\":1}},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"d760dea2-1ecb-42d4-a0ed-0cf85faea20e"},{"name":"Update location","id":"9c6473e7-f968-4353-acf0-4b6d90a6c9a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/employee/updatelocation?latitude=10&longitude=40&job_id=562692&accuracy=123&speed_meters=24","urlObject":{"path":["employee","updatelocation"],"host":["{{host}}"],"query":[{"key":"latitude","value":"10"},{"key":"longitude","value":"40"},{"key":"job_id","value":"562692"},{"description":{"content":"<p>In feet</p>\n","type":"text/plain"},"key":"accuracy","value":"123"},{"description":{"content":"<p>Meters per second</p>\n","type":"text/plain"},"key":"speed_meters","value":"24"}],"variable":[]}},"response":[{"id":"b43f5e37-53fb-493a-9557-f6d42fed4b37","name":"Update location","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/employee/updatelocation?latitude=10&longitude=40&job_id=562692","host":["{{host}}"],"path":["employee","updatelocation"],"query":[{"key":"latitude","value":"10"},{"key":"longitude","value":"40"},{"key":"job_id","value":"562692"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"138","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:14:06 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8a-LXbAF4RkZNPdbAN4z31WgcO7zak\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":{\"employee_id\":746,\"longitude\":40,\"latitude\":10,\"accuracy\":null,\"driver_number\":null},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"9c6473e7-f968-4353-acf0-4b6d90a6c9a7"},{"name":"Employee Logout","id":"ed58d344-ebd8-4bf8-9ef6-b6ec5687446c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/employee/logout","urlObject":{"path":["employee","logout"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9a5bfc65-5400-42f6-b2f7-ff3e92c4f009","name":"Employee Logout","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"push_token","value":"sometoken","type":"text"},{"key":"platform","value":"ios","type":"text"}]},"url":"{{host}}/employee/logout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"55","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:14:18 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"37-kKkXe6Aga9BBf062Yq3yW1sMOBo\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":{},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"ed58d344-ebd8-4bf8-9ef6-b6ec5687446c"},{"name":"Off Duty","id":"0a8526d4-7fc7-4abb-b439-c7264a593eed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/employee/offduty","urlObject":{"path":["employee","offduty"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"929d6e90-8f5c-4284-ae94-ccff6bde065a","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/employee/offduty"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2454"},{"key":"ETag","value":"W/\"996-KzrCUeOss+X6Zx0T9pw2d1uAtxc\""},{"key":"Date","value":"Wed, 28 Apr 2021 16:44:14 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"employee_id\": 965,\n        \"driver_number\": 1,\n        \"first_name\": \"Test\",\n        \"last_name\": \"Company\",\n        \"username\": \"demodriver@test_company\",\n        \"email\": \"testcompany@testcompany.com\",\n        \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n        \"password_hint\": \"pa*****4\",\n        \"hash\": \"rjgtIGdgx\",\n        \"company_id\": 100,\n        \"location_id\": 388582,\n        \"primary_phone_country\": \"US\",\n        \"primary_phone\": \"2222222222\",\n        \"secondary_phone_country\": null,\n        \"secondary_phone\": null,\n        \"is_driver\": 0,\n        \"role_name\": \"driver\",\n        \"is_active\": 1,\n        \"is_deleted\": 0,\n        \"social_security_number\": null,\n        \"date_of_birth\": null,\n        \"base\": null,\n        \"base_id\": 67,\n        \"old_base_id\": null,\n        \"base_license_number\": null,\n        \"base_fee\": null,\n        \"base_fee_frequency\": null,\n        \"base_fee_last_processed\": null,\n        \"enable_recurring_base_fee\": 0,\n        \"base_fee_start_date\": null,\n        \"hack_license_number\": null,\n        \"hack_license_expiration\": null,\n        \"driver_license_number\": \"Change this\",\n        \"driver_license_expiration\": \"2021-05-27\",\n        \"driver_license_class\": \"D\",\n        \"is_car_owner\": 0,\n        \"dispatch_app_version\": null,\n        \"device_id\": null,\n        \"date_created\": \"2021-04-27 17:53:51\",\n        \"date_updated\": \"2021-04-28 16:44:14\",\n        \"car_type_id\": 255,\n        \"new_car_type_id\": null,\n        \"car_make\": \"Toyota\",\n        \"car_model\": \"Camry\",\n        \"car_year\": 2016,\n        \"car_color\": \"Black\",\n        \"registration_number\": \"Change this\",\n        \"registration_expiration\": \"2021-05-27\",\n        \"registration_owner_name\": \"Demo\",\n        \"license_plate_number\": \"Change this\",\n        \"insurance_policy_number\": \"Change this\",\n        \"insurance_provider_name\": \"Change this\",\n        \"insurance_expiration_date\": \"2021-05-27\",\n        \"tlc_number\": null,\n        \"tlc_expiration_date\": null,\n        \"tlc_inspection_date\": null,\n        \"tlc_inspection_expiration_date\": null,\n        \"on_duty\": 0,\n        \"on_duty_date\": null,\n        \"phone_verified\": null,\n        \"phone_verification_code\": null,\n        \"phone_verified_date\": null,\n        \"picture\": null,\n        \"attributes\": null,\n        \"profile\": null,\n        \"application_approved_date\": null,\n        \"application_approved\": 0,\n        \"number_of_ratings\": 0,\n        \"average_rating\": 0,\n        \"company_commission_data\": {\n            \"commission_flat_rate\": 0,\n            \"commission_percentage\": 0\n        },\n        \"transaction_balance\": 0,\n        \"suspended_until\": null,\n        \"date_unsuspending\": null,\n        \"password_reset_hash\": null,\n        \"password_reset_client_hash\": null,\n        \"password_reset_hash_date\": null,\n        \"vehicle_inspection_expiration_date\": \"2021-05-27 13:53:50\",\n        \"is_suspended\": 0,\n        \"recruiter_entity_id\": null,\n        \"recruiter_entity_type\": null,\n        \"car_vin\": null,\n        \"assigned_to_vehicle_id\": 364,\n        \"parent_employee_id\": null,\n        \"custom_attributes\": null,\n        \"primary_phone_international\": \"+1 222 222 2222\",\n        \"primary_phone_national\": \"(222) 222-2222\",\n        \"transaction_balace\": 0\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"0a8526d4-7fc7-4abb-b439-c7264a593eed"},{"name":"On Duty","id":"9cf75b35-844e-451f-a1e2-023ebd520089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/employee/onduty","urlObject":{"path":["employee","onduty"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"16bee3b6-51af-4f58-a966-908461441fff","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/employee/onduty"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2471"},{"key":"ETag","value":"W/\"9a7-v/pc5eXFrfAMtoFEKCafGhorSOA\""},{"key":"Date","value":"Wed, 28 Apr 2021 16:45:00 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"employee_id\": 965,\n        \"driver_number\": 1,\n        \"first_name\": \"Test\",\n        \"last_name\": \"Company\",\n        \"username\": \"demodriver@test_company\",\n        \"email\": \"testcompany@testcompany.com\",\n        \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n        \"password_hint\": \"pa*****4\",\n        \"hash\": \"rjgtIGdgx\",\n        \"company_id\": 100,\n        \"location_id\": 388582,\n        \"primary_phone_country\": \"US\",\n        \"primary_phone\": \"2222222222\",\n        \"secondary_phone_country\": null,\n        \"secondary_phone\": null,\n        \"is_driver\": 0,\n        \"role_name\": \"driver\",\n        \"is_active\": 1,\n        \"is_deleted\": 0,\n        \"social_security_number\": null,\n        \"date_of_birth\": null,\n        \"base\": null,\n        \"base_id\": 67,\n        \"old_base_id\": null,\n        \"base_license_number\": null,\n        \"base_fee\": null,\n        \"base_fee_frequency\": null,\n        \"base_fee_last_processed\": null,\n        \"enable_recurring_base_fee\": 0,\n        \"base_fee_start_date\": null,\n        \"hack_license_number\": null,\n        \"hack_license_expiration\": null,\n        \"driver_license_number\": \"Change this\",\n        \"driver_license_expiration\": \"2021-05-27\",\n        \"driver_license_class\": \"D\",\n        \"is_car_owner\": 0,\n        \"dispatch_app_version\": null,\n        \"device_id\": null,\n        \"date_created\": \"2021-04-27 17:53:51\",\n        \"date_updated\": \"2021-04-28 16:45:00\",\n        \"car_type_id\": 255,\n        \"new_car_type_id\": null,\n        \"car_make\": \"Toyota\",\n        \"car_model\": \"Camry\",\n        \"car_year\": 2016,\n        \"car_color\": \"Black\",\n        \"registration_number\": \"Change this\",\n        \"registration_expiration\": \"2021-05-27\",\n        \"registration_owner_name\": \"Demo\",\n        \"license_plate_number\": \"Change this\",\n        \"insurance_policy_number\": \"Change this\",\n        \"insurance_provider_name\": \"Change this\",\n        \"insurance_expiration_date\": \"2021-05-27\",\n        \"tlc_number\": null,\n        \"tlc_expiration_date\": null,\n        \"tlc_inspection_date\": null,\n        \"tlc_inspection_expiration_date\": null,\n        \"on_duty\": 1,\n        \"on_duty_date\": \"2021-04-28 16:45:00\",\n        \"phone_verified\": null,\n        \"phone_verification_code\": null,\n        \"phone_verified_date\": null,\n        \"picture\": null,\n        \"attributes\": null,\n        \"profile\": null,\n        \"application_approved_date\": null,\n        \"application_approved\": 0,\n        \"number_of_ratings\": 0,\n        \"average_rating\": 0,\n        \"company_commission_data\": {\n            \"commission_flat_rate\": 0,\n            \"commission_percentage\": 0\n        },\n        \"transaction_balance\": 0,\n        \"suspended_until\": null,\n        \"date_unsuspending\": null,\n        \"password_reset_hash\": null,\n        \"password_reset_client_hash\": null,\n        \"password_reset_hash_date\": null,\n        \"vehicle_inspection_expiration_date\": \"2021-05-27 13:53:50\",\n        \"is_suspended\": 0,\n        \"recruiter_entity_id\": null,\n        \"recruiter_entity_type\": null,\n        \"car_vin\": null,\n        \"assigned_to_vehicle_id\": 364,\n        \"parent_employee_id\": null,\n        \"custom_attributes\": null,\n        \"primary_phone_international\": \"+1 222 222 2222\",\n        \"primary_phone_national\": \"(222) 222-2222\",\n        \"transaction_balace\": 0\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"9cf75b35-844e-451f-a1e2-023ebd520089"},{"name":"Start employee phone verification","id":"29aeb294-8b3c-4347-9aa2-111295b14a83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/employee/verifyphone","urlObject":{"path":["employee","verifyphone"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f3b7bbec-042a-4e54-b418-95e10f3d511e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/employee/verifyphone"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:16:48 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"318-8ZX8Po2uOQwn2mRaGEnCO2PAsvo\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\n    \"data\": {\n        \"accountSid\": \"accountSid\",\n        \"apiVersion\": \"2010-04-01\",\n        \"body\": \"11111 is your LD Local2 verification code.\",\n        \"dateCreated\": \"2021-07-18T19:16:48.000Z\",\n        \"dateUpdated\": \"2021-07-18T19:16:48.000Z\",\n        \"dateSent\": null,\n        \"direction\": \"outbound-api\",\n        \"errorCode\": null,\n        \"errorMessage\": null,\n        \"from\": \"+12222222223\",\n        \"messagingServiceSid\": null,\n        \"numMedia\": \"0\",\n        \"numSegments\": \"1\",\n        \"price\": null,\n        \"priceUnit\": \"USD\",\n        \"sid\": \"sid\",\n        \"status\": \"queued\",\n        \"subresourceUris\": {\n            \"media\": \"/Media.json\"\n        },\n        \"to\": \"+12222222222\",\n        \"uri\": \"/Media.json\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\"\n    }\n}"}],"_postman_id":"29aeb294-8b3c-4347-9aa2-111295b14a83"},{"name":"Verify employee phone number with code","id":"6d5a615a-6dcb-40c8-9f20-61aed433a9cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"verification_code","value":"58087","type":"text"}]},"url":"{{host}}/employee/verifyphonecode","urlObject":{"path":["employee","verifyphonecode"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"9e02e626-eb25-4249-a539-ac5677ec5bcb","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"verification_code","value":"97533","type":"text"}]},"url":"{{host}}/api/user/verifyphonecode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"70","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 15:15:31 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"46-vB9GpJ5iB/e5MJWS+1xc5f94K1k\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1496848531896190","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AL4GNEyaj2JcZywq3acs_3D_L3f5xPgo2.UHN4TZt%2Bo5V6%2BGbezG2oZGS3KCfu25XSKjUtGQ2ev6I","key":"connect.sid"}],"responseTime":null,"body":"{\n    \"data\": {\n        \"verified\": true\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\"\n    }\n}"}],"_postman_id":"6d5a615a-6dcb-40c8-9f20-61aed433a9cd"},{"name":"Suspend","id":"d8e9c904-23bf-4c2b-863f-3b52b4f0cc5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"employee_id","value":"965","type":"text"},{"key":"suspension_time","value":"1","description":"<p>This can either be a valid timestamp, or a float in hours</p>\n","type":"text"}]},"url":"{{host}}/employee/suspend","urlObject":{"path":["employee","suspend"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e6650c01-3a0d-4e3b-939f-2909cac74be2","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjk2NCwiZXhwIjoxNjUxMDgzMzI1MjE0LCJhcHBsaWNhdGlvbl9pZCI6MTAwMDAwMDE5MywiYWNjb3VudF90eXBlIjoiZW1wbG95ZWUiLCJjb21wYW55X2lkIjoxMDB9.jugbOE4Df90CxxsyzOGUY82IpumBbX-82mFYn2hQOqA"}],"body":{"mode":"formdata","formdata":[{"key":"employee_id","value":"965","type":"text"},{"key":"suspension_time","value":"1","description":"This can either be a valid timestamp, or a float in hours","type":"text"}]},"url":"{{host}}/employee/suspend"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4454"},{"key":"ETag","value":"W/\"1166-FFsZKtcDXyCrIg3utAe1uUBJR3A\""},{"key":"Date","value":"Wed, 28 Apr 2021 16:48:56 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"employee_id\": 965,\n        \"driver_number\": 1,\n        \"first_name\": \"Test\",\n        \"last_name\": \"Company\",\n        \"username\": \"demodriver@test_company\",\n        \"email\": \"testcompany@testcompany.com\",\n        \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n        \"password_hint\": \"pa*****4\",\n        \"hash\": \"rjgtIGdgx\",\n        \"company_id\": 100,\n        \"location_id\": 388582,\n        \"primary_phone_country\": \"US\",\n        \"primary_phone\": \"2222222222\",\n        \"secondary_phone_country\": null,\n        \"secondary_phone\": null,\n        \"is_driver\": 0,\n        \"role_name\": \"driver\",\n        \"is_active\": 0,\n        \"is_deleted\": 0,\n        \"social_security_number\": null,\n        \"date_of_birth\": null,\n        \"base\": {\n            \"base_id_old\": \"\",\n            \"company_id\": 100,\n            \"name\": \"TEST_COMPANY\",\n            \"is_active\": 1,\n            \"is_default\": 1,\n            \"is_deleted\": 0,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"base_id\": 67\n        },\n        \"base_id\": 67,\n        \"old_base_id\": null,\n        \"base_license_number\": null,\n        \"base_fee\": null,\n        \"base_fee_frequency\": null,\n        \"base_fee_last_processed\": null,\n        \"enable_recurring_base_fee\": 0,\n        \"base_fee_start_date\": null,\n        \"hack_license_number\": null,\n        \"hack_license_expiration\": null,\n        \"driver_license_number\": \"Change this\",\n        \"driver_license_expiration\": \"2021-05-27\",\n        \"driver_license_class\": \"D\",\n        \"is_car_owner\": 0,\n        \"dispatch_app_version\": null,\n        \"device_id\": null,\n        \"date_created\": \"2021-04-27 17:53:51\",\n        \"date_updated\": \"2021-04-28 16:48:55\",\n        \"car_type_id\": 255,\n        \"new_car_type_id\": null,\n        \"car_make\": \"Toyota\",\n        \"car_model\": \"Camry\",\n        \"car_year\": 2016,\n        \"car_color\": \"Black\",\n        \"registration_number\": \"Change this\",\n        \"registration_expiration\": \"2021-05-27\",\n        \"registration_owner_name\": \"Demo\",\n        \"license_plate_number\": \"Change this\",\n        \"insurance_policy_number\": \"Change this\",\n        \"insurance_provider_name\": \"Change this\",\n        \"insurance_expiration_date\": \"2021-05-27\",\n        \"tlc_number\": null,\n        \"tlc_expiration_date\": null,\n        \"tlc_inspection_date\": null,\n        \"tlc_inspection_expiration_date\": null,\n        \"on_duty\": 0,\n        \"on_duty_date\": null,\n        \"phone_verified\": null,\n        \"phone_verification_code\": null,\n        \"phone_verified_date\": null,\n        \"picture\": null,\n        \"attributes\": null,\n        \"profile\": null,\n        \"application_approved_date\": null,\n        \"application_approved\": 0,\n        \"number_of_ratings\": 0,\n        \"average_rating\": 0,\n        \"company_commission_data\": {\n            \"commission_flat_rate\": 0,\n            \"commission_percentage\": 0\n        },\n        \"transaction_balance\": 0,\n        \"suspended_until\": null,\n        \"date_unsuspending\": null,\n        \"password_reset_hash\": null,\n        \"password_reset_client_hash\": null,\n        \"password_reset_hash_date\": null,\n        \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n        \"is_suspended\": 0,\n        \"recruiter_entity_id\": null,\n        \"recruiter_entity_type\": null,\n        \"car_vin\": null,\n        \"assigned_to_vehicle_id\": 364,\n        \"parent_employee_id\": null,\n        \"custom_attributes\": null,\n        \"location\": {\n            \"location_id\": 388582,\n            \"address\": \"123 West Ave\",\n            \"address_two\": null,\n            \"city\": \"Brisbane\",\n            \"state\": \"Queensland\",\n            \"postal_code\": \"4178\",\n            \"country\": \"AU\",\n            \"long_name\": \"123 West Ave, Wynnum QLD 4178, Australia\",\n            \"short_name\": \"123 West Ave, Wynnum QLD 4178, Australia\",\n            \"latitude\": -27.4498,\n            \"longitude\": 153.16526,\n            \"date_created\": \"2021-04-27 17:53:49\",\n            \"date_updated\": \"2021-04-27 17:53:49\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"5083b07d66c65bffaa3876fd7c62e790\",\n            \"company_id\": null\n        },\n        \"car_type\": {\n            \"type_id\": 255,\n            \"old_type_id\": null,\n            \"company_id\": 52,\n            \"name\": \"SUV\",\n            \"order\": 30,\n            \"icon\": \"suv.png\",\n            \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n            \"is_active\": 1,\n            \"date_created\": \"2018-08-22 17:36:16\",\n            \"date_updated\": \"2018-08-22 17:36:16\",\n            \"date_deleted\": null\n        },\n        \"assigned_to_vehicle\": {\n            \"vehicle_id\": 364,\n            \"company_id\": 100,\n            \"owner_employee_id\": 965,\n            \"name\": null,\n            \"type_id\": 255,\n            \"make\": \"Toyota\",\n            \"model\": \"Camry\",\n            \"year\": 2016,\n            \"color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration_date\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"inspection_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": 1,\n            \"date_created\": \"2021-04-27 17:53:51\",\n            \"date_updated\": \"2021-04-27 17:53:51\",\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"summary\": \"2016 Black Toyota Camry\",\n            \"car_type\": {\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            }\n        },\n        \"employee_options\": null,\n        \"primary_phone_international\": \"+1 222 222 2222\",\n        \"primary_phone_national\": \"(222) 222-2222\",\n        \"transaction_balace\": 0\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"d8e9c904-23bf-4c2b-863f-3b52b4f0cc5d"},{"name":"Forgot Password","id":"c5e9190c-1e72-4139-9cd5-bc5a966da47d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"},{"key":"x-api-key","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"testcompany@testcompany.com","description":"<p>Must be an email associated with an employee account</p>\n","type":"text"}]},"url":"{{host}}/employee/forgotpassword","urlObject":{"path":["employee","forgotpassword"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"bac19dd5-5de9-4c18-a5cc-0164e2cdd1a6","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"},{"key":"x-api-key","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"testcompany@testcompany.com","description":"Must be an email associated with an employee account","type":"text"}]},"url":"{{host}}/employee/forgotpassword"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"158"},{"key":"ETag","value":"W/\"9e-J4L4IvI92QDbNpo7gKNcEbyGTy8\""},{"key":"Date","value":"Wed, 28 Apr 2021 16:51:18 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"token\": \"4GMyhNbnlINWstiAcDBgWDSQYEk=\",\n        \"expiration_date\": \"2021-04-29 16:51:16\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"c5e9190c-1e72-4139-9cd5-bc5a966da47d"},{"name":"Reset password","id":"072f4088-3093-4b25-bbda-41366f6ec160","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"token","value":"4GMyhNbnlINWstiAcDBgWDSQYEk=","type":"text"},{"key":"password","value":"pass1234","type":"text"},{"key":"passwordConfirm","value":"pass1234","type":"text"}]},"url":"{{host}}/employee/resetpassword","urlObject":{"path":["employee","resetpassword"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"696f03d8-f819-4832-bf5e-ab2a88f972af","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"token","value":"4GMyhNbnlINWstiAcDBgWDSQYEk=","type":"text"},{"key":"password","value":"pass1234","type":"text"},{"key":"passwordConfirm","value":"pass1234","type":"text"}]},"url":"{{host}}/employee/resetpassword"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"80"},{"key":"ETag","value":"W/\"50-Ppc8KH5edetBx90331FzjEzuAdo\""},{"key":"Date","value":"Wed, 28 Apr 2021 16:52:33 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {},\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"072f4088-3093-4b25-bbda-41366f6ec160"}],"id":"92ea6517-0f44-4c9e-b866-f09fd9488cc0","description":"<p>Employees are Administrators, Dispatchers, Drivers etc. </p>\n","_postman_id":"92ea6517-0f44-4c9e-b866-f09fd9488cc0"},{"name":"Job","item":[{"name":"Batch","item":[{"name":"Optimize batched jobs","id":"c945b2ae-26f6-4bd7-8a89-2fc1a8382d19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/batch/optimize?job_ids=2174816&job_ids=2174815&optimize=single_pickup_optimization&start_date=2021-04-28T12:55:00-04:00","urlObject":{"path":["job","batch","optimize"],"host":["{{host}}"],"query":[{"key":"job_ids","value":"2174816"},{"key":"job_ids","value":"2174815"},{"description":{"content":"<p>individual, manual_optimization, single_pickup_optimization</p>\n","type":"text/plain"},"key":"optimize","value":"single_pickup_optimization"},{"key":"start_date","value":"2021-04-28T12:55:00-04:00"}],"variable":[]}},"response":[{"id":"245bf688-8cce-4606-906c-0c9279280c14","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"},{"key":"","value":"","type":"text","disabled":true}],"url":{"raw":"{{host}}/job/batch/optimize?job_ids=2174816&job_ids=2174815&optimize=single_pickup_optimization&start_date=2021-04-28T12:55:00-04:00","host":["{{host}}"],"path":["job","batch","optimize"],"query":[{"key":"job_ids","value":"2174816"},{"key":"job_ids","value":"2174815"},{"key":"optimize","value":"single_pickup_optimization","description":"individual, manual_optimization, single_pickup_optimization"},{"key":"start_date","value":"2021-04-28T12:55:00-04:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"65518"},{"key":"ETag","value":"W/\"ffee-qBuEDn3Ro5LMHFHw5fkcWNoPr50\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:02:01 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"jobs\": [\n            {\n                \"job_id\": 2174816,\n                \"job_number\": 6,\n                \"origin_job_number\": null,\n                \"hash\": \"fgO_1YBkl\",\n                \"user_id\": null,\n                \"contact_name\": null,\n                \"account_id\": null,\n                \"phone_country\": \"US\",\n                \"phone\": \"2222222222\",\n                \"company_id\": 100,\n                \"origin_company_id\": null,\n                \"application_id\": 1000000193,\n                \"driver_id\": null,\n                \"pickup_location_id\": 388586,\n                \"actual_pickup_location_id\": null,\n                \"dropoff_location_id\": 388574,\n                \"actual_dropoff_location_id\": null,\n                \"pickup_location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"pickup_location_name\": null,\n                \"pickup_location_notes\": \"\",\n                \"dropoff_location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"dropoff_location_name\": null,\n                \"pickup_date\": \"2021-04-28 16:54:00\",\n                \"actual_pickup_date\": null,\n                \"dropoff_date\": null,\n                \"car_type_id\": null,\n                \"passengers\": 1,\n                \"status_id\": 1,\n                \"in_progress_date\": null,\n                \"infront_date\": null,\n                \"cancelled_date\": null,\n                \"driver_notes\": \"driver notes\",\n                \"internal_notes\": \"\",\n                \"is_reservation\": 0,\n                \"reservation_confirmation\": null,\n                \"entered_by_employee_id\": 964,\n                \"updated_by_employee_id\": null,\n                \"date_timezone_offset\": 0,\n                \"notify_passenger\": 0,\n                \"passenger_notified_date\": null,\n                \"estimated_price\": 0,\n                \"show_estimated_price\": 0,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"price_override_flag\": 0,\n                \"tip\": 0,\n                \"pricing_data\": null,\n                \"payment_processor\": null,\n                \"payment_method\": \"cash\",\n                \"payment_status\": \"pending\",\n                \"payment_confirmation\": null,\n                \"payment_authorized_amount\": null,\n                \"payment_authorized_date\": null,\n                \"payment_paid_date\": null,\n                \"payment_refunded_amount\": null,\n                \"payment_refunded_date\": null,\n                \"start_date\": null,\n                \"driver_reminded_date\": null,\n                \"date_created\": \"2021-04-28 16:54:19\",\n                \"date_updated\": \"2021-04-28 16:54:40\",\n                \"autodispatch_date\": null,\n                \"autodispatch_config_id\": null,\n                \"exclude_from_autodispatcher\": 0,\n                \"show_contact_details\": 0,\n                \"parent_job_id\": null,\n                \"parent_job_number\": null,\n                \"type\": null,\n                \"optimize\": 0,\n                \"meta\": null,\n                \"driver_rating\": null,\n                \"passenger_rating_notes\": null,\n                \"passenger_rating\": null,\n                \"company_commission_data\": null,\n                \"company_commission\": 0,\n                \"promo_code_id\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"date_capturing\": null,\n                \"price_adjustment\": 0,\n                \"driver_rating_notes\": null,\n                \"payment_source_reference\": null,\n                \"items\": null,\n                \"account_price_adjustment\": null,\n                \"referral_code_id\": null,\n                \"referral_code_reward\": null,\n                \"dispatch_group_id\": \"iNYSKQLxC\",\n                \"dispatch_group_order\": 1,\n                \"dispatch_group_optimization_method\": \"manual_optimization\",\n                \"dispatch_group_data\": {\n                    \"color\": \"#CE2029\",\n                    \"ignore_time_windows\": 0\n                },\n                \"payment_status_cleaning_lock_date\": null,\n                \"payment_completed_by_date\": null,\n                \"payment_completed_by_employee_id\": null,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"external_data\": null,\n                \"external_source\": null,\n                \"external_id\": null,\n                \"attachments\": null,\n                \"payment_type\": null,\n                \"phone_international\": \"+1 222 222 2222\",\n                \"phone_national\": \"(222) 222-2222\",\n                \"dispatch_group_date\": null,\n                \"rnadom\": null,\n                \"payment_confirmation_old\": null,\n                \"vehicle_id\": null,\n                \"total_weight\": null,\n                \"eta_date_last_updated\": null,\n                \"vehicle\": {\n                    \"vehicle_id\": null,\n                    \"company_id\": null,\n                    \"owner_employee_id\": null,\n                    \"name\": null,\n                    \"type_id\": null,\n                    \"make\": null,\n                    \"model\": null,\n                    \"year\": null,\n                    \"color\": null,\n                    \"registration_number\": null,\n                    \"registration_expiration_date\": null,\n                    \"registration_owner_name\": null,\n                    \"license_plate_number\": null,\n                    \"insurance_policy_number\": null,\n                    \"insurance_provider_name\": null,\n                    \"insurance_expiration_date\": null,\n                    \"inspection_expiration_date\": null,\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": null,\n                    \"date_created\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"summary\": \"null null null null\"\n                },\n                \"driver_assigned_to_vehicle\": {\n                    \"vehicle_id\": null,\n                    \"company_id\": null,\n                    \"owner_employee_id\": null,\n                    \"name\": null,\n                    \"type_id\": null,\n                    \"make\": null,\n                    \"model\": null,\n                    \"year\": null,\n                    \"color\": null,\n                    \"registration_number\": null,\n                    \"registration_expiration_date\": null,\n                    \"registration_owner_name\": null,\n                    \"license_plate_number\": null,\n                    \"insurance_policy_number\": null,\n                    \"insurance_provider_name\": null,\n                    \"insurance_expiration_date\": null,\n                    \"inspection_expiration_date\": null,\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": null,\n                    \"date_created\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null\n                },\n                \"vehicle_car_type\": {\n                    \"type_id\": null,\n                    \"old_type_id\": null,\n                    \"company_id\": null,\n                    \"name\": null,\n                    \"order\": null,\n                    \"icon\": null,\n                    \"attributes\": null,\n                    \"is_active\": null,\n                    \"date_created\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null\n                },\n                \"driver_base\": {\n                    \"base_id\": null,\n                    \"name\": null\n                },\n                \"driver_car_type\": {\n                    \"vehicle_id\": null,\n                    \"type_id\": null,\n                    \"old_type_id\": null,\n                    \"company_id\": null,\n                    \"name\": null,\n                    \"order\": null,\n                    \"icon\": null,\n                    \"attributes\": null,\n                    \"is_active\": null,\n                    \"date_created\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null\n                },\n                \"job_status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"application\": {\n                    \"application_id\": 1000000193,\n                    \"name\": \"Dashboard\",\n                    \"role_name\": \"api-public\",\n                    \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                    \"company_id\": 100,\n                    \"base_id\": 67,\n                    \"is_active\": 1,\n                    \"icon\": null,\n                    \"type\": \"dashboard\",\n                    \"is_internal\": 1,\n                    \"date_created\": \"2021-04-27 17:53:50\",\n                    \"date_updated\": \"2021-04-27 17:53:50\",\n                    \"eula\": null,\n                    \"meta\": null\n                },\n                \"employee\": {\n                    \"employee_id\": 964,\n                    \"first_name\": \"LD\",\n                    \"last_name\": \"Admin\",\n                    \"email\": \"info@liverydesk.com\",\n                    \"company_id\": 100,\n                    \"primary_phone_international\": null,\n                    \"primary_phone_national\": null,\n                    \"transaction_balace\": 0,\n                    \"company_commission_data\": {\n                        \"commission_flat_rate\": 0,\n                        \"commission_percentage\": 0\n                    }\n                },\n                \"job_options\": null,\n                \"car_types\": null,\n                \"promo_code\": {\n                    \"promo_code_id\": null,\n                    \"company_id\": null,\n                    \"code\": null,\n                    \"active\": null,\n                    \"minimum_price\": null,\n                    \"max_uses\": null,\n                    \"uses\": null,\n                    \"uses_per_user\": null,\n                    \"discount_amount\": null,\n                    \"discount_percentage\": null,\n                    \"activation_date\": null,\n                    \"expiration_date\": null,\n                    \"date_created\": null,\n                    \"location\": null,\n                    \"restricted_to_user_id\": null,\n                    \"owned_by_user_id\": null,\n                    \"description\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null\n                },\n                \"referral_code\": {\n                    \"referral_code_id\": null,\n                    \"company_id\": null,\n                    \"name\": null,\n                    \"owner_entity_type\": null,\n                    \"owner_entity_id\": null,\n                    \"reward_flat_rate\": null,\n                    \"reward_percentage\": null,\n                    \"description\": null,\n                    \"is_active\": null,\n                    \"date_created\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null,\n                    \"money_responsibility\": null,\n                    \"code\": null,\n                    \"type\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"pricing_summary\": {\n                    \"estimated_price\": 0,\n                    \"suggested_actual_price\": 0,\n                    \"actual_price\": 0,\n                    \"payment_authorized_amount\": null,\n                    \"payment_refunded_amount\": null,\n                    \"total_distance_meters\": 0,\n                    \"total_duration_seconds\": 0,\n                    \"total_wait_fee\": 0,\n                    \"total_cancellation_fee\": 0,\n                    \"sub_total\": 0,\n                    \"customer_credit_amount_used\": null,\n                    \"payment_captured_amount\": null,\n                    \"undiscounted_suggested_price\": 0,\n                    \"discount_amount\": 0,\n                    \"total\": 0,\n                    \"payment_summary\": \"Cash\"\n                },\n                \"share_url\": \"https://tracker.protected.site/webbooker/track/fgO_1YBkl\",\n                \"payment_instructions\": {\n                    \"collect_payment\": false\n                },\n                \"stops\": [\n                    {\n                        \"job_stop_id\": 3909321,\n                        \"company_id\": 100,\n                        \"job_id\": 2174816,\n                        \"location_id\": 388586,\n                        \"actual_location_id\": null,\n                        \"user_id\": null,\n                        \"type\": \"pickup\",\n                        \"meta\": null,\n                        \"status_id\": 1,\n                        \"arrival_date\": \"2021-04-28 16:54:00\",\n                        \"actual_arrival_date\": null,\n                        \"in_progress_date\": null,\n                        \"completed_date\": null,\n                        \"cancelled_date\": null,\n                        \"contact_phone_country\": null,\n                        \"contact_phone\": null,\n                        \"contact_name\": null,\n                        \"notes\": null,\n                        \"driver_notes\": null,\n                        \"internal_notes\": null,\n                        \"order\": 1,\n                        \"attachments\": null,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"date_deleted\": null,\n                        \"distance_to_next_stop_meters\": 5232,\n                        \"duration_to_next_stop_seconds\": 865,\n                        \"distance_from_previous_stop_meters\": 0,\n                        \"duration_from_previous_stop_seconds\": 0,\n                        \"wait_time_seconds\": null,\n                        \"total_duration_seconds\": null,\n                        \"return_stop_id\": null,\n                        \"recipient\": null,\n                        \"apartment_number\": null,\n                        \"cancellation_reason\": null,\n                        \"contact_phone_international\": null,\n                        \"contact_phone_national\": null,\n                        \"dispatch_group_order\": null,\n                        \"skip_stop\": 0,\n                        \"time_window_end_time\": null,\n                        \"time_window_start_time\": null,\n                        \"time_window_waiting_time_seconds\": null,\n                        \"ignore_time_windows\": 0,\n                        \"routing_data\": \"null\",\n                        \"estimated_departure_date\": null,\n                        \"estimated_arrival_date\": null,\n                        \"location\": {\n                            \"location_id\": 388586,\n                            \"address\": \"385 Metropolitan Ave\",\n                            \"address_two\": null,\n                            \"city\": \"Brooklyn\",\n                            \"state\": \"New York\",\n                            \"postal_code\": \"11211\",\n                            \"country\": \"US\",\n                            \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                            \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                            \"latitude\": 40.71407,\n                            \"longitude\": -73.95536,\n                            \"date_created\": \"2021-04-27 21:32:35\",\n                            \"date_updated\": \"2021-04-27 21:32:35\",\n                            \"place_id\": null,\n                            \"apartment_number\": null,\n                            \"types\": [\n                                \"point\"\n                            ],\n                            \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                            \"company_id\": null\n                        },\n                        \"status\": {\n                            \"status_id\": 1,\n                            \"name\": \"Pending\",\n                            \"slug\": \"pending\",\n                            \"order\": 10\n                        },\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"place_id\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\"\n                    },\n                    {\n                        \"job_stop_id\": 3909323,\n                        \"company_id\": 100,\n                        \"job_id\": 2174816,\n                        \"location_id\": 388574,\n                        \"actual_location_id\": null,\n                        \"user_id\": null,\n                        \"type\": \"dropoff\",\n                        \"meta\": null,\n                        \"status_id\": 1,\n                        \"arrival_date\": \"2021-04-28 20:54:00\",\n                        \"actual_arrival_date\": null,\n                        \"in_progress_date\": null,\n                        \"completed_date\": null,\n                        \"cancelled_date\": null,\n                        \"contact_phone_country\": null,\n                        \"contact_phone\": null,\n                        \"contact_name\": null,\n                        \"notes\": null,\n                        \"driver_notes\": null,\n                        \"internal_notes\": null,\n                        \"order\": 2,\n                        \"attachments\": null,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"date_deleted\": null,\n                        \"distance_to_next_stop_meters\": 5568,\n                        \"duration_to_next_stop_seconds\": 947,\n                        \"distance_from_previous_stop_meters\": 5232,\n                        \"duration_from_previous_stop_seconds\": 865,\n                        \"wait_time_seconds\": null,\n                        \"total_duration_seconds\": null,\n                        \"return_stop_id\": null,\n                        \"recipient\": null,\n                        \"apartment_number\": null,\n                        \"cancellation_reason\": null,\n                        \"contact_phone_international\": null,\n                        \"contact_phone_national\": null,\n                        \"dispatch_group_order\": null,\n                        \"skip_stop\": 0,\n                        \"time_window_end_time\": null,\n                        \"time_window_start_time\": null,\n                        \"time_window_waiting_time_seconds\": null,\n                        \"ignore_time_windows\": 0,\n                        \"routing_data\": {\n                            \"id\": \"0\",\n                            \"lat\": 40.68864,\n                            \"lng\": -73.9835,\n                            \"sequence\": 1,\n                            \"estimatedArrival\": \"2021-04-28T13:04:25-04:00\",\n                            \"estimatedDeparture\": \"2021-04-28T13:09:25-04:00\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\",\n                                \"before:destination1\"\n                            ],\n                            \"fromWaypoint\": \"origin\",\n                            \"toWaypoint\": \"0\",\n                            \"distance\": 5232,\n                            \"time\": 565,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"estimated_departure_date\": null,\n                        \"estimated_arrival_date\": null,\n                        \"location\": {\n                            \"location_id\": 388574,\n                            \"address\": \"33 Bond St\",\n                            \"address_two\": null,\n                            \"city\": \"Brooklyn\",\n                            \"state\": \"New York\",\n                            \"postal_code\": \"11201\",\n                            \"country\": \"US\",\n                            \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                            \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                            \"latitude\": 40.68864,\n                            \"longitude\": -73.9835,\n                            \"date_created\": \"2021-03-09 20:40:53\",\n                            \"date_updated\": \"2021-03-09 20:40:53\",\n                            \"place_id\": null,\n                            \"apartment_number\": null,\n                            \"types\": [\n                                \"point\"\n                            ],\n                            \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                            \"company_id\": null\n                        },\n                        \"status\": {\n                            \"status_id\": 1,\n                            \"name\": \"Pending\",\n                            \"slug\": \"pending\",\n                            \"order\": 10\n                        },\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"place_id\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"original_index\": \"0\"\n                    }\n                ],\n                \"current_stop\": {\n                    \"job_stop_id\": 3909321,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 16:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"null\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"place_id\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\"\n                },\n                \"next_stop\": {\n                    \"job_stop_id\": 3909323,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388574,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 20:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5568,\n                    \"duration_to_next_stop_seconds\": 947,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": {\n                        \"id\": \"0\",\n                        \"lat\": 40.68864,\n                        \"lng\": -73.9835,\n                        \"sequence\": 1,\n                        \"estimatedArrival\": \"2021-04-28T13:04:25-04:00\",\n                        \"estimatedDeparture\": \"2021-04-28T13:09:25-04:00\",\n                        \"fulfilledConstraints\": [\n                            \"st:300\",\n                            \"before:destination1\"\n                        ],\n                        \"fromWaypoint\": \"origin\",\n                        \"toWaypoint\": \"0\",\n                        \"distance\": 5232,\n                        \"time\": 565,\n                        \"rest\": 0,\n                        \"waiting\": 0\n                    },\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"place_id\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"original_index\": \"0\"\n                },\n                \"previous_stop\": null\n            },\n            {\n                \"job_id\": 2174815,\n                \"job_number\": 5,\n                \"origin_job_number\": null,\n                \"hash\": \"CNFxpq-Ko\",\n                \"user_id\": null,\n                \"contact_name\": null,\n                \"account_id\": null,\n                \"phone_country\": \"US\",\n                \"phone\": \"2222222222\",\n                \"company_id\": 100,\n                \"origin_company_id\": null,\n                \"application_id\": 1000000193,\n                \"driver_id\": null,\n                \"pickup_location_id\": 388586,\n                \"actual_pickup_location_id\": null,\n                \"dropoff_location_id\": 388587,\n                \"actual_dropoff_location_id\": null,\n                \"pickup_location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"pickup_location_name\": null,\n                \"pickup_location_notes\": \"\",\n                \"dropoff_location\": {\n                    \"location_id\": 388587,\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                    \"company_id\": null\n                },\n                \"dropoff_location_name\": null,\n                \"pickup_date\": \"2021-04-28 16:54:10\",\n                \"actual_pickup_date\": null,\n                \"dropoff_date\": null,\n                \"car_type_id\": null,\n                \"passengers\": 1,\n                \"status_id\": 1,\n                \"in_progress_date\": null,\n                \"infront_date\": null,\n                \"cancelled_date\": null,\n                \"driver_notes\": \"driver notes\",\n                \"internal_notes\": \"\",\n                \"is_reservation\": 0,\n                \"reservation_confirmation\": null,\n                \"entered_by_employee_id\": 964,\n                \"updated_by_employee_id\": null,\n                \"date_timezone_offset\": 0,\n                \"notify_passenger\": 0,\n                \"passenger_notified_date\": null,\n                \"estimated_price\": null,\n                \"show_estimated_price\": 0,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"price_override_flag\": 0,\n                \"tip\": 0,\n                \"pricing_data\": null,\n                \"payment_processor\": null,\n                \"payment_method\": \"cash\",\n                \"payment_status\": \"pending\",\n                \"payment_confirmation\": null,\n                \"payment_authorized_amount\": null,\n                \"payment_authorized_date\": null,\n                \"payment_paid_date\": null,\n                \"payment_refunded_amount\": null,\n                \"payment_refunded_date\": null,\n                \"start_date\": null,\n                \"driver_reminded_date\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 16:54:10\",\n                \"autodispatch_date\": null,\n                \"autodispatch_config_id\": null,\n                \"exclude_from_autodispatcher\": 0,\n                \"show_contact_details\": 0,\n                \"parent_job_id\": null,\n                \"parent_job_number\": null,\n                \"type\": null,\n                \"optimize\": 0,\n                \"meta\": null,\n                \"driver_rating\": null,\n                \"passenger_rating_notes\": null,\n                \"passenger_rating\": null,\n                \"company_commission_data\": null,\n                \"company_commission\": 0,\n                \"promo_code_id\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"date_capturing\": null,\n                \"price_adjustment\": 0,\n                \"driver_rating_notes\": null,\n                \"payment_source_reference\": null,\n                \"items\": null,\n                \"account_price_adjustment\": null,\n                \"referral_code_id\": null,\n                \"referral_code_reward\": null,\n                \"dispatch_group_id\": \"iNYSKQLxC\",\n                \"dispatch_group_order\": 2,\n                \"dispatch_group_optimization_method\": \"manual_optimization\",\n                \"dispatch_group_data\": {\n                    \"color\": \"#CE2029\",\n                    \"ignore_time_windows\": 0\n                },\n                \"payment_status_cleaning_lock_date\": null,\n                \"payment_completed_by_date\": null,\n                \"payment_completed_by_employee_id\": null,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"external_data\": null,\n                \"external_source\": null,\n                \"external_id\": null,\n                \"attachments\": null,\n                \"payment_type\": null,\n                \"phone_international\": \"+1 222 222 2222\",\n                \"phone_national\": \"(222) 222-2222\",\n                \"dispatch_group_date\": null,\n                \"rnadom\": null,\n                \"payment_confirmation_old\": null,\n                \"vehicle_id\": null,\n                \"total_weight\": null,\n                \"eta_date_last_updated\": null,\n                \"vehicle\": {\n                    \"vehicle_id\": null,\n                    \"company_id\": null,\n                    \"owner_employee_id\": null,\n                    \"name\": null,\n                    \"type_id\": null,\n                    \"make\": null,\n                    \"model\": null,\n                    \"year\": null,\n                    \"color\": null,\n                    \"registration_number\": null,\n                    \"registration_expiration_date\": null,\n                    \"registration_owner_name\": null,\n                    \"license_plate_number\": null,\n                    \"insurance_policy_number\": null,\n                    \"insurance_provider_name\": null,\n                    \"insurance_expiration_date\": null,\n                    \"inspection_expiration_date\": null,\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": null,\n                    \"date_created\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"summary\": \"null null null null\"\n                },\n                \"driver_assigned_to_vehicle\": {\n                    \"vehicle_id\": null,\n                    \"company_id\": null,\n                    \"owner_employee_id\": null,\n                    \"name\": null,\n                    \"type_id\": null,\n                    \"make\": null,\n                    \"model\": null,\n                    \"year\": null,\n                    \"color\": null,\n                    \"registration_number\": null,\n                    \"registration_expiration_date\": null,\n                    \"registration_owner_name\": null,\n                    \"license_plate_number\": null,\n                    \"insurance_policy_number\": null,\n                    \"insurance_provider_name\": null,\n                    \"insurance_expiration_date\": null,\n                    \"inspection_expiration_date\": null,\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": null,\n                    \"date_created\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null\n                },\n                \"vehicle_car_type\": {\n                    \"type_id\": null,\n                    \"old_type_id\": null,\n                    \"company_id\": null,\n                    \"name\": null,\n                    \"order\": null,\n                    \"icon\": null,\n                    \"attributes\": null,\n                    \"is_active\": null,\n                    \"date_created\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null\n                },\n                \"driver_base\": {\n                    \"base_id\": null,\n                    \"name\": null\n                },\n                \"driver_car_type\": {\n                    \"vehicle_id\": null,\n                    \"type_id\": null,\n                    \"old_type_id\": null,\n                    \"company_id\": null,\n                    \"name\": null,\n                    \"order\": null,\n                    \"icon\": null,\n                    \"attributes\": null,\n                    \"is_active\": null,\n                    \"date_created\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null\n                },\n                \"job_status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"application\": {\n                    \"application_id\": 1000000193,\n                    \"name\": \"Dashboard\",\n                    \"role_name\": \"api-public\",\n                    \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                    \"company_id\": 100,\n                    \"base_id\": 67,\n                    \"is_active\": 1,\n                    \"icon\": null,\n                    \"type\": \"dashboard\",\n                    \"is_internal\": 1,\n                    \"date_created\": \"2021-04-27 17:53:50\",\n                    \"date_updated\": \"2021-04-27 17:53:50\",\n                    \"eula\": null,\n                    \"meta\": null\n                },\n                \"employee\": {\n                    \"employee_id\": 964,\n                    \"first_name\": \"LD\",\n                    \"last_name\": \"Admin\",\n                    \"email\": \"info@liverydesk.com\",\n                    \"company_id\": 100,\n                    \"primary_phone_international\": null,\n                    \"primary_phone_national\": null,\n                    \"transaction_balace\": 0,\n                    \"company_commission_data\": {\n                        \"commission_flat_rate\": 0,\n                        \"commission_percentage\": 0\n                    }\n                },\n                \"job_options\": null,\n                \"car_types\": null,\n                \"promo_code\": {\n                    \"promo_code_id\": null,\n                    \"company_id\": null,\n                    \"code\": null,\n                    \"active\": null,\n                    \"minimum_price\": null,\n                    \"max_uses\": null,\n                    \"uses\": null,\n                    \"uses_per_user\": null,\n                    \"discount_amount\": null,\n                    \"discount_percentage\": null,\n                    \"activation_date\": null,\n                    \"expiration_date\": null,\n                    \"date_created\": null,\n                    \"location\": null,\n                    \"restricted_to_user_id\": null,\n                    \"owned_by_user_id\": null,\n                    \"description\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null\n                },\n                \"referral_code\": {\n                    \"referral_code_id\": null,\n                    \"company_id\": null,\n                    \"name\": null,\n                    \"owner_entity_type\": null,\n                    \"owner_entity_id\": null,\n                    \"reward_flat_rate\": null,\n                    \"reward_percentage\": null,\n                    \"description\": null,\n                    \"is_active\": null,\n                    \"date_created\": null,\n                    \"date_updated\": null,\n                    \"date_deleted\": null,\n                    \"money_responsibility\": null,\n                    \"code\": null,\n                    \"type\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"pricing_summary\": {\n                    \"estimated_price\": null,\n                    \"suggested_actual_price\": 0,\n                    \"actual_price\": 0,\n                    \"payment_authorized_amount\": null,\n                    \"payment_refunded_amount\": null,\n                    \"total_distance_meters\": 0,\n                    \"total_duration_seconds\": 0,\n                    \"total_wait_fee\": 0,\n                    \"total_cancellation_fee\": 0,\n                    \"sub_total\": 0,\n                    \"customer_credit_amount_used\": null,\n                    \"payment_captured_amount\": null,\n                    \"undiscounted_suggested_price\": 0,\n                    \"discount_amount\": 0,\n                    \"total\": 0,\n                    \"payment_summary\": \"Cash\"\n                },\n                \"share_url\": \"https://tracker.protected.site/webbooker/track/CNFxpq-Ko\",\n                \"payment_instructions\": {\n                    \"collect_payment\": false\n                },\n                \"stops\": [\n                    {\n                        \"job_stop_id\": 3909320,\n                        \"company_id\": 100,\n                        \"job_id\": 2174815,\n                        \"location_id\": 388586,\n                        \"actual_location_id\": null,\n                        \"user_id\": null,\n                        \"type\": \"pickup\",\n                        \"meta\": null,\n                        \"status_id\": 1,\n                        \"arrival_date\": \"2021-04-29 00:54:09\",\n                        \"actual_arrival_date\": null,\n                        \"in_progress_date\": null,\n                        \"completed_date\": null,\n                        \"cancelled_date\": null,\n                        \"contact_phone_country\": null,\n                        \"contact_phone\": null,\n                        \"contact_name\": null,\n                        \"notes\": null,\n                        \"driver_notes\": null,\n                        \"internal_notes\": null,\n                        \"order\": 3,\n                        \"attachments\": null,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"date_deleted\": null,\n                        \"distance_to_next_stop_meters\": 196205,\n                        \"duration_to_next_stop_seconds\": 9121,\n                        \"distance_from_previous_stop_meters\": 5568,\n                        \"duration_from_previous_stop_seconds\": 947,\n                        \"wait_time_seconds\": null,\n                        \"total_duration_seconds\": null,\n                        \"return_stop_id\": null,\n                        \"recipient\": null,\n                        \"apartment_number\": null,\n                        \"cancellation_reason\": null,\n                        \"contact_phone_international\": null,\n                        \"contact_phone_national\": null,\n                        \"dispatch_group_order\": null,\n                        \"skip_stop\": 0,\n                        \"time_window_end_time\": null,\n                        \"time_window_start_time\": null,\n                        \"time_window_waiting_time_seconds\": null,\n                        \"ignore_time_windows\": 0,\n                        \"routing_data\": {\n                            \"id\": \"1\",\n                            \"lat\": 40.71407,\n                            \"lng\": -73.95536,\n                            \"sequence\": 2,\n                            \"estimatedArrival\": \"2021-04-28T13:20:12-04:00\",\n                            \"estimatedDeparture\": \"2021-04-28T13:25:12-04:00\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\"\n                            ],\n                            \"fromWaypoint\": \"0\",\n                            \"toWaypoint\": \"1\",\n                            \"distance\": 5568,\n                            \"time\": 647,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"estimated_departure_date\": null,\n                        \"estimated_arrival_date\": null,\n                        \"location\": {\n                            \"location_id\": 388586,\n                            \"address\": \"385 Metropolitan Ave\",\n                            \"address_two\": null,\n                            \"city\": \"Brooklyn\",\n                            \"state\": \"New York\",\n                            \"postal_code\": \"11211\",\n                            \"country\": \"US\",\n                            \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                            \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                            \"latitude\": 40.71407,\n                            \"longitude\": -73.95536,\n                            \"date_created\": \"2021-04-27 21:32:35\",\n                            \"date_updated\": \"2021-04-27 21:32:35\",\n                            \"place_id\": null,\n                            \"apartment_number\": null,\n                            \"types\": [\n                                \"point\"\n                            ],\n                            \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                            \"company_id\": null\n                        },\n                        \"status\": {\n                            \"status_id\": 1,\n                            \"name\": \"Pending\",\n                            \"slug\": \"pending\",\n                            \"order\": 10\n                        },\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"place_id\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"original_index\": \"1\"\n                    },\n                    {\n                        \"job_stop_id\": 3909319,\n                        \"company_id\": 100,\n                        \"job_id\": 2174815,\n                        \"location_id\": 388587,\n                        \"actual_location_id\": null,\n                        \"user_id\": null,\n                        \"type\": \"dropoff\",\n                        \"meta\": null,\n                        \"status_id\": 1,\n                        \"arrival_date\": \"2021-04-29 00:54:09\",\n                        \"actual_arrival_date\": null,\n                        \"in_progress_date\": null,\n                        \"completed_date\": null,\n                        \"cancelled_date\": null,\n                        \"contact_phone_country\": null,\n                        \"contact_phone\": null,\n                        \"contact_name\": null,\n                        \"notes\": null,\n                        \"driver_notes\": null,\n                        \"internal_notes\": null,\n                        \"order\": 4,\n                        \"attachments\": null,\n                        \"date_created\": \"2021-04-27 21:32:36\",\n                        \"date_updated\": \"2021-04-27 21:32:36\",\n                        \"date_deleted\": null,\n                        \"distance_to_next_stop_meters\": 0,\n                        \"duration_to_next_stop_seconds\": 0,\n                        \"distance_from_previous_stop_meters\": 196205,\n                        \"duration_from_previous_stop_seconds\": 9121,\n                        \"wait_time_seconds\": null,\n                        \"total_duration_seconds\": null,\n                        \"return_stop_id\": null,\n                        \"recipient\": null,\n                        \"apartment_number\": null,\n                        \"cancellation_reason\": null,\n                        \"contact_phone_international\": null,\n                        \"contact_phone_national\": null,\n                        \"dispatch_group_order\": null,\n                        \"skip_stop\": 0,\n                        \"time_window_end_time\": null,\n                        \"time_window_start_time\": null,\n                        \"time_window_waiting_time_seconds\": null,\n                        \"ignore_time_windows\": 0,\n                        \"routing_data\": {\n                            \"id\": \"destination\",\n                            \"lat\": 41.77357,\n                            \"lng\": -72.87228,\n                            \"sequence\": 3,\n                            \"estimatedArrival\": \"2021-04-28T15:52:13-04:00\",\n                            \"estimatedDeparture\": null,\n                            \"fulfilledConstraints\": [\n                                \"st:300\"\n                            ],\n                            \"fromWaypoint\": \"1\",\n                            \"toWaypoint\": \"destination\",\n                            \"distance\": 196205,\n                            \"time\": 8821,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"estimated_departure_date\": null,\n                        \"estimated_arrival_date\": null,\n                        \"location\": {\n                            \"location_id\": 388587,\n                            \"address\": \"231 Haynes Rd\",\n                            \"address_two\": null,\n                            \"city\": \"Avon\",\n                            \"state\": \"Connecticut\",\n                            \"postal_code\": \"06001\",\n                            \"country\": \"US\",\n                            \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                            \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                            \"latitude\": 41.77357,\n                            \"longitude\": -72.87228,\n                            \"date_created\": \"2021-04-27 21:32:36\",\n                            \"date_updated\": \"2021-04-27 21:32:36\",\n                            \"place_id\": null,\n                            \"apartment_number\": null,\n                            \"types\": [\n                                \"point\"\n                            ],\n                            \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                            \"company_id\": null\n                        },\n                        \"status\": {\n                            \"status_id\": 1,\n                            \"name\": \"Pending\",\n                            \"slug\": \"pending\",\n                            \"order\": 10\n                        },\n                        \"address\": \"231 Haynes Rd\",\n                        \"address_two\": null,\n                        \"city\": \"Avon\",\n                        \"state\": \"Connecticut\",\n                        \"postal_code\": \"06001\",\n                        \"country\": \"US\",\n                        \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"latitude\": 41.77357,\n                        \"longitude\": -72.87228,\n                        \"place_id\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\"\n                    }\n                ],\n                \"current_stop\": {\n                    \"job_stop_id\": 3909320,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 3,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 196205,\n                    \"duration_to_next_stop_seconds\": 9121,\n                    \"distance_from_previous_stop_meters\": 5568,\n                    \"duration_from_previous_stop_seconds\": 947,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": {\n                        \"id\": \"1\",\n                        \"lat\": 40.71407,\n                        \"lng\": -73.95536,\n                        \"sequence\": 2,\n                        \"estimatedArrival\": \"2021-04-28T13:20:12-04:00\",\n                        \"estimatedDeparture\": \"2021-04-28T13:25:12-04:00\",\n                        \"fulfilledConstraints\": [\n                            \"st:300\"\n                        ],\n                        \"fromWaypoint\": \"0\",\n                        \"toWaypoint\": \"1\",\n                        \"distance\": 5568,\n                        \"time\": 647,\n                        \"rest\": 0,\n                        \"waiting\": 0\n                    },\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"place_id\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"original_index\": \"1\"\n                },\n                \"next_stop\": {\n                    \"job_stop_id\": 3909319,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388587,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 4,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 196205,\n                    \"duration_from_previous_stop_seconds\": 9121,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": {\n                        \"id\": \"destination\",\n                        \"lat\": 41.77357,\n                        \"lng\": -72.87228,\n                        \"sequence\": 3,\n                        \"estimatedArrival\": \"2021-04-28T15:52:13-04:00\",\n                        \"estimatedDeparture\": null,\n                        \"fulfilledConstraints\": [\n                            \"st:300\"\n                        ],\n                        \"fromWaypoint\": \"1\",\n                        \"toWaypoint\": \"destination\",\n                        \"distance\": 196205,\n                        \"time\": 8821,\n                        \"rest\": 0,\n                        \"waiting\": 0\n                    },\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388587,\n                        \"address\": \"231 Haynes Rd\",\n                        \"address_two\": null,\n                        \"city\": \"Avon\",\n                        \"state\": \"Connecticut\",\n                        \"postal_code\": \"06001\",\n                        \"country\": \"US\",\n                        \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"latitude\": 41.77357,\n                        \"longitude\": -72.87228,\n                        \"date_created\": \"2021-04-27 21:32:36\",\n                        \"date_updated\": \"2021-04-27 21:32:36\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"place_id\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\"\n                },\n                \"previous_stop\": null\n            }\n        ],\n        \"directions\": {\n            \"routes\": [\n                {\n                    \"legs\": [\n                        {\n                            \"distance\": {\n                                \"text\": \"3.3 mi\",\n                                \"value\": 5232\n                            },\n                            \"duration\": {\n                                \"text\": \"14 minutes\",\n                                \"value\": 865\n                            },\n                            \"end_address\": \"\",\n                            \"end_location\": {\n                                \"lat\": 40.6887348,\n                                \"lng\": -73.983437\n                            },\n                            \"start_address\": \"\",\n                            \"start_location\": {\n                                \"lat\": 40.714066,\n                                \"lng\": -73.9552617\n                            },\n                            \"steps\": [\n                                {\n                                    \"distance\": {\n                                        \"text\": \"472 ft\",\n                                        \"value\": 144\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 29\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Marcy Ave</b> toward <b><b>I-278 W</b></b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"2.17 mi\",\n                                        \"value\": 3494\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"3 minutes\",\n                                        \"value\": 201\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> and take ramp onto <b>I-278 W</b> <b>(Brooklyn Queens Expy)</b> toward <b><b>Bklyn-Qns Expwy</b>/<b>Staten Is</b></b>\",\n                                    \"maneuver\": \"ramp-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.31 mi\",\n                                        \"value\": 504\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 111\n                                    },\n                                    \"html_instructions\": \"Take exit <b>29</b> toward <b><b>Tillary St</b>/<b>Manhattan Br</b>/<b>Bklyn Civic Center</b></b> onto <b>Tillary St</b>\",\n                                    \"maneuver\": \"ramp-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.46 mi\",\n                                        \"value\": 748\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"2 minutes\",\n                                        \"value\": 143\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Flatbush Ave Ext</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"331 ft\",\n                                        \"value\": 101\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 19\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>De Kalb Ave</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"488 ft\",\n                                        \"value\": 149\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 32\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Bond St</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"42 ft\",\n                                        \"value\": 13\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 2\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Livingston St</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                }\n                            ],\n                            \"traffic_speed_entry\": [],\n                            \"via_waypoint\": [],\n                            \"start_stop\": {\n                                \"job_stop_id\": 3909321,\n                                \"company_id\": 100,\n                                \"job_id\": 2174816,\n                                \"location_id\": 388586,\n                                \"actual_location_id\": null,\n                                \"user_id\": null,\n                                \"type\": \"pickup\",\n                                \"meta\": null,\n                                \"status_id\": 1,\n                                \"arrival_date\": \"2021-04-28 16:54:00\",\n                                \"actual_arrival_date\": null,\n                                \"in_progress_date\": null,\n                                \"completed_date\": null,\n                                \"cancelled_date\": null,\n                                \"contact_phone_country\": null,\n                                \"contact_phone\": null,\n                                \"contact_name\": null,\n                                \"notes\": null,\n                                \"driver_notes\": null,\n                                \"internal_notes\": null,\n                                \"order\": 1,\n                                \"attachments\": null,\n                                \"date_created\": \"2021-04-27 21:32:35\",\n                                \"date_updated\": \"2021-04-27 21:32:35\",\n                                \"date_deleted\": null,\n                                \"distance_to_next_stop_meters\": 5232,\n                                \"duration_to_next_stop_seconds\": 865,\n                                \"distance_from_previous_stop_meters\": 0,\n                                \"duration_from_previous_stop_seconds\": 0,\n                                \"wait_time_seconds\": null,\n                                \"total_duration_seconds\": null,\n                                \"return_stop_id\": null,\n                                \"recipient\": null,\n                                \"apartment_number\": null,\n                                \"cancellation_reason\": null,\n                                \"contact_phone_international\": null,\n                                \"contact_phone_national\": null,\n                                \"dispatch_group_order\": null,\n                                \"skip_stop\": 0,\n                                \"time_window_end_time\": null,\n                                \"time_window_start_time\": null,\n                                \"time_window_waiting_time_seconds\": null,\n                                \"ignore_time_windows\": 0,\n                                \"routing_data\": \"null\",\n                                \"estimated_departure_date\": null,\n                                \"estimated_arrival_date\": null,\n                                \"location\": {\n                                    \"location_id\": 388586,\n                                    \"address\": \"385 Metropolitan Ave\",\n                                    \"address_two\": null,\n                                    \"city\": \"Brooklyn\",\n                                    \"state\": \"New York\",\n                                    \"postal_code\": \"11211\",\n                                    \"country\": \"US\",\n                                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                    \"latitude\": 40.71407,\n                                    \"longitude\": -73.95536,\n                                    \"date_created\": \"2021-04-27 21:32:35\",\n                                    \"date_updated\": \"2021-04-27 21:32:35\",\n                                    \"place_id\": null,\n                                    \"apartment_number\": null,\n                                    \"types\": [\n                                        \"point\"\n                                    ],\n                                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                                    \"company_id\": null\n                                },\n                                \"status\": {\n                                    \"status_id\": 1,\n                                    \"name\": \"Pending\",\n                                    \"slug\": \"pending\",\n                                    \"order\": 10\n                                },\n                                \"address\": \"385 Metropolitan Ave\",\n                                \"address_two\": null,\n                                \"city\": \"Brooklyn\",\n                                \"state\": \"New York\",\n                                \"postal_code\": \"11211\",\n                                \"country\": \"US\",\n                                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                \"latitude\": 40.71407,\n                                \"longitude\": -73.95536,\n                                \"place_id\": null,\n                                \"types\": [\n                                    \"point\"\n                                ],\n                                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\"\n                            },\n                            \"end_stop\": {\n                                \"job_stop_id\": 3909323,\n                                \"company_id\": 100,\n                                \"job_id\": 2174816,\n                                \"location_id\": 388574,\n                                \"actual_location_id\": null,\n                                \"user_id\": null,\n                                \"type\": \"dropoff\",\n                                \"meta\": null,\n                                \"status_id\": 1,\n                                \"arrival_date\": \"2021-04-28 20:54:00\",\n                                \"actual_arrival_date\": null,\n                                \"in_progress_date\": null,\n                                \"completed_date\": null,\n                                \"cancelled_date\": null,\n                                \"contact_phone_country\": null,\n                                \"contact_phone\": null,\n                                \"contact_name\": null,\n                                \"notes\": null,\n                                \"driver_notes\": null,\n                                \"internal_notes\": null,\n                                \"order\": 2,\n                                \"attachments\": null,\n                                \"date_created\": \"2021-03-09 20:40:53\",\n                                \"date_updated\": \"2021-03-09 20:40:53\",\n                                \"date_deleted\": null,\n                                \"distance_to_next_stop_meters\": 5568,\n                                \"duration_to_next_stop_seconds\": 947,\n                                \"distance_from_previous_stop_meters\": 5232,\n                                \"duration_from_previous_stop_seconds\": 865,\n                                \"wait_time_seconds\": null,\n                                \"total_duration_seconds\": null,\n                                \"return_stop_id\": null,\n                                \"recipient\": null,\n                                \"apartment_number\": null,\n                                \"cancellation_reason\": null,\n                                \"contact_phone_international\": null,\n                                \"contact_phone_national\": null,\n                                \"dispatch_group_order\": null,\n                                \"skip_stop\": 0,\n                                \"time_window_end_time\": null,\n                                \"time_window_start_time\": null,\n                                \"time_window_waiting_time_seconds\": null,\n                                \"ignore_time_windows\": 0,\n                                \"routing_data\": {\n                                    \"id\": \"0\",\n                                    \"lat\": 40.68864,\n                                    \"lng\": -73.9835,\n                                    \"sequence\": 1,\n                                    \"estimatedArrival\": \"2021-04-28T13:04:25-04:00\",\n                                    \"estimatedDeparture\": \"2021-04-28T13:09:25-04:00\",\n                                    \"fulfilledConstraints\": [\n                                        \"st:300\",\n                                        \"before:destination1\"\n                                    ],\n                                    \"fromWaypoint\": \"origin\",\n                                    \"toWaypoint\": \"0\",\n                                    \"distance\": 5232,\n                                    \"time\": 565,\n                                    \"rest\": 0,\n                                    \"waiting\": 0\n                                },\n                                \"estimated_departure_date\": null,\n                                \"estimated_arrival_date\": null,\n                                \"location\": {\n                                    \"location_id\": 388574,\n                                    \"address\": \"33 Bond St\",\n                                    \"address_two\": null,\n                                    \"city\": \"Brooklyn\",\n                                    \"state\": \"New York\",\n                                    \"postal_code\": \"11201\",\n                                    \"country\": \"US\",\n                                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                    \"latitude\": 40.68864,\n                                    \"longitude\": -73.9835,\n                                    \"date_created\": \"2021-03-09 20:40:53\",\n                                    \"date_updated\": \"2021-03-09 20:40:53\",\n                                    \"place_id\": null,\n                                    \"apartment_number\": null,\n                                    \"types\": [\n                                        \"point\"\n                                    ],\n                                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                                    \"company_id\": null\n                                },\n                                \"status\": {\n                                    \"status_id\": 1,\n                                    \"name\": \"Pending\",\n                                    \"slug\": \"pending\",\n                                    \"order\": 10\n                                },\n                                \"address\": \"33 Bond St\",\n                                \"address_two\": null,\n                                \"city\": \"Brooklyn\",\n                                \"state\": \"New York\",\n                                \"postal_code\": \"11201\",\n                                \"country\": \"US\",\n                                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                \"latitude\": 40.68864,\n                                \"longitude\": -73.9835,\n                                \"place_id\": null,\n                                \"types\": [\n                                    \"point\"\n                                ],\n                                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                                \"original_index\": \"0\"\n                            }\n                        },\n                        {\n                            \"distance\": {\n                                \"text\": \"3.5 mi\",\n                                \"value\": 5568\n                            },\n                            \"duration\": {\n                                \"text\": \"15 minutes\",\n                                \"value\": 947\n                            },\n                            \"end_address\": \"\",\n                            \"end_location\": {\n                                \"lat\": 40.714066,\n                                \"lng\": -73.9552617\n                            },\n                            \"start_address\": \"\",\n                            \"start_location\": {\n                                \"lat\": 40.6887348,\n                                \"lng\": -73.983437\n                            },\n                            \"steps\": [\n                                {\n                                    \"distance\": {\n                                        \"text\": \"374 ft\",\n                                        \"value\": 114\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 20\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Elm Pl</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"170 ft\",\n                                        \"value\": 52\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 23\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Fulton St</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.15 mi\",\n                                        \"value\": 239\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 37\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Albee Sq</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"223 ft\",\n                                        \"value\": 68\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 26\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Willoughby St</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.27 mi\",\n                                        \"value\": 438\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 93\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Flatbush Ave Ext</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.11 mi\",\n                                        \"value\": 180\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 42\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Tillary St</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"2.12 mi\",\n                                        \"value\": 3418\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"3 minutes\",\n                                        \"value\": 196\n                                    },\n                                    \"html_instructions\": \"Take <b>left</b> ramp onto <b>I-278 E</b> <b>(Brooklyn Queens Expy)</b> toward <b><b>Bklyn-Qns Expwy</b>/<b>Queens</b>/<b>Bronx</b></b>\",\n                                    \"maneuver\": \"ramp-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.24 mi\",\n                                        \"value\": 389\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 56\n                                    },\n                                    \"html_instructions\": \"Take exit <b>32</b> toward <b><b>Metropolitan Ave</b>/<b>Williamsburg Br</b>/<b>Manhattan</b></b> onto <b>Rodney St</b>\",\n                                    \"maneuver\": \"ramp-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"479 ft\",\n                                        \"value\": 146\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 30\n                                    },\n                                    \"html_instructions\": \"Continue on <b>Meeker Ave</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"157 ft\",\n                                        \"value\": 48\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 26\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Union Ave</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.13 mi\",\n                                        \"value\": 208\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 43\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Meeker Ave</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"236 ft\",\n                                        \"value\": 72\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 18\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Metropolitan Ave</b> toward <b><b>I-278 W</b>/<b>Metropolitan Ave West</b></b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"259 ft\",\n                                        \"value\": 79\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 15\n                                    },\n                                    \"html_instructions\": \"Continue on <b>Metropolitan Ave</b> toward <b><b>Bklyn-Qns Expwy</b>/<b>I-278 W</b>/<b>Williamsburg Bridge</b></b>\",\n                                    \"maneuver\": \"straight\"\n                                }\n                            ],\n                            \"traffic_speed_entry\": [],\n                            \"via_waypoint\": [],\n                            \"start_stop\": {\n                                \"job_stop_id\": 3909323,\n                                \"company_id\": 100,\n                                \"job_id\": 2174816,\n                                \"location_id\": 388574,\n                                \"actual_location_id\": null,\n                                \"user_id\": null,\n                                \"type\": \"dropoff\",\n                                \"meta\": null,\n                                \"status_id\": 1,\n                                \"arrival_date\": \"2021-04-28 20:54:00\",\n                                \"actual_arrival_date\": null,\n                                \"in_progress_date\": null,\n                                \"completed_date\": null,\n                                \"cancelled_date\": null,\n                                \"contact_phone_country\": null,\n                                \"contact_phone\": null,\n                                \"contact_name\": null,\n                                \"notes\": null,\n                                \"driver_notes\": null,\n                                \"internal_notes\": null,\n                                \"order\": 2,\n                                \"attachments\": null,\n                                \"date_created\": \"2021-03-09 20:40:53\",\n                                \"date_updated\": \"2021-03-09 20:40:53\",\n                                \"date_deleted\": null,\n                                \"distance_to_next_stop_meters\": 5568,\n                                \"duration_to_next_stop_seconds\": 947,\n                                \"distance_from_previous_stop_meters\": 5232,\n                                \"duration_from_previous_stop_seconds\": 865,\n                                \"wait_time_seconds\": null,\n                                \"total_duration_seconds\": null,\n                                \"return_stop_id\": null,\n                                \"recipient\": null,\n                                \"apartment_number\": null,\n                                \"cancellation_reason\": null,\n                                \"contact_phone_international\": null,\n                                \"contact_phone_national\": null,\n                                \"dispatch_group_order\": null,\n                                \"skip_stop\": 0,\n                                \"time_window_end_time\": null,\n                                \"time_window_start_time\": null,\n                                \"time_window_waiting_time_seconds\": null,\n                                \"ignore_time_windows\": 0,\n                                \"routing_data\": {\n                                    \"id\": \"0\",\n                                    \"lat\": 40.68864,\n                                    \"lng\": -73.9835,\n                                    \"sequence\": 1,\n                                    \"estimatedArrival\": \"2021-04-28T13:04:25-04:00\",\n                                    \"estimatedDeparture\": \"2021-04-28T13:09:25-04:00\",\n                                    \"fulfilledConstraints\": [\n                                        \"st:300\",\n                                        \"before:destination1\"\n                                    ],\n                                    \"fromWaypoint\": \"origin\",\n                                    \"toWaypoint\": \"0\",\n                                    \"distance\": 5232,\n                                    \"time\": 565,\n                                    \"rest\": 0,\n                                    \"waiting\": 0\n                                },\n                                \"estimated_departure_date\": null,\n                                \"estimated_arrival_date\": null,\n                                \"location\": {\n                                    \"location_id\": 388574,\n                                    \"address\": \"33 Bond St\",\n                                    \"address_two\": null,\n                                    \"city\": \"Brooklyn\",\n                                    \"state\": \"New York\",\n                                    \"postal_code\": \"11201\",\n                                    \"country\": \"US\",\n                                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                    \"latitude\": 40.68864,\n                                    \"longitude\": -73.9835,\n                                    \"date_created\": \"2021-03-09 20:40:53\",\n                                    \"date_updated\": \"2021-03-09 20:40:53\",\n                                    \"place_id\": null,\n                                    \"apartment_number\": null,\n                                    \"types\": [\n                                        \"point\"\n                                    ],\n                                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                                    \"company_id\": null\n                                },\n                                \"status\": {\n                                    \"status_id\": 1,\n                                    \"name\": \"Pending\",\n                                    \"slug\": \"pending\",\n                                    \"order\": 10\n                                },\n                                \"address\": \"33 Bond St\",\n                                \"address_two\": null,\n                                \"city\": \"Brooklyn\",\n                                \"state\": \"New York\",\n                                \"postal_code\": \"11201\",\n                                \"country\": \"US\",\n                                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                \"latitude\": 40.68864,\n                                \"longitude\": -73.9835,\n                                \"place_id\": null,\n                                \"types\": [\n                                    \"point\"\n                                ],\n                                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                                \"original_index\": \"0\"\n                            },\n                            \"end_stop\": {\n                                \"job_stop_id\": 3909320,\n                                \"company_id\": 100,\n                                \"job_id\": 2174815,\n                                \"location_id\": 388586,\n                                \"actual_location_id\": null,\n                                \"user_id\": null,\n                                \"type\": \"pickup\",\n                                \"meta\": null,\n                                \"status_id\": 1,\n                                \"arrival_date\": \"2021-04-29 00:54:09\",\n                                \"actual_arrival_date\": null,\n                                \"in_progress_date\": null,\n                                \"completed_date\": null,\n                                \"cancelled_date\": null,\n                                \"contact_phone_country\": null,\n                                \"contact_phone\": null,\n                                \"contact_name\": null,\n                                \"notes\": null,\n                                \"driver_notes\": null,\n                                \"internal_notes\": null,\n                                \"order\": 3,\n                                \"attachments\": null,\n                                \"date_created\": \"2021-04-27 21:32:35\",\n                                \"date_updated\": \"2021-04-27 21:32:35\",\n                                \"date_deleted\": null,\n                                \"distance_to_next_stop_meters\": 196205,\n                                \"duration_to_next_stop_seconds\": 9121,\n                                \"distance_from_previous_stop_meters\": 5568,\n                                \"duration_from_previous_stop_seconds\": 947,\n                                \"wait_time_seconds\": null,\n                                \"total_duration_seconds\": null,\n                                \"return_stop_id\": null,\n                                \"recipient\": null,\n                                \"apartment_number\": null,\n                                \"cancellation_reason\": null,\n                                \"contact_phone_international\": null,\n                                \"contact_phone_national\": null,\n                                \"dispatch_group_order\": null,\n                                \"skip_stop\": 0,\n                                \"time_window_end_time\": null,\n                                \"time_window_start_time\": null,\n                                \"time_window_waiting_time_seconds\": null,\n                                \"ignore_time_windows\": 0,\n                                \"routing_data\": {\n                                    \"id\": \"1\",\n                                    \"lat\": 40.71407,\n                                    \"lng\": -73.95536,\n                                    \"sequence\": 2,\n                                    \"estimatedArrival\": \"2021-04-28T13:20:12-04:00\",\n                                    \"estimatedDeparture\": \"2021-04-28T13:25:12-04:00\",\n                                    \"fulfilledConstraints\": [\n                                        \"st:300\"\n                                    ],\n                                    \"fromWaypoint\": \"0\",\n                                    \"toWaypoint\": \"1\",\n                                    \"distance\": 5568,\n                                    \"time\": 647,\n                                    \"rest\": 0,\n                                    \"waiting\": 0\n                                },\n                                \"estimated_departure_date\": null,\n                                \"estimated_arrival_date\": null,\n                                \"location\": {\n                                    \"location_id\": 388586,\n                                    \"address\": \"385 Metropolitan Ave\",\n                                    \"address_two\": null,\n                                    \"city\": \"Brooklyn\",\n                                    \"state\": \"New York\",\n                                    \"postal_code\": \"11211\",\n                                    \"country\": \"US\",\n                                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                    \"latitude\": 40.71407,\n                                    \"longitude\": -73.95536,\n                                    \"date_created\": \"2021-04-27 21:32:35\",\n                                    \"date_updated\": \"2021-04-27 21:32:35\",\n                                    \"place_id\": null,\n                                    \"apartment_number\": null,\n                                    \"types\": [\n                                        \"point\"\n                                    ],\n                                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                                    \"company_id\": null\n                                },\n                                \"status\": {\n                                    \"status_id\": 1,\n                                    \"name\": \"Pending\",\n                                    \"slug\": \"pending\",\n                                    \"order\": 10\n                                },\n                                \"address\": \"385 Metropolitan Ave\",\n                                \"address_two\": null,\n                                \"city\": \"Brooklyn\",\n                                \"state\": \"New York\",\n                                \"postal_code\": \"11211\",\n                                \"country\": \"US\",\n                                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                \"latitude\": 40.71407,\n                                \"longitude\": -73.95536,\n                                \"place_id\": null,\n                                \"types\": [\n                                    \"point\"\n                                ],\n                                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                                \"original_index\": \"1\"\n                            }\n                        },\n                        {\n                            \"distance\": {\n                                \"text\": \"121.9 mi\",\n                                \"value\": 196205\n                            },\n                            \"duration\": {\n                                \"text\": \"2 hours, 32 minutes\",\n                                \"value\": 9121\n                            },\n                            \"end_address\": \"\",\n                            \"end_location\": {\n                                \"lat\": 41.77357,\n                                \"lng\": -72.87228\n                            },\n                            \"start_address\": \"\",\n                            \"start_location\": {\n                                \"lat\": 40.714066,\n                                \"lng\": -73.9552617\n                            },\n                            \"steps\": [\n                                {\n                                    \"distance\": {\n                                        \"text\": \"1.05 mi\",\n                                        \"value\": 1697\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"4 minutes\",\n                                        \"value\": 272\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Meeker Ave</b> toward <b><b>I-278 E</b></b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"124 ft\",\n                                        \"value\": 38\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 8\n                                    },\n                                    \"html_instructions\": \"Continue on <b>Cherry St</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.89 mi\",\n                                        \"value\": 1430\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 100\n                                    },\n                                    \"html_instructions\": \"Take <b>left</b> ramp onto <b>I-278 E</b> <b>(Brooklyn Queens Expy)</b> toward <b><b>Bklyn-Queens Expwy</b>/<b>Queens</b>/<b>Bronx</b></b>\",\n                                    \"maneuver\": \"ramp-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"4.20 mi\",\n                                        \"value\": 6767\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"6 minutes\",\n                                        \"value\": 375\n                                    },\n                                    \"html_instructions\": \"Take exit <b>35A-B</b> toward <b><b>Eastern Long Is</b></b> onto <b>I-495 E</b> <b>(Long Island Expy)</b>\",\n                                    \"maneuver\": \"ramp-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"7.34 mi\",\n                                        \"value\": 11814\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"11 minutes\",\n                                        \"value\": 670\n                                    },\n                                    \"html_instructions\": \"Take exit <b>22A-E</b> toward <b><b>Van Wyck Expwy</b></b> onto <b>I-678</b> <b>(Van Wyck Expy)</b>\",\n                                    \"maneuver\": \"ramp-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"16.09 mi\",\n                                        \"value\": 25896\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"20 minutes\",\n                                        \"value\": 1218\n                                    },\n                                    \"html_instructions\": \"Continue on <b>Hutchinson River Pkwy N</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"1.43 mi\",\n                                        \"value\": 2303\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 98\n                                    },\n                                    \"html_instructions\": \"Keep <b>left</b> onto <b>I-684</b> toward <b><b>Brewster</b></b>\",\n                                    \"maneuver\": \"fork-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"3.84 mi\",\n                                        \"value\": 6179\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"3 minutes\",\n                                        \"value\": 226\n                                    },\n                                    \"html_instructions\": \"Keep <b>left</b> onto <b>I-684</b>\",\n                                    \"maneuver\": \"fork-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"1.42 mi\",\n                                        \"value\": 2284\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 78\n                                    },\n                                    \"html_instructions\": \"Continue on <b>I-684</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"21.53 mi\",\n                                        \"value\": 34643\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"20 minutes\",\n                                        \"value\": 1223\n                                    },\n                                    \"html_instructions\": \"Continue on <b>I-684</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"3.23 mi\",\n                                        \"value\": 5206\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"3 minutes\",\n                                        \"value\": 236\n                                    },\n                                    \"html_instructions\": \"Take exit <b>9E</b> toward <b><b>Danbury</b></b> onto <b>I-84 E</b>\",\n                                    \"maneuver\": \"ramp-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"54.12 mi\",\n                                        \"value\": 87105\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"56 minutes\",\n                                        \"value\": 3370\n                                    },\n                                    \"html_instructions\": \"Continue on <b>I-84</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"3.60 mi\",\n                                        \"value\": 5796\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"7 minutes\",\n                                        \"value\": 420\n                                    },\n                                    \"html_instructions\": \"Take <b>left</b> exit <b>39</b> toward <b><b>Farmington</b></b> onto <b>CT-4</b> <b>(Farmington Ave)</b>\",\n                                    \"maneuver\": \"ramp-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"1.57 mi\",\n                                        \"value\": 2520\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"3 minutes\",\n                                        \"value\": 208\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Brickyard Rd</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.46 mi\",\n                                        \"value\": 742\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 67\n                                    },\n                                    \"html_instructions\": \"Continue on <b>Harris Rd</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.32 mi\",\n                                        \"value\": 520\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 49\n                                    },\n                                    \"html_instructions\": \"Continue on <b>W Avon Rd</b> <b>(CT-167)</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.50 mi\",\n                                        \"value\": 808\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 112\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Haynes Rd</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.16 mi\",\n                                        \"value\": 258\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 34\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Haynes Rd</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                }\n                            ],\n                            \"traffic_speed_entry\": [],\n                            \"via_waypoint\": [],\n                            \"start_stop\": {\n                                \"job_stop_id\": 3909320,\n                                \"company_id\": 100,\n                                \"job_id\": 2174815,\n                                \"location_id\": 388586,\n                                \"actual_location_id\": null,\n                                \"user_id\": null,\n                                \"type\": \"pickup\",\n                                \"meta\": null,\n                                \"status_id\": 1,\n                                \"arrival_date\": \"2021-04-29 00:54:09\",\n                                \"actual_arrival_date\": null,\n                                \"in_progress_date\": null,\n                                \"completed_date\": null,\n                                \"cancelled_date\": null,\n                                \"contact_phone_country\": null,\n                                \"contact_phone\": null,\n                                \"contact_name\": null,\n                                \"notes\": null,\n                                \"driver_notes\": null,\n                                \"internal_notes\": null,\n                                \"order\": 3,\n                                \"attachments\": null,\n                                \"date_created\": \"2021-04-27 21:32:35\",\n                                \"date_updated\": \"2021-04-27 21:32:35\",\n                                \"date_deleted\": null,\n                                \"distance_to_next_stop_meters\": 196205,\n                                \"duration_to_next_stop_seconds\": 9121,\n                                \"distance_from_previous_stop_meters\": 5568,\n                                \"duration_from_previous_stop_seconds\": 947,\n                                \"wait_time_seconds\": null,\n                                \"total_duration_seconds\": null,\n                                \"return_stop_id\": null,\n                                \"recipient\": null,\n                                \"apartment_number\": null,\n                                \"cancellation_reason\": null,\n                                \"contact_phone_international\": null,\n                                \"contact_phone_national\": null,\n                                \"dispatch_group_order\": null,\n                                \"skip_stop\": 0,\n                                \"time_window_end_time\": null,\n                                \"time_window_start_time\": null,\n                                \"time_window_waiting_time_seconds\": null,\n                                \"ignore_time_windows\": 0,\n                                \"routing_data\": {\n                                    \"id\": \"1\",\n                                    \"lat\": 40.71407,\n                                    \"lng\": -73.95536,\n                                    \"sequence\": 2,\n                                    \"estimatedArrival\": \"2021-04-28T13:20:12-04:00\",\n                                    \"estimatedDeparture\": \"2021-04-28T13:25:12-04:00\",\n                                    \"fulfilledConstraints\": [\n                                        \"st:300\"\n                                    ],\n                                    \"fromWaypoint\": \"0\",\n                                    \"toWaypoint\": \"1\",\n                                    \"distance\": 5568,\n                                    \"time\": 647,\n                                    \"rest\": 0,\n                                    \"waiting\": 0\n                                },\n                                \"estimated_departure_date\": null,\n                                \"estimated_arrival_date\": null,\n                                \"location\": {\n                                    \"location_id\": 388586,\n                                    \"address\": \"385 Metropolitan Ave\",\n                                    \"address_two\": null,\n                                    \"city\": \"Brooklyn\",\n                                    \"state\": \"New York\",\n                                    \"postal_code\": \"11211\",\n                                    \"country\": \"US\",\n                                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                    \"latitude\": 40.71407,\n                                    \"longitude\": -73.95536,\n                                    \"date_created\": \"2021-04-27 21:32:35\",\n                                    \"date_updated\": \"2021-04-27 21:32:35\",\n                                    \"place_id\": null,\n                                    \"apartment_number\": null,\n                                    \"types\": [\n                                        \"point\"\n                                    ],\n                                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                                    \"company_id\": null\n                                },\n                                \"status\": {\n                                    \"status_id\": 1,\n                                    \"name\": \"Pending\",\n                                    \"slug\": \"pending\",\n                                    \"order\": 10\n                                },\n                                \"address\": \"385 Metropolitan Ave\",\n                                \"address_two\": null,\n                                \"city\": \"Brooklyn\",\n                                \"state\": \"New York\",\n                                \"postal_code\": \"11211\",\n                                \"country\": \"US\",\n                                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                \"latitude\": 40.71407,\n                                \"longitude\": -73.95536,\n                                \"place_id\": null,\n                                \"types\": [\n                                    \"point\"\n                                ],\n                                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                                \"original_index\": \"1\"\n                            },\n                            \"end_stop\": {\n                                \"job_stop_id\": 3909319,\n                                \"company_id\": 100,\n                                \"job_id\": 2174815,\n                                \"location_id\": 388587,\n                                \"actual_location_id\": null,\n                                \"user_id\": null,\n                                \"type\": \"dropoff\",\n                                \"meta\": null,\n                                \"status_id\": 1,\n                                \"arrival_date\": \"2021-04-29 00:54:09\",\n                                \"actual_arrival_date\": null,\n                                \"in_progress_date\": null,\n                                \"completed_date\": null,\n                                \"cancelled_date\": null,\n                                \"contact_phone_country\": null,\n                                \"contact_phone\": null,\n                                \"contact_name\": null,\n                                \"notes\": null,\n                                \"driver_notes\": null,\n                                \"internal_notes\": null,\n                                \"order\": 4,\n                                \"attachments\": null,\n                                \"date_created\": \"2021-04-27 21:32:36\",\n                                \"date_updated\": \"2021-04-27 21:32:36\",\n                                \"date_deleted\": null,\n                                \"distance_to_next_stop_meters\": 0,\n                                \"duration_to_next_stop_seconds\": 0,\n                                \"distance_from_previous_stop_meters\": 196205,\n                                \"duration_from_previous_stop_seconds\": 9121,\n                                \"wait_time_seconds\": null,\n                                \"total_duration_seconds\": null,\n                                \"return_stop_id\": null,\n                                \"recipient\": null,\n                                \"apartment_number\": null,\n                                \"cancellation_reason\": null,\n                                \"contact_phone_international\": null,\n                                \"contact_phone_national\": null,\n                                \"dispatch_group_order\": null,\n                                \"skip_stop\": 0,\n                                \"time_window_end_time\": null,\n                                \"time_window_start_time\": null,\n                                \"time_window_waiting_time_seconds\": null,\n                                \"ignore_time_windows\": 0,\n                                \"routing_data\": {\n                                    \"id\": \"destination\",\n                                    \"lat\": 41.77357,\n                                    \"lng\": -72.87228,\n                                    \"sequence\": 3,\n                                    \"estimatedArrival\": \"2021-04-28T15:52:13-04:00\",\n                                    \"estimatedDeparture\": null,\n                                    \"fulfilledConstraints\": [\n                                        \"st:300\"\n                                    ],\n                                    \"fromWaypoint\": \"1\",\n                                    \"toWaypoint\": \"destination\",\n                                    \"distance\": 196205,\n                                    \"time\": 8821,\n                                    \"rest\": 0,\n                                    \"waiting\": 0\n                                },\n                                \"estimated_departure_date\": null,\n                                \"estimated_arrival_date\": null,\n                                \"location\": {\n                                    \"location_id\": 388587,\n                                    \"address\": \"231 Haynes Rd\",\n                                    \"address_two\": null,\n                                    \"city\": \"Avon\",\n                                    \"state\": \"Connecticut\",\n                                    \"postal_code\": \"06001\",\n                                    \"country\": \"US\",\n                                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                                    \"latitude\": 41.77357,\n                                    \"longitude\": -72.87228,\n                                    \"date_created\": \"2021-04-27 21:32:36\",\n                                    \"date_updated\": \"2021-04-27 21:32:36\",\n                                    \"place_id\": null,\n                                    \"apartment_number\": null,\n                                    \"types\": [\n                                        \"point\"\n                                    ],\n                                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                                    \"company_id\": null\n                                },\n                                \"status\": {\n                                    \"status_id\": 1,\n                                    \"name\": \"Pending\",\n                                    \"slug\": \"pending\",\n                                    \"order\": 10\n                                },\n                                \"address\": \"231 Haynes Rd\",\n                                \"address_two\": null,\n                                \"city\": \"Avon\",\n                                \"state\": \"Connecticut\",\n                                \"postal_code\": \"06001\",\n                                \"country\": \"US\",\n                                \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                                \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                                \"latitude\": 41.77357,\n                                \"longitude\": -72.87228,\n                                \"place_id\": null,\n                                \"types\": [\n                                    \"point\"\n                                ],\n                                \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\"\n                            }\n                        }\n                    ],\n                    \"overview_polyline\": {\n                        \"points\": \"}}nwFjkkbM?k@?{@?qAv@b@`@Vx@^tAt@HAL@NDxAt@`@Nb@Hr@^v@\\\\|Ah@^HfB`@zAt@\\\\PhCnAhClAr@XvCvAn@XtCrApB~@zBdAlD`Bj@XrAn@n@Xv@`@hJfE|Al@jCz@lCp@pBb@zB`@zCr@v@\\\\h@\\\\TR^\\\\DHh@r@b@`AZ`AJp@RjAFx@?h@IbJWzQI|Fs@fg@ErBGrD?RCjAIx@Kv@Ml@Of@M\\\\Q\\\\[XSJS?SIO[EYF]LSPITC`@Bl@X`@`@n@rAV`ALt@Dp@?TAt@ElBChAEhBAbAAf@\\\\MzAs@`C{@zBaA|@_@j@UXKxCgAxAk@`A_@nDyAvB}@nB}@BbE?h@v@l@nBjAFDz@f@J[KZwAxEyDsBj@kBa@CyDMoEGH_D?c@{@Z_CbAgC~@e@PqCjAu@Zm@Ri@T_A\\\\e@GOMOUF{CBeB@}@EaBI{@k@wCIq@Co@CgD@[FuDDqBLiH^wWDkE\\\\iX@e@JuHAyACc@MoAUyAm@cBg@}@e@i@m@m@iAs@e@Q_Dq@u@OgCi@eDy@sC}@cFqBuFiC]Oc@SmAm@iEsBc@Ua@QqHkDm@Y_Ag@wCuAm@YUKoAi@a@S]QmAq@[OYSeAs@WQ]S[Sg@Ya@U}@i@}AwA{@cAe@m@]o@u@c@aCmA_CmAy@g@_@_@e@c@aC{Cu@J_@Bl@r@fBxBn@t@~@dATV?|@?jB?pA?z@?j@?k@?{@?qA?kB?}@?i@@s@?S_@_@e@c@aC{C}@mAmCcEu@sA[k@iBmDqAaCqA_CoBsDs@kAa@w@eAkBOYe@}@i@cA}@aBEICG_@w@aC{E_BmDAAy@sAS_@g@w@a@m@o@aAKOS_@aAkBu@gBaAqB[{@_@wAS_AUuA_AiG]sBa@qCw@qCOcA]qBOw@u@uCw@uBo@oAe@u@]i@c@k@s@cAkA{Ai@q@W[c@i@wA_Bm@q@a@c@kAmAkCyBiBmAaDkBiAo@uA{@}@k@]Ui@q@]]c@[i@eAGu@Ay@ZgEp@_HRqBPuAb@gCb@eAt@qBr@sCbAaFl@gDb@gCtAcIZqBx@gF`@kBb@yAf@yA`AmBrAmBlBeDlCaFv@cBnAmD\\\\uAXuAd@mDL{AVeDRaFHwBFmAPuFn@mOFqB^eHBoB?kBCoAIwAM}AWuB[mB[uAo@uBcAcCuBgEmA_Cy@kBSo@qAeFQyAWyCMeDo@sPQkBUkB[cBm@{B{AcF_B{Fk@kCa@iBUeAaAmFoCyMw@mDs@kDm@iCa@oBa@}A}@yDmAkFwAaHk@wCo@cDiBoJoAaGY{Ak@}CMw@o@_DQcAOu@c@uBo@kDW{BQeBq@sGYsBeAcGg@kDcByGk@uBg@uAa@iA[y@uAuDwAuDWo@{@{B]{@cAiCa@iA_AiCYy@}AqEc@kCEeA?uBFgG?sAA{@Mu@Qi@c@q@q@q@k@Yi@Ka@AaAHw@NcCb@WBu@?uAQ{CqAwAkAQKw@m@m@]uAm@o@QoAUu@GkAAaBJiAPc@Jq@X_@Rk@TeAn@sSdMuAn@gBj@u@RoAPgAN}Df@wEb@u@Di@@}AK}@OoBQgACw@B_BLg@LmA^aDnAYJeAR_ALwAD]EaAIkASuAi@sCuAaAk@c@Ys@YuDyByBuAi@[eB{AsBiBs@y@i@q@w@kA_A{AaCqEoEaJu@{Aa@o@g@y@yAkBaCmCq@o@_CcBgAq@g@YeFkCqB_AgFeCcCgAy@a@oGuCwCgAaAYWIOEaB_@aB[e@I_BUwEe@}Ei@cE_@_@CSCaEgBcCqAaAk@e@Uo@UgAOu@?_BDs@HaAR_AT{At@sAr@QH}Ax@wAv@kF~CwBjAqC~A{CbB_CpAuBjA{\\\\fR{NdI}VjNeIpEi@ZoBfAaBv@cA`@{@V_ARgAPiAHeABgCAoAC_AEoAEyBIkBQs@GgDWoFO_@CuA?qB?aABg@?gBBaEB_FBY@_BB{AHa@JuALiMdAcBNuAVu@N_B^iBf@wAXMBiB\\\\gEx@{AToDd@kEf@m@BmAJmAHeAFyAF{CHqCBsB?oC?gBEkBIeAIm@E_AK]Ei@IkDk@qEeAo@Os@QiEeAk@OqCo@_Ce@_C_@mCWgCOoK[aFUk@EwBYe@I_Bc@e@OoBu@y@a@uAw@m@a@m@e@i@c@][_A}@oBaCk@w@U]U_@OWW_@kA}Aa@g@oBkBsAgAe@a@{@m@sGcFoCwBs@k@i@a@{C_CwFoEoDwC}G}FaIiHsDkDwAwAY[i@k@s@u@_AcAc@e@mBsB_@]}@s@iAs@kB}@}@YmBc@qCW_@CQAq@EsDGoEGiA?aCCmAIeAMiDu@cM{CmFsAwFuAiFqAwCq@_B[oEu@kAOcAKUCSAqEK_FHO@Q@gD^uJ`B{AXs@NcCr@OFwAf@g@Lo@PeAPi@Dc@Bg@CaBMwCm@oA]uBu@aBk@}@SsAUyBWoBGeDAiCSoAWgAc@WMoAo@y@_@_DyAwEsA{AYe@KgAQo@IUC}BSgACqBBsARoAXiBp@WHo@PmANw@A[Cc@CcCc@iA_@aAWq@UkAa@eBq@yAi@qBk@gCq@UEUGsE{@iBYmDg@sBe@i@QoA_@y@[mCcAeBo@yB}@eBaAsAy@eAg@kAq@e@Sg@MsCk@cBe@g@UeAs@_@a@]c@e@s@]q@oA_Du@qAoBsBmAo@iDiBuA}@cA_Aq@q@KOaCeCeAk@k@SmAS{@?w@Dg@L_ARwAr@q@d@mAnA_AnAw@tAKTUj@mAhDUv@c@z@e@x@y@~@_@ZkBt@k@FqAFeCEwEkB}A{@mAm@kBw@q@]cC_AqEuAmC{@oAk@y@i@aA}@]a@[g@e@u@Yk@aBeFeAeDs@_BuAyBgAgAs@q@{BiA_@Mw@WaCY}Ca@wB_@}A]iGsAwAKwAB}AXWL}@\\\\sCrAwAt@YJYJg@Le@Hg@Bg@@g@CiAOQEy@Ya@Q_@MyIkDkBgA_As@UWm@q@eBkCc@_Ai@uAUg@Ma@{@qC{AcFc@kBq@aD}@}FKu@a@_Cm@wC[oAq@}BgAeD_A{BqAiC{@yA}BwC{HgH_B}A{@aAw@cA_BeC{@}A{@iBoAeDu@eCa@_Be@}BWgB[}C[iFYcDKy@Ea@i@}Dg@gD[mCs@{HKy@]kBcAoDm@oAy@yAmAeBsCqCcBoAkF_D_Aq@c@_@aBqBm@aAg@}@]w@q@eBe@wAm@}B{@mEe@gD[yCEm@Eo@I}AMgDCmBD}EBy@DyAHqC@qDC{@IeAIo@S{Am@aCISe@mAw@{AaAqAgBaBaKoGwA}@eBeAmA_Aa@i@a@i@]o@w@_Ba@mA[oAOw@Ge@Kq@YaBUqASeAYwAy@gDeA}Cs@aBq@oAiD_G_AgAwA}AoCkCqAcAcIwFkFoDkAaAoBoBUYw@}@_AgAcG{IcAiAmBeBuBuAuHyEcAo@gDkBIGaAq@cCgCwAsA{AmB_@e@SWyEqGaEuFq@}@iAiAiCmCgB{A_@W_DoBuBaAkAa@yAe@qAYmHaBoCm@iCk@_A[gHuBcIaCs@Uw@YkA]}Bq@UG_@Oy@WmGoBmDgAcCq@{A]qBSe@AoBDaBPgBj@}@V{BtAy@x@uAhBm@hAiBvEoEnLcA~B{@lBMVk@~@a@h@iBxB_A|@qA|@_C`AmA^s@Pm@H}ALu@BoBCkAKu@KuBe@qBi@uEgBo@SwCm@iBWyBMuBI{BEq@DiBRu@NoCh@eIfBoQxDeJpBcTtEeAR}KfCqGxAiJpBoB^k@LkEv@qALqAFkBDsAAeBGeBOyBUu@QyAa@wCaAoDgBiAs@_BiAiAcAqAqAgAqAg@i@yAqB_CaD_MiPy@}@iAgAo@m@YS_BgAmAu@yCyAoAc@}Bo@aASmASeCSqCGqA?sCDeAByFBeIBmBEcBGuACyG]yGm@gReBkBCyAAwLd@kI`@_NXaJCcLg@oBOsFi@gJ{AoAWgAQ}@UaG{AuPmF{By@mCcAyGsCwBeAgCuAu@]GE_@SIE}@_@kIkEgTyKuPwIsQeJ_Bu@_C_AiDiAsA[sBe@aDi@sFg@}AKaDEuKC}BAcIEiBGcBMqDa@{AScCa@gCk@yCw@wFiBaEcB_@OcG_DoEmC_JgF{CmBqEgCqDuB_DcBeMqHsEoCkTcM}IgF}Ay@s@[aEgBwIkCaBa@qF_AaBScBOiEWaDKaLW_GS}Fk@wHoAkEy@gScEo]_HkB[uBUaBIsBAaBDmBL_BR}AZ_B^iFxAkV|Fu@TmEdAaDj@mDTqABwCG}Ca@i@K{J{Aa^eGiAS_F{@qCi@oAOiD]{E[eFQkDAcDBgJZgBN_CPmCXmHz@iG^}HTuDBuCAyEIoIa@{CScHq@oC]MAeBQmF_A}Dy@cDw@iEmAkBk@aHcCcCaAmF_CcAe@iGiDaMuHuCgBkMyH{Au@}D{AyEuAmHsA{Dq@uGyA{DkAwPcGgBc@{ASwAKaB?}AFs@F_BVmCr@gCjAUN{@h@}@r@wDzCuAbAeGfFwCxBeCnAsJvDwMfF{Ax@}BpBkDxDuC`Dc@l@{BxBeAnAg@^g@XcAv@eA|@qBhA{BfAq@VcBf@qCn@{AXyBb@{@Lk@HgBNiBCw@EiBWkBa@iBg@gBm@_@OmAc@g@WwDmBuHuDqD_BmDkAyAa@gOwD_AYc@MiKoCoCw@qCeAcFkC{A{@cCeAyEqAuEgA{Cg@qBWwBQsGUgJOqJWwEMmBIs@GgBUeB]eBi@cBm@uF_CcBo@kBg@_Ba@}AWqBScIk@}Hs@_Dm@s@UgBs@cBy@o@a@{AkAyAqAmHuHeHeH_QoQaB_BqJ}J{DwEuAmBiHsKgAyAmAqAmBcBqA{@uBgAk@UmBk@}AYiCWcBEcBDcBN{ATuAX_AXaD~@_ATaAVcCd@yANk@DwADyAAm@CiCUwAW_@KeBg@gMaFmDkAuEaA{M{A}Eq@sA]uAc@qAi@wBiAsCuBeBcB_AeA_AgAo@_AgB_CcBsBiHqIyKcNsDuEkEiF_E}EeQiTeDcE}A{B_AmAkAgBe@s@iNsSsOkUaM{Qo@_Aw@oAeKiOqBcDcAiBcC}EuByEu@iB_CwG_Twq@_@kAm@mBoHyU_BaEgAqBmAiBa@i@_CuCyAmAyAgA{AaAeB{@gBo@_Co@yAW}AScBUoBYyEq@eE{@gA]sAa@wAi@qDuA_AyASc@Qi@c@kBqByIYoA}@}DIm@E{A@i@Fi@F]Lq@dBoEp@eBjAyC|A}DrKqXVq@Zu@p@wBdAwDx@{D`@aCR}AR{Ad@uFJuCFgFBcB@o@GeDe@mK_Cwf@g@uIkEk}@[_Eq@_G{@_GiAyFsAsFaGoUoAqF}@sEg@_Dc@yBy@{FSgB_@{CO_BYsBw@yDu@wCkBkGc@oAoCgIkBwGm@yCy@iGM{AOwF?kBBiBPeEDyAPeBXwB`AcFv@wCtAwElAqEZoA\\\\gBh@eF`@uLBgAFqD`@eQR{GN{EJqDRuILaEf@uHT_CR_BrH_e@|AcJN}@nF{^b@}B`@}BrAcF|AsEfAmC\\\\y@v@}Bb@kBVgBNaBFkA?eDK{BUkBc@_C[mAc@uB[qAE]W}AO{A_@sE[kBa@wA_A{BaAyAo@m@wBoAcAYmBY_EHo@Fo@F{Ad@e@Ra@TsNvFiAb@a@F_ARgBXK?o@B{AA{BUcAYwAe@yBsA_CmBqCsCwC{D}CmFk@mAmB_Fy@mCu@}Ce@{ByDuVaAwDg@aBOg@Wm@cAcCwB_EsBmCaDiDgBaBwB_CgGkGaAaAwAkBg@o@cDuEcDiGgB_EmCaHSs@Oi@_@wAi@uBq@qCm@oCWqAyAaLwBaU}@gI_AaHcBaKsAuH_BcJw@_EmDsSUkAeAqHIo@i@{DeBaNYcDOsC?mBJ_DTqCT_B`@_CZ_APc@j@cBfB_FlBuEzEkLt@sBr@uBZiAt@aGHaBD}@CiF?]WgEUkBm@oCy@iCm@cBwC{GMU]_AsBeFgBcE{@_CcA_Eo@oD[sBUeC_ByV_@_EWwB_@eCiAgFk@kB}CeIaCiGYu@eBqEwCiHsBmFyB}HcAoFc@uDgAiNcB{XG}C@qDLqCPqBTmBd@gCp@eCj@iBpCuJ~@aE`@sB\\\\{BVkDF{B?}CEyBOkC_@gDc@eCi@{Bo@yBiAcEg@kBaCgI{BkIc@cCUsAa@gDMmBCgBEsBAiEFo\\\\AuDEmEGcBC}@OgDaBkVe@qHSuCM{G@wCF_Ex@iUBsBEuFMiCW{Cu@}Es@aDcGgT_AqDYgBYyBSqBIwAEiB?eENuC@q@`@gDb@aC\\\\_Bf@gBdQqh@jAcD`CsFjVoh@`CkFtHuPr@}AbAiCn@eBfBqGp@cE`@aEXsCp@qFfA{Jd@_EDa@zAqO`AkINcBb@wD~C}X`@yEPqD@{BKqDMmAQaBw@mEGMc@uA_AiC_@w@o@oA_AwA{AiB}BmBaD{CeQyOyGoGqNuM{UyVsFcGsCmCiM_N_BuAmA{@mBiAgB}@qBu@iBa@mBW{C?}AHmAPwA^qEhBsAn@uGvCuG|B[JkATgCd@e@LaBTuEXqADqCIc@AyCOkCYiCi@sCw@i@UmAi@aEcCm@s@a@a@oAgBMUsAcCoAcDwAuFuEaQ}BuI_@uAgC}Hy@iB_A_Bo@_Ac@e@_E_EsAoAsDkDu@w@yBkCw@iAYa@aAeBiA_CkB_EaLsWuFcM}AeDoA{BoA_B_@g@_@c@UUcDiCg@]_EmCsFiDq@e@cBiAeC_BsA}@u@m@oAaAaBoA_B}AaB}Aq@w@a@c@w@{@{AeBoDyFwDcHs@wA}C{HiBqGyAeH_@{BkBgMqAiI{CuQiHy_@eGuXaIwZiL_b@uKu`@{BeIoAoEkAiEkHuW_HyViB}EwAoDe@{@g@{@uGmJsFcHMQgAuAiKoNgBqCsBoDe@y@gA{B}@kBoBaEuOe\\\\gBsDiOe\\\\gEgMwBmJa@oByBeKyIsb@mBeJmAeGwAeH_A{EaC_L{DyR_A{FoC}ReByKyHmi@mC_QyAeH{N}f@mAeDsAqCgAmBiB}B}A}A{AmAgBiA{As@eCu@iB]mAQcBImAEoGCcJBoAA}Fc@uAQ_FmA_Bm@cBy@{D{BkDwCyB_Co@w@_@g@yC}EoAcCu@iBy@{BSk@gAwDaAmDu@mCa@{AgAkD_@cAy@kBqCqFkAkBgFkHeAyAwLyPo@eAc@}@s@qB]aAYgAa@uB[mCq@oLe@}Hm@cDmAwE_@uAgAyDcBaGKQg@uBa@mB]eB_@wB]iCc@cDi@kJAUAk@EgBCiA?s@?QCmAMkDG}CIgECkCAq@GwCCoACcAAuA?Y?WEuBAiC?qCNoBd@oD`AwFRkARqBFk@@yACoBa@sGScEK}AKaEDaEHcA`@kEn@uCv@oCdAaC`@w@hBiCbAeAx@q@ZWtBoAlAg@|MgDpAk@dAi@tAy@bBmAjBuBh@s@l@{@jAoBt@aBd@qAhEaLp@oBPm@Na@z@qDXoAb@gCNeATyBd@oG^}H^oHr@}JRkCz@wIxBgRJaC@eCAyAEiASaCi@qDsAuFy@}CcJc^_BiGwCgLU_A{AyFuCmLUmAWmBQkCK}BA_CDkBLyBh@eE`@sBl@yBhCsHVw@pByFrF_PhC}HpD{KbAyClAoDlEmM|@cD^yBTsATuBJqBDiB?gBOaDKwAYwBk@iCs@qCw@wB}@_BaAyAgAoA}@iAiAsA}C{D}@uAy@cBq@aBm@gBQ}@UgAMyAS_D_@}K_@uIMeD[wDQsAScAa@qB}@{Cg@sAy@iBg@aA]g@wAsBeu@{}@}BwCsAwBmAwBy@aBgAiCgFoOcCyHgBoF{@kCg@{ASk@eGeRm@mB{DiL_@aAsAwCs@_A_A}@}@y@uBaB_FkD_GcEuByAgAy@_JwGa@WuAcAkEwCkA}@sJkHyBaBiCyBkDsCa@[iLsJiFiEi@e@{CgCcBuAu@o@oC{BiB{A_Aq@w@c@u@g@w@_@cDsA}@SmA[sAYqBSoCM_B?y@AwE`@gCp@yAp@wCfBcCdBaBlAwDlCiEdCmEhBwCt@qB\\\\iBVkBF_AFoEAuAGaGk@yC_@iFm@uP_B}YwCmFu@gC]iBWmEsAiCgAw@c@gBmAoB{AsFyDsBwAaAu@uCuBo@e@wIeGiBuAeEkEeAqAuBwCuBwD_CcFmNe[uEgJiGqJmMkRCEoLcQIMoAiB_FoH}A_CqGmJw@cAsBqC}CuDy@{@qEuEcFsEsI}Ggi@ea@cZcUwC{BuHwFsCwBcDeCyFgEcHoFgFwDaD_CqEoCuEgCkCsAqD}AiBs@{Aq@_FoBqAi@{Am@{CmAaC_ASIyCmAg@Um@e@sAmAm@s@m@eAk@eAq@gB_@yAYwAS{AMoASuJ@mCDmCJgBHeBfAoMv@mJXaD`@oEVmCl@eFd@oGBs@LyCBu@?_BA}@KcCUiBY{AKa@i@eBwAsCo@_Au@}@{@u@}A_A_@O}@_@uBs@iBc@gKkCuBc@}Dw@oBi@q@QiD{@qCs@_HeBmBg@q@OqD}@gHeBu@SsCo@{MgDuAa@sBm@gBw@iDcBy@g@_jAwu@mCgBiDmBeE}BiD}A_GgCc@SiGkC}Ao@iMkFyDcBad@kRaBw@}D{BwAgAc@]SQy@s@q@m@{Aw@_Bi@iASkBIaAJ_AT}@`@}AlAcB`Cc@|@]hA[vAi@hFIlBC|AIhGCdZ?`C@pG?~E?bA?|A?vAA|BG`GMbBM~@yAvGMb@cBzFoAfEg@xCe@lICb@UdBQv@Q~@G`ACbA@v@Ht@Lj@|@xBJTr@|AHZ?ZEXGPc@nAYz@Wt@ITo@dB]~@Sj@[`Ay@zBMd@_AjBc@v@eAvAu@dAgBbCgExFgGjIs@`AaBxBiAhBeAvBeBtDo@xAa@z@oIpRaGrMmFxLm@nAo@vAyDrIkC|Fg@pASv@[nCUvCGb@m@dI]vEQrBuBj@}GrBaR`G{F~AgDf@wDf@oKlA{BTqAL}@RcAl@s@v@a@d@m@p@[X[Vu@\\\\_ANy@B}AD]DMFWRmA`Ag@Jq@DyBKs@C{AGi@CyJf@kB?qDGqB?k@F_C\\\\eAPa@J}A^gGz@cHhA}AVoBZuFfAmDh@iI~AiAZaBb@_CbA{FfDbAfEHb@@d@AhDWlHBnADr@RvAZhAn@pAl@|@v@~@Zj@HZH`@@v@OfCC`A@d@RbBRl@o@j@aDzAaAp@_@f@Wb@Sj@Mj@\"\n                    },\n                    \"warnings\": [],\n                    \"waypoint_order\": [\n                        0,\n                        1\n                    ]\n                }\n            ],\n            \"status\": \"OK\"\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"c945b2ae-26f6-4bd7-8a89-2fc1a8382d19"},{"name":"Get batched jobs","id":"5bdb748f-12fd-44fa-ac10-21e4a5102293","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/batch/:batch_id","description":"<p>Get all jobs for the specified batch id - <code>/job/batch/{batch_id}</code></p>\n","urlObject":{"path":["job","batch",":batch_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"BgRKJnK9o","key":"batch_id"}]}},"response":[{"id":"497b8c22-9fe8-4af7-bdb5-f9be73fec80f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/job/batch/:batch_id","host":["{{host}}"],"path":["job","batch",":batch_id"],"variable":[{"key":"batch_id","value":"BgRKJnK9o"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"36902"},{"key":"ETag","value":"W/\"9026-QMbKKXGlLAKkHPh9zv/O5WVeOpM\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:04:05 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"job_id\": 2174815,\n            \"job_number\": 5,\n            \"origin_job_number\": null,\n            \"hash\": \"CNFxpq-Ko\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388587,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388587,\n                \"address\": \"231 Haynes Rd\",\n                \"address_two\": null,\n                \"city\": \"Avon\",\n                \"state\": \"Connecticut\",\n                \"postal_code\": \"06001\",\n                \"country\": \"US\",\n                \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"latitude\": 41.77357,\n                \"longitude\": -72.87228,\n                \"date_created\": \"2021-04-27 21:32:36\",\n                \"date_updated\": \"2021-04-27 21:32:36\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 16:54:10\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 9,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": \"2021-04-28 16:56:00\",\n            \"driver_reminded_date\": \"2021-04-28 17:03:49\",\n            \"date_created\": \"2021-04-28 16:54:10\",\n            \"date_updated\": \"2021-04-28 17:03:47\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": \"BgRKJnK9o\",\n            \"dispatch_group_order\": 2,\n            \"dispatch_group_optimization_method\": \"single_pickup_optimization\",\n            \"dispatch_group_data\": {\n                \"color\": \"#1F75FE\",\n                \"ignore_time_windows\": 0,\n                \"total_jobs\": 2,\n                \"optimize\": 1\n            },\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": \"2021-04-28 17:03:44\",\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"\",\n                \"password_hint\": \"\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/CNFxpq-Ko\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909320,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:10\",\n                    \"date_updated\": \"2021-04-28 17:03:44\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 196205,\n                    \"duration_to_next_stop_seconds\": 9121,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": 1,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909319,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388587,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:10\",\n                    \"date_updated\": \"2021-04-28 17:03:44\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 196205,\n                    \"duration_from_previous_stop_seconds\": 9121,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": 3,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"0\\\",\\\"lat\\\":41.77357,\\\"lng\\\":-72.87228,\\\"sequence\\\":2,\\\"estimatedArrival\\\":\\\"2021-04-28T15:40:23-04:00\\\",\\\"estimatedDeparture\\\":\\\"2021-04-28T15:45:23-04:00\\\",\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"destination\\\",\\\"toWaypoint\\\":\\\"0\\\",\\\"distance\\\":201022,\\\"time\\\":9058,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": \"2021-04-28 19:45:23\",\n                    \"estimated_arrival_date\": \"2021-04-28 19:40:23\",\n                    \"location\": {\n                        \"location_id\": 388587,\n                        \"address\": \"231 Haynes Rd\",\n                        \"address_two\": null,\n                        \"city\": \"Avon\",\n                        \"state\": \"Connecticut\",\n                        \"postal_code\": \"06001\",\n                        \"country\": \"US\",\n                        \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"latitude\": 41.77357,\n                        \"longitude\": -72.87228,\n                        \"date_created\": \"2021-04-27 21:32:36\",\n                        \"date_updated\": \"2021-04-27 21:32:36\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909320,\n                \"company_id\": 100,\n                \"job_id\": 2174815,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 00:54:09\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 17:03:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 196205,\n                \"duration_to_next_stop_seconds\": 9121,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": 1,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909319,\n                \"company_id\": 100,\n                \"job_id\": 2174815,\n                \"location_id\": 388587,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 00:54:09\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 17:03:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 196205,\n                \"duration_from_previous_stop_seconds\": 9121,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": 3,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"0\\\",\\\"lat\\\":41.77357,\\\"lng\\\":-72.87228,\\\"sequence\\\":2,\\\"estimatedArrival\\\":\\\"2021-04-28T15:40:23-04:00\\\",\\\"estimatedDeparture\\\":\\\"2021-04-28T15:45:23-04:00\\\",\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"destination\\\",\\\"toWaypoint\\\":\\\"0\\\",\\\"distance\\\":201022,\\\"time\\\":9058,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": \"2021-04-28 19:45:23\",\n                \"estimated_arrival_date\": \"2021-04-28 19:40:23\",\n                \"location\": {\n                    \"location_id\": 388587,\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174816,\n            \"job_number\": 6,\n            \"origin_job_number\": null,\n            \"hash\": \"fgO_1YBkl\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388574,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 16:54:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 9,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": 0,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": \"2021-04-28 16:55:00\",\n            \"driver_reminded_date\": \"2021-04-28 17:03:49\",\n            \"date_created\": \"2021-04-28 16:54:19\",\n            \"date_updated\": \"2021-04-28 17:03:47\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": \"BgRKJnK9o\",\n            \"dispatch_group_order\": 1,\n            \"dispatch_group_optimization_method\": \"single_pickup_optimization\",\n            \"dispatch_group_data\": {\n                \"color\": \"#1F75FE\",\n                \"ignore_time_windows\": 0,\n                \"total_jobs\": 2,\n                \"optimize\": 1\n            },\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": \"2021-04-28 17:03:44\",\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": 0,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/fgO_1YBkl\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909321,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 16:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:20\",\n                    \"date_updated\": \"2021-04-28 17:03:38\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909323,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388574,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 20:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:41\",\n                    \"date_updated\": \"2021-04-28 17:03:44\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": 2,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.68864,\\\"lng\\\":-73.9835,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T13:04:25-04:00\\\",\\\"estimatedDeparture\\\":\\\"2021-04-28T13:09:25-04:00\\\",\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":5232,\\\"time\\\":565,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": \"2021-04-28 17:09:25\",\n                    \"estimated_arrival_date\": \"2021-04-28 17:04:25\",\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909321,\n                \"company_id\": 100,\n                \"job_id\": 2174816,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 16:54:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:20\",\n                \"date_updated\": \"2021-04-28 17:03:38\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909323,\n                \"company_id\": 100,\n                \"job_id\": 2174816,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 20:54:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:41\",\n                \"date_updated\": \"2021-04-28 17:03:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": 2,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.68864,\\\"lng\\\":-73.9835,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T13:04:25-04:00\\\",\\\"estimatedDeparture\\\":\\\"2021-04-28T13:09:25-04:00\\\",\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":5232,\\\"time\\\":565,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": \"2021-04-28 17:09:25\",\n                \"estimated_arrival_date\": \"2021-04-28 17:04:25\",\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 2\n    }\n}"}],"_postman_id":"5bdb748f-12fd-44fa-ac10-21e4a5102293"},{"name":"Get batch route","id":"5304ca63-3e1b-49b7-95a3-871755cf85a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/batch/:batch_id/route","description":"<p>Get the route for a specific group</p>\n","urlObject":{"path":["job","batch",":batch_id","route"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"BgRKJnK9o","key":"batch_id"}]}},"response":[{"id":"5cc3e492-40ee-4663-85af-97f3bf9fe3ba","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/job/batch/:batch_id/route","host":["{{host}}"],"path":["job","batch",":batch_id","route"],"variable":[{"key":"batch_id","value":"BgRKJnK9o"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"38193"},{"key":"ETag","value":"W/\"9531-2ri2nQYakkiY3RfIv1+0tQPqiEU\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:04:29 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"suggested_path_polyline\": \"}}nwFjkkbM?k@?{@?qAv@b@`@Vx@^tAt@HAL@NDxAt@`@Nb@Hr@^v@\\\\|Ah@^HfB`@zAt@\\\\PhCnAhClAr@XvCvAn@XtCrApB~@zBdAlD`Bj@XrAn@n@Xv@`@hJfE|Al@jCz@lCp@pBb@zB`@zCr@v@\\\\h@\\\\TR^\\\\DHh@r@b@`AZ`AJp@RjAFx@?h@IbJWzQI|Fs@fg@ErBGrD?RCjAIx@Kv@Ml@Of@M\\\\Q\\\\[XSJS?SIO[EYF]LSPITC`@Bl@X`@`@n@rAV`ALt@Dp@?TAt@ElBChAEhBAbAAf@\\\\MzAs@`C{@zBaA|@_@j@UXKxCgAxAk@`A_@nDyAvB}@nB}@BbE?h@v@l@nBjAFDz@f@J[KZwAxEyDsBj@kBa@CyDMoEGH_D?c@{@Z_CbAgC~@e@PqCjAu@Zm@Ri@T_A\\\\e@GOMOUF{CBeB@}@EaBI{@k@wCIq@Co@CgD@[FuDDqBLiH^wWDkE\\\\iX@e@JuHAyACc@MoAUyAm@cBg@}@e@i@m@m@iAs@e@Q_Dq@u@OgCi@eDy@sC}@cFqBuFiC]Oc@SmAm@iEsBc@Ua@QqHkDm@Y_Ag@wCuAm@YUKoAi@a@S]QmAq@[OYSeAs@WQ]S[Sg@Ya@U}@i@iC}Ay@e@yA{@}@i@kAy@s@q@uAyA]]aBeBuBiCgBkCoCkEqA{B{@{A}AsCqAyB_B_Dc@w@S_@y@{A}@gBkC_FISwBaEsCeGoB}CsBeDm@kAiAiCs@_B}@aCg@kBg@cCq@aEYwB_@{Ca@cDOcA]qBOw@u@uCw@uBo@oAe@u@]i@c@k@s@cAkA{Ai@q@W[c@i@wA_Bm@q@a@c@kAmAkCyBiBmAaDkBiAo@uA{@}@k@]Ui@q@]]c@[i@eAGu@Ay@ZgEp@_HRqBPuAb@gCb@eAt@qBr@sCbAaFl@gDb@gCtAcIZqBx@gF`@kBb@yAf@yA`AmBrAmBlBeDlCaFv@cBnAmD\\\\uAXuAd@mDL{AVeDRaFHwBFmAPuFn@mOFqB^eHBoB?kBCoAIwAM}AWuB[mB[uAo@uBcAcCuBgEmA_Cy@kBSo@qAeFQyAWyCMeDo@sPQkBUkB[cBm@{B{AcF_B{Fk@kCa@iBUeAaAmFoCyMw@mDs@kDm@iCa@oBa@}A}@yDmAkFwAaHk@wCo@cDiBoJoAaGY{Ak@}CMw@o@_DQcAOu@c@uBo@kDW{BQeBq@sGYsBeAcGg@kDcByGk@uBg@uAa@iA[y@uAuDwAuDWo@{@{B]{@cAiCa@iA_AiCYy@}AqEc@kCEeA?uBFgG?sAA{@Mu@Qi@c@q@q@q@k@Yi@Ka@AaAHw@NcCb@WBu@?uAQ{CqAwAkAQKw@m@m@]uAm@o@QoAUu@GkAAaBJiAPc@Jq@X_@Rk@TeAn@sSdMuAn@gBj@u@RoAPgAN}Df@wEb@u@Di@@}AK}@OoBQgACw@B_BLg@LmA^aDnAYJeAR_ALwAD]EaAIkASuAi@sCuAaAk@c@Ys@YuDyByBuAi@[eB{AsBiBs@y@i@q@w@kA_A{AaCqEoEaJu@{Aa@o@g@y@yAkBaCmCq@o@_CcBgAq@g@YeFkCqB_AgFeCcCgAy@a@oGuCwCgAaAYWIOEaB_@aB[e@I_BUwEe@}Ei@cE_@_@CSCaEgBcCqAaAk@e@Uo@UgAOu@?_BDs@HaAR_AT{At@sAr@QH}Ax@wAv@kF~CwBjAqC~A{CbB_CpAuBjA{\\\\fR{NdI}VjNeIpEi@ZoBfAaBv@cA`@{@V_ARgAPiAHeABgCAoAC_AEoAEyBIkBQs@GgDWoFO_@CuA?qB?aABg@?gBBaEB_FBY@_BB{AHa@JuALiMdAcBNuAVu@N_B^iBf@wAXMBiB\\\\gEx@{AToDd@kEf@m@BmAJmAHeAFyAF{CHqCBsB?oC?gBEkBIeAIm@E_AK]Ei@IkDk@qEeAo@Os@QiEeAk@OqCo@_Ce@_C_@mCWgCOoK[aFUk@EwBYe@I_Bc@e@OoBu@y@a@uAw@m@a@m@e@i@c@][_A}@oBaCk@w@U]U_@OWW_@kA}Aa@g@oBkBsAgAe@a@{@m@sGcFoCwBs@k@i@a@{C_CwFoEoDwC}G}FaIiHsDkDwAwAY[i@k@s@u@_AcAc@e@mBsB_@]}@s@iAs@kB}@}@YmBc@qCW_@CQAq@EsDGoEGiA?aCCmAIeAMiDu@cM{CmFsAwFuAiFqAwCq@_B[oEu@kAOcAKUCSAqEK_FHO@Q@gD^uJ`B{AXs@NcCr@OFwAf@g@Lo@PeAPi@Dc@Bg@CaBMwCm@oA]uBu@aBk@}@SsAUyBWoBGeDAiCSoAWgAc@WMoAo@y@_@_DyAwEsA{AYe@KgAQo@IUC}BSgACqBBsARoAXiBp@WHo@PmANw@A[Cc@CcCc@iA_@aAWq@UkAa@eBq@yAi@qBk@gCq@UEUGsE{@iBYmDg@sBe@i@QoA_@y@[mCcAeBo@yB}@eBaAsAy@eAg@kAq@e@Sg@MsCk@cBe@g@UeAs@_@a@]c@e@s@]q@oA_Du@qAoBsBmAo@iDiBuA}@cA_Aq@q@KOaCeCeAk@k@SmAS{@?w@Dg@L_ARwAr@q@d@mAnA_AnAw@tAKTUj@mAhDUv@c@z@e@x@y@~@_@ZkBt@k@FqAFeCEwEkB}A{@mAm@kBw@q@]cC_AqEuAmC{@oAk@y@i@aA}@]a@[g@e@u@Yk@aBeFeAeDs@_BuAyBgAgAs@q@{BiA_@Mw@WaCY}Ca@wB_@}A]iGsAwAKwAB}AXWL}@\\\\sCrAwAt@YJYJg@Le@Hg@Bg@@g@CiAOQEy@Ya@Q_@MyIkDkBgA_As@UWm@q@eBkCc@_Ai@uAUg@Ma@{@qC{AcFc@kBq@aD}@}FKu@a@_Cm@wC[oAq@}BgAeD_A{BqAiC{@yA}BwC{HgH_B}A{@aAw@cA_BeC{@}A{@iBoAeDu@eCa@_Be@}BWgB[}C[iFYcDKy@Ea@i@}Dg@gD[mCs@{HKy@]kBcAoDm@oAy@yAmAeBsCqCcBoAkF_D_Aq@c@_@aBqBm@aAg@}@]w@q@eBe@wAm@}B{@mEe@gD[yCEm@Eo@I}AMgDCmBD}EBy@DyAHqC@qDC{@IeAIo@S{Am@aCISe@mAw@{AaAqAgBaBaKoGwA}@eBeAmA_Aa@i@a@i@]o@w@_Ba@mA[oAOw@Ge@Kq@YaBUqASeAYwAy@gDeA}Cs@aBq@oAiD_G_AgAwA}AoCkCqAcAcIwFkFoDkAaAoBoBUYw@}@_AgAcG{IcAiAmBeBuBuAuHyEcAo@gDkBIGaAq@cCgCwAsA{AmB_@e@SWyEqGaEuFq@}@iAiAiCmCgB{A_@W_DoBuBaAkAa@yAe@qAYmHaBoCm@iCk@_A[gHuBcIaCs@Uw@YkA]}Bq@UG_@Oy@WmGoBmDgAcCq@{A]qBSe@AoBDaBPgBj@}@V{BtAy@x@uAhBm@hAiBvEoEnLcA~B{@lBMVk@~@a@h@iBxB_A|@qA|@_C`AmA^s@Pm@H}ALu@BoBCkAKu@KuBe@qBi@uEgBo@SwCm@iBWyBMuBI{BEq@DiBRu@NoCh@eIfBoQxDeJpBcTtEeAR}KfCqGxAiJpBoB^k@LkEv@qALqAFkBDsAAeBGeBOyBUu@QyAa@wCaAoDgBiAs@_BiAiAcAqAqAgAqAg@i@yAqB_CaD_MiPy@}@iAgAo@m@YS_BgAmAu@yCyAoAc@}Bo@aASmASeCSqCGqA?sCDeAByFBeIBmBEcBGuACyG]yGm@gReBkBCyAAwLd@kI`@_NXaJCcLg@oBOsFi@gJ{AoAWgAQ}@UaG{AuPmF{By@mCcAyGsCwBeAgCuAu@]GE_@SIE}@_@kIkEgTyKuPwIsQeJ_Bu@_C_AiDiAsA[sBe@aDi@sFg@}AKaDEuKC}BAcIEiBGcBMqDa@{AScCa@gCk@yCw@wFiBaEcB_@OcG_DoEmC_JgF{CmBqEgCqDuB_DcBeMqHsEoCkTcM}IgF}Ay@s@[aEgBwIkCaBa@qF_AaBScBOiEWaDKaLW_GS}Fk@wHoAkEy@gScEo]_HkB[uBUaBIsBAaBDmBL_BR}AZ_B^iFxAkV|Fu@TmEdAaDj@mDTqABwCG}Ca@i@K{J{Aa^eGiAS_F{@qCi@oAOiD]{E[eFQkDAcDBgJZgBN_CPmCXmHz@iG^}HTuDBuCAyEIoIa@{CScHq@oC]MAeBQmF_A}Dy@cDw@iEmAkBk@aHcCcCaAmF_CcAe@iGiDaMuHuCgBkMyH{Au@}D{AyEuAmHsA{Dq@uGyA{DkAwPcGgBc@{ASwAKaB?}AFs@F_BVmCr@gCjAUN{@h@}@r@wDzCuAbAeGfFwCxBeCnAsJvDwMfF{Ax@}BpBkDxDuC`Dc@l@{BxBeAnAg@^g@XcAv@eA|@qBhA{BfAq@VcBf@qCn@{AXyBb@{@Lk@HgBNiBCw@EiBWkBa@iBg@gBm@_@OmAc@g@WwDmBuHuDqD_BmDkAyAa@gOwD_AYc@MiKoCoCw@qCeAcFkC{A{@cCeAyEqAuEgA{Cg@qBWwBQsGUgJOqJWwEMmBIs@GgBUeB]eBi@cBm@uF_CcBo@kBg@_Ba@}AWqBScIk@}Hs@_Dm@s@UgBs@cBy@o@a@{AkAyAqAmHuHeHeH_QoQaB_BqJ}J{DwEuAmBiHsKgAyAmAqAmBcBqA{@uBgAk@UmBk@}AYiCWcBEcBDcBN{ATuAX_AXaD~@_ATaAVcCd@yANk@DwADyAAm@CiCUwAW_@KeBg@gMaFmDkAuEaA{M{A}Eq@sA]uAc@qAi@wBiAsCuBeBcB_AeA_AgAo@_AgB_CcBsBiHqIyKcNsDuEkEiF_E}EeQiTeDcE}A{B_AmAkAgBe@s@iNsSsOkUaM{Qo@_Aw@oAeKiOqBcDcAiBcC}EuByEu@iB_CwG_Twq@_@kAm@mBoHyU_BaEgAqBmAiBa@i@_CuCyAmAyAgA{AaAeB{@gBo@_Co@yAW}AScBUoBYyEq@eE{@gA]sAa@wAi@qDuA_AyASc@Qi@c@kBqByIYoA}@}DIm@E{A@i@Fi@F]Lq@dBoEp@eBjAyC|A}DrKqXVq@Zu@p@wBdAwDx@{D`@aCR}AR{Ad@uFJuCFgFBcB@o@GeDe@mK_Cwf@g@uIkEk}@[_Eq@_G{@_GiAyFsAsFaGoUoAqF}@sEg@_Dc@yBy@{FSgB_@{CO_BYsBw@yDu@wCkBkGc@oAoCgIkBwGm@yCy@iGM{AOwF?kBBiBPeEDyAPeBXwB`AcFv@wCtAwElAqEZoA\\\\gBh@eF`@uLBgAFqD`@eQR{GN{EJqDRuILaEf@uHT_CR_BrH_e@|AcJN}@nF{^b@}B`@}BrAcF|AsEfAmC\\\\y@v@}Bb@kBVgBNaBFkA?eDK{BUkBc@_C[mAc@uB[qAE]W}AO{A_@sE[kBa@wA_A{BaAyAo@m@wBoAcAYmBY_EHo@Fo@F{Ad@e@Ra@TsNvFiAb@a@F_ARgBXK?o@B{AA{BUcAYwAe@yBsA_CmBqCsCwC{D}CmFk@mAmB_Fy@mCu@}Ce@{ByDuVaAwDg@aBOg@Wm@cAcCwB_EsBmCaDiDgBaBwB_CgGkGaAaAwAkBg@o@cDuEcDiGgB_EmCaHSs@Oi@_@wAi@uBq@qCm@oCWqAyAaLwBaU}@gI_AaHcBaKsAuH_BcJw@_EmDsSUkAeAqHIo@i@{DeBaNYcDOsC?mBJ_DTqCT_B`@_CZ_APc@j@cBfB_FlBuEzEkLt@sBr@uBZiAt@aGHaBD}@CiF?]WgEUkBm@oCy@iCm@cBwC{GMU]_AsBeFgBcE{@_CcA_Eo@oD[sBUeC_ByV_@_EWwB_@eCiAgFk@kB}CeIaCiGYu@eBqEwCiHsBmFyB}HcAoFc@uDgAiNcB{XG}C@qDLqCPqBTmBd@gCp@eCj@iBpCuJ~@aE`@sB\\\\{BVkDF{B?}CEyBOkC_@gDc@eCi@{Bo@yBiAcEg@kBaCgI{BkIc@cCUsAa@gDMmBCgBEsBAiEFo\\\\AuDEmEGcBC}@OgDaBkVe@qHSuCM{G@wCF_Ex@iUBsBEuFMiCW{Cu@}Es@aDcGgT_AqDYgBYyBSqBIwAEiB?eENuC@q@`@gDb@aC\\\\_Bf@gBdQqh@jAcD`CsFjVoh@`CkFtHuPr@}AbAiCn@eBfBqGp@cE`@aEXsCp@qFfA{Jd@_EDa@zAqO`AkINcBb@wD~C}X`@yEPqD@{BKqDMmAQaBw@mEGMc@uA_AiC_@w@o@oA_AwA{AiB}BmBaD{CeQyOyGoGqNuM{UyVsFcGsCmCiM_N_BuAmA{@mBiAgB}@qBu@iBa@mBW{C?}AHmAPwA^qEhBsAn@uGvCuG|B[JkATgCd@e@LaBTuEXqADqCIc@AyCOkCYiCi@sCw@i@UmAi@aEcCm@s@a@a@oAgBMUsAcCoAcDwAuFuEaQ}BuI_@uAgC}Hy@iB_A_Bo@_Ac@e@_E_EsAoAsDkDu@w@yBkCw@iAYa@aAeBiA_CkB_EaLsWuFcM}AeDoA{BoA_B_@g@_@c@UUcDiCg@]_EmCsFiDq@e@cBiAeC_BsA}@u@m@oAaAaBoA_B}AaB}Aq@w@a@c@w@{@{AeBoDyFwDcHs@wA}C{HiBqGyAeH_@{BkBgMqAiI{CuQiHy_@eGuXaIwZiL_b@uKu`@{BeIoAoEkAiEkHuW_HyViB}EwAoDe@{@g@{@uGmJsFcHMQgAuAiKoNgBqCsBoDe@y@gA{B}@kBoBaEuOe\\\\gBsDiOe\\\\gEgMwBmJa@oByBeKyIsb@mBeJmAeGwAeH_A{EaC_L{DyR_A{FoC}ReByKyHmi@mC_QyAeH{N}f@mAeDsAqCgAmBiB}B}A}A{AmAgBiA{As@eCu@iB]mAQcBImAEoGCcJBoAA}Fc@uAQ_FmA_Bm@cBy@{D{BkDwCyB_Co@w@_@g@yC}EoAcCu@iBy@{BSk@gAwDaAmDu@mCa@{AgAkD_@cAy@kBqCqFkAkBgFkHeAyAwLyPo@eAc@}@s@qB]aAYgAa@uB[mCq@oLe@}Hm@cDmAwE_@uAgAyDcBaGKQg@uBa@mB]eB_@wB]iCc@cDi@kJAUAk@EgBCiA?s@?QCmAMkDG}CIgECkCAq@GwCCoACcAAuA?Y?WEuBAiC?qCNoBd@oD`AwFRkARqBFk@@yACoBa@sGScEK}AKaEDaEHcA`@kEn@uCv@oCdAaC`@w@hBiCbAeAx@q@ZWtBoAlAg@|MgDpAk@dAi@tAy@bBmAjBuBh@s@l@{@jAoBt@aBd@qAhEaLp@oBPm@Na@z@qDXoAb@gCNeATyBd@oG^}H^oHr@}JRkCz@wIxBgRJaC@eCAyAEiASaCi@qDsAuFy@}CcJc^_BiGwCgLU_A{AyFuCmLUmAWmBQkCK}BA_CDkBLyBh@eE`@sBl@yBhCsHVw@pByFrF_PhC}HpD{KbAyClAoDlEmM|@cD^yBTsATuBJqBDiB?gBOaDKwAYwBk@iCs@qCw@wB}@_BaAyAgAoA}@iAiAsA}C{D}@uAy@cBq@aBm@gBQ}@UgAMyAS_D_@}K_@uIMeD[wDQsAScAa@qB}@{Cg@sAy@iBg@aA]g@wAsBeu@{}@}BwCsAwBmAwBy@aBgAiCgFoOcCyHgBoF{@kCg@{ASk@eGeRm@mB{DiL_@aAsAwCs@_A_A}@}@y@uBaB_FkD_GcEuByAgAy@_JwGa@WuAcAkEwCkA}@sJkHyBaBiCyBkDsCa@[iLsJiFiEi@e@{CgCcBuAu@o@oC{BiB{A_Aq@w@c@u@g@w@_@cDsA}@SmA[sAYqBSoCM_B?y@AwE`@gCp@yAp@wCfBcCdBaBlAwDlCiEdCmEhBwCt@qB\\\\iBVkBF_AFoEAuAGaGk@yC_@iFm@uP_B}YwCmFu@gC]iBWmEsAiCgAw@c@gBmAoB{AsFyDsBwAaAu@uCuBo@e@wIeGiBuAeEkEeAqAuBwCuBwD_CcFmNe[uEgJiGqJmMkRCEoLcQIMoAiB_FoH}A_CqGmJw@cAsBqC}CuDy@{@qEuEcFsEsI}Ggi@ea@cZcUwC{BuHwFsCwBcDeCyFgEcHoFgFwDaD_CqEoCuEgCkCsAqD}AiBs@{Aq@_FoBqAi@{Am@{CmAaC_ASIyCmAg@Um@e@sAmAm@s@m@eAk@eAq@gB_@yAYwAS{AMoASuJ@mCDmCJgBHeBfAoMv@mJXaD`@oEVmCl@eFd@oGBs@LyCBu@?_BA}@KcCUiBY{AKa@i@eBwAsCo@_Au@}@{@u@}A_A_@O}@_@uBs@iBc@gKkCuBc@}Dw@oBi@q@QiD{@qCs@_HeBmBg@q@OqD}@gHeBu@SsCo@{MgDuAa@sBm@gBw@iDcBy@g@_jAwu@mCgBiDmBeE}BiD}A_GgCc@SiGkC}Ao@iMkFyDcBad@kRaBw@}D{BwAgAc@]SQy@s@q@m@{Aw@_Bi@iASkBIaAJ_AT}@`@}AlAcB`Cc@|@]hA[vAi@hFIlBC|AIhGCdZ?`C@pG?~E?bA?|A?vAA|BG`GMbBM~@yAvGMb@cBzFoAfEg@xCe@lICb@UdBQv@Q~@G`ACbA@v@Ht@Lj@|@xBJTr@|AHZ?ZEXGPc@nAYz@Wt@ITo@dB]~@Sj@[`Ay@zBMd@_AjBc@v@eAvAu@dAgBbCgExFgGjIs@`AaBxBiAhBeAvBeBtDo@xAa@z@oIpRaGrMmFxLm@nAo@vAyDrIkC|Fg@pASv@[nCUvCGb@m@dI]vEQrBuBj@}GrBaR`G{F~AgDf@wDf@oKlA{BTqAL}@RcAl@s@v@a@d@m@p@[X[Vu@\\\\_ANy@B}AD]DMFWRmA`Ag@Jq@DyBKs@C{AGi@CyJf@kB?qDGqB?k@F_C\\\\eAPa@J}A^gGz@cHhA}AVoBZuFfAmDh@iI~AiAZaBb@_CbA{FfDbAfEHb@@d@AhDWlHBnADr@RvAZhAn@pAl@|@v@~@Zj@HZH`@@v@OfCC`A@d@RbBRl@o@j@aDzAaAp@_@f@Wb@Sj@Mj@\",\n        \"actual_traveled_path_polyline\": null,\n        \"directions\": {\n            \"routes\": [\n                {\n                    \"legs\": [\n                        {\n                            \"distance\": {\n                                \"text\": \"3.3 mi\",\n                                \"value\": 5232\n                            },\n                            \"duration\": {\n                                \"text\": \"14 minutes\",\n                                \"value\": 865\n                            },\n                            \"end_address\": \"\",\n                            \"end_location\": {\n                                \"lat\": 40.6887348,\n                                \"lng\": -73.983437\n                            },\n                            \"start_address\": \"\",\n                            \"start_location\": {\n                                \"lat\": 40.714066,\n                                \"lng\": -73.9552617\n                            },\n                            \"steps\": [\n                                {\n                                    \"distance\": {\n                                        \"text\": \"472 ft\",\n                                        \"value\": 144\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 29\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Marcy Ave</b> toward <b><b>I-278 W</b></b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"2.17 mi\",\n                                        \"value\": 3494\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"3 minutes\",\n                                        \"value\": 201\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> and take ramp onto <b>I-278 W</b> <b>(Brooklyn Queens Expy)</b> toward <b><b>Bklyn-Qns Expwy</b>/<b>Staten Is</b></b>\",\n                                    \"maneuver\": \"ramp-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.31 mi\",\n                                        \"value\": 504\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 111\n                                    },\n                                    \"html_instructions\": \"Take exit <b>29</b> toward <b><b>Tillary St</b>/<b>Manhattan Br</b>/<b>Bklyn Civic Center</b></b> onto <b>Tillary St</b>\",\n                                    \"maneuver\": \"ramp-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.46 mi\",\n                                        \"value\": 748\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"2 minutes\",\n                                        \"value\": 143\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Flatbush Ave Ext</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"331 ft\",\n                                        \"value\": 101\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 19\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>De Kalb Ave</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"488 ft\",\n                                        \"value\": 149\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 32\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Bond St</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"42 ft\",\n                                        \"value\": 13\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 2\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Livingston St</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                }\n                            ],\n                            \"traffic_speed_entry\": [],\n                            \"via_waypoint\": [],\n                            \"start_stop\": {\n                                \"job_stop_id\": 3909321,\n                                \"company_id\": 100,\n                                \"job_id\": 2174816,\n                                \"location_id\": 388586,\n                                \"actual_location_id\": null,\n                                \"user_id\": null,\n                                \"type\": \"pickup\",\n                                \"meta\": null,\n                                \"status_id\": 1,\n                                \"arrival_date\": \"2021-04-28 16:54:00\",\n                                \"actual_arrival_date\": null,\n                                \"in_progress_date\": null,\n                                \"completed_date\": null,\n                                \"cancelled_date\": null,\n                                \"contact_phone_country\": null,\n                                \"contact_phone\": null,\n                                \"contact_name\": null,\n                                \"notes\": null,\n                                \"driver_notes\": null,\n                                \"internal_notes\": null,\n                                \"order\": 1,\n                                \"attachments\": null,\n                                \"date_created\": \"2021-04-27 21:32:35\",\n                                \"date_updated\": \"2021-04-27 21:32:35\",\n                                \"date_deleted\": null,\n                                \"distance_to_next_stop_meters\": 5232,\n                                \"duration_to_next_stop_seconds\": 865,\n                                \"distance_from_previous_stop_meters\": 0,\n                                \"duration_from_previous_stop_seconds\": 0,\n                                \"wait_time_seconds\": null,\n                                \"total_duration_seconds\": null,\n                                \"return_stop_id\": null,\n                                \"recipient\": null,\n                                \"apartment_number\": null,\n                                \"cancellation_reason\": null,\n                                \"contact_phone_international\": null,\n                                \"contact_phone_national\": null,\n                                \"dispatch_group_order\": null,\n                                \"skip_stop\": 0,\n                                \"time_window_end_time\": null,\n                                \"time_window_start_time\": null,\n                                \"time_window_waiting_time_seconds\": null,\n                                \"ignore_time_windows\": 0,\n                                \"routing_data\": null,\n                                \"estimated_departure_date\": null,\n                                \"estimated_arrival_date\": null,\n                                \"location\": {\n                                    \"location_id\": 388586,\n                                    \"address\": \"385 Metropolitan Ave\",\n                                    \"address_two\": null,\n                                    \"city\": \"Brooklyn\",\n                                    \"state\": \"New York\",\n                                    \"postal_code\": \"11211\",\n                                    \"country\": \"US\",\n                                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                    \"latitude\": 40.71407,\n                                    \"longitude\": -73.95536,\n                                    \"date_created\": \"2021-04-27 21:32:35\",\n                                    \"date_updated\": \"2021-04-27 21:32:35\",\n                                    \"place_id\": null,\n                                    \"apartment_number\": null,\n                                    \"types\": [\n                                        \"point\"\n                                    ],\n                                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                                    \"company_id\": null\n                                },\n                                \"status\": {\n                                    \"status_id\": 1,\n                                    \"name\": \"Pending\",\n                                    \"slug\": \"pending\",\n                                    \"order\": 10\n                                },\n                                \"address\": \"385 Metropolitan Ave\",\n                                \"address_two\": null,\n                                \"city\": \"Brooklyn\",\n                                \"state\": \"New York\",\n                                \"postal_code\": \"11211\",\n                                \"country\": \"US\",\n                                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                                \"latitude\": 40.71407,\n                                \"longitude\": -73.95536,\n                                \"place_id\": null,\n                                \"types\": [\n                                    \"point\"\n                                ],\n                                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\"\n                            },\n                            \"end_stop\": {\n                                \"job_stop_id\": 3909323,\n                                \"company_id\": 100,\n                                \"job_id\": 2174816,\n                                \"location_id\": 388574,\n                                \"actual_location_id\": null,\n                                \"user_id\": null,\n                                \"type\": \"dropoff\",\n                                \"meta\": null,\n                                \"status_id\": 1,\n                                \"arrival_date\": \"2021-04-28 20:54:00\",\n                                \"actual_arrival_date\": null,\n                                \"in_progress_date\": null,\n                                \"completed_date\": null,\n                                \"cancelled_date\": null,\n                                \"contact_phone_country\": null,\n                                \"contact_phone\": null,\n                                \"contact_name\": null,\n                                \"notes\": null,\n                                \"driver_notes\": null,\n                                \"internal_notes\": null,\n                                \"order\": 2,\n                                \"attachments\": null,\n                                \"date_created\": \"2021-03-09 20:40:53\",\n                                \"date_updated\": \"2021-03-09 20:40:53\",\n                                \"date_deleted\": null,\n                                \"distance_to_next_stop_meters\": 201022,\n                                \"duration_to_next_stop_seconds\": 9358,\n                                \"distance_from_previous_stop_meters\": 5232,\n                                \"duration_from_previous_stop_seconds\": 865,\n                                \"wait_time_seconds\": null,\n                                \"total_duration_seconds\": null,\n                                \"return_stop_id\": null,\n                                \"recipient\": null,\n                                \"apartment_number\": null,\n                                \"cancellation_reason\": null,\n                                \"contact_phone_international\": null,\n                                \"contact_phone_national\": null,\n                                \"dispatch_group_order\": 2,\n                                \"skip_stop\": 0,\n                                \"time_window_end_time\": null,\n                                \"time_window_start_time\": null,\n                                \"time_window_waiting_time_seconds\": null,\n                                \"ignore_time_windows\": 0,\n                                \"routing_data\": {\n                                    \"id\": \"0\",\n                                    \"lat\": 40.68864,\n                                    \"lng\": -73.9835,\n                                    \"sequence\": 1,\n                                    \"estimatedArrival\": \"2021-04-28T17:13:52Z\",\n                                    \"estimatedDeparture\": \"2021-04-28T17:18:52Z\",\n                                    \"fulfilledConstraints\": [\n                                        \"st:300\"\n                                    ],\n                                    \"fromWaypoint\": \"origin\",\n                                    \"toWaypoint\": \"0\",\n                                    \"distance\": 5232,\n                                    \"time\": 565,\n                                    \"rest\": 0,\n                                    \"waiting\": 0\n                                },\n                                \"estimated_departure_date\": \"2021-04-28 17:09:25\",\n                                \"estimated_arrival_date\": \"2021-04-28 17:04:25\",\n                                \"location\": {\n                                    \"location_id\": 388574,\n                                    \"address\": \"33 Bond St\",\n                                    \"address_two\": null,\n                                    \"city\": \"Brooklyn\",\n                                    \"state\": \"New York\",\n                                    \"postal_code\": \"11201\",\n                                    \"country\": \"US\",\n                                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                    \"latitude\": 40.68864,\n                                    \"longitude\": -73.9835,\n                                    \"date_created\": \"2021-03-09 20:40:53\",\n                                    \"date_updated\": \"2021-03-09 20:40:53\",\n                                    \"place_id\": null,\n                                    \"apartment_number\": null,\n                                    \"types\": [\n                                        \"point\"\n                                    ],\n                                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                                    \"company_id\": null\n                                },\n                                \"status\": {\n                                    \"status_id\": 1,\n                                    \"name\": \"Pending\",\n                                    \"slug\": \"pending\",\n                                    \"order\": 10\n                                },\n                                \"address\": \"33 Bond St\",\n                                \"address_two\": null,\n                                \"city\": \"Brooklyn\",\n                                \"state\": \"New York\",\n                                \"postal_code\": \"11201\",\n                                \"country\": \"US\",\n                                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                \"latitude\": 40.68864,\n                                \"longitude\": -73.9835,\n                                \"place_id\": null,\n                                \"types\": [\n                                    \"point\"\n                                ],\n                                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                                \"original_index\": \"0\"\n                            }\n                        },\n                        {\n                            \"distance\": {\n                                \"text\": \"124.9 mi\",\n                                \"value\": 201022\n                            },\n                            \"duration\": {\n                                \"text\": \"2 hours, 35 minutes\",\n                                \"value\": 9358\n                            },\n                            \"end_address\": \"\",\n                            \"end_location\": {\n                                \"lat\": 41.77357,\n                                \"lng\": -72.87228\n                            },\n                            \"start_address\": \"\",\n                            \"start_location\": {\n                                \"lat\": 40.6887348,\n                                \"lng\": -73.983437\n                            },\n                            \"steps\": [\n                                {\n                                    \"distance\": {\n                                        \"text\": \"374 ft\",\n                                        \"value\": 114\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 20\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Elm Pl</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"170 ft\",\n                                        \"value\": 52\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 23\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Fulton St</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.15 mi\",\n                                        \"value\": 239\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 37\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Albee Sq</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"223 ft\",\n                                        \"value\": 68\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 26\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Willoughby St</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.27 mi\",\n                                        \"value\": 438\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 93\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Flatbush Ave Ext</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.11 mi\",\n                                        \"value\": 180\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 42\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Tillary St</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"3.55 mi\",\n                                        \"value\": 5706\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"5 minutes\",\n                                        \"value\": 332\n                                    },\n                                    \"html_instructions\": \"Take <b>left</b> ramp onto <b>I-278 E</b> <b>(Brooklyn Queens Expy)</b> toward <b><b>Bklyn-Qns Expwy</b>/<b>Queens</b>/<b>Bronx</b></b>\",\n                                    \"maneuver\": \"ramp-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.79 mi\",\n                                        \"value\": 1267\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 79\n                                    },\n                                    \"html_instructions\": \"Keep <b>right</b> onto <b>I-278</b> <b>(Brooklyn Queens Expy)</b> toward <b><b>Long Is Expwy</b>/<b>I-495</b>/<b>Midtown Tun</b>/<b>Eastern Long Is</b>/<b>48 St</b></b>\",\n                                    \"maneuver\": \"fork-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"4.20 mi\",\n                                        \"value\": 6767\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"6 minutes\",\n                                        \"value\": 375\n                                    },\n                                    \"html_instructions\": \"Take exit <b>35A-B</b> toward <b><b>Eastern Long Is</b></b> onto <b>I-495 E</b> <b>(Long Island Expy)</b>\",\n                                    \"maneuver\": \"ramp-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"7.34 mi\",\n                                        \"value\": 11814\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"11 minutes\",\n                                        \"value\": 670\n                                    },\n                                    \"html_instructions\": \"Take exit <b>22A-E</b> toward <b><b>Van Wyck Expwy</b></b> onto <b>I-678</b> <b>(Van Wyck Expy)</b>\",\n                                    \"maneuver\": \"ramp-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"16.09 mi\",\n                                        \"value\": 25896\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"20 minutes\",\n                                        \"value\": 1218\n                                    },\n                                    \"html_instructions\": \"Continue on <b>Hutchinson River Pkwy N</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"1.43 mi\",\n                                        \"value\": 2303\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 98\n                                    },\n                                    \"html_instructions\": \"Keep <b>left</b> onto <b>I-684</b> toward <b><b>Brewster</b></b>\",\n                                    \"maneuver\": \"fork-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"3.84 mi\",\n                                        \"value\": 6179\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"3 minutes\",\n                                        \"value\": 226\n                                    },\n                                    \"html_instructions\": \"Keep <b>left</b> onto <b>I-684</b>\",\n                                    \"maneuver\": \"fork-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"1.42 mi\",\n                                        \"value\": 2284\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 78\n                                    },\n                                    \"html_instructions\": \"Continue on <b>I-684</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"21.53 mi\",\n                                        \"value\": 34643\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"20 minutes\",\n                                        \"value\": 1223\n                                    },\n                                    \"html_instructions\": \"Continue on <b>I-684</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"3.23 mi\",\n                                        \"value\": 5206\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"3 minutes\",\n                                        \"value\": 236\n                                    },\n                                    \"html_instructions\": \"Take exit <b>9E</b> toward <b><b>Danbury</b></b> onto <b>I-84 E</b>\",\n                                    \"maneuver\": \"ramp-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"54.12 mi\",\n                                        \"value\": 87105\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"56 minutes\",\n                                        \"value\": 3370\n                                    },\n                                    \"html_instructions\": \"Continue on <b>I-84</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"3.60 mi\",\n                                        \"value\": 5796\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"7 minutes\",\n                                        \"value\": 420\n                                    },\n                                    \"html_instructions\": \"Take <b>left</b> exit <b>39</b> toward <b><b>Farmington</b></b> onto <b>CT-4</b> <b>(Farmington Ave)</b>\",\n                                    \"maneuver\": \"ramp-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"1.57 mi\",\n                                        \"value\": 2520\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"3 minutes\",\n                                        \"value\": 208\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Brickyard Rd</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.46 mi\",\n                                        \"value\": 742\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 67\n                                    },\n                                    \"html_instructions\": \"Continue on <b>Harris Rd</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.32 mi\",\n                                        \"value\": 520\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 49\n                                    },\n                                    \"html_instructions\": \"Continue on <b>W Avon Rd</b> <b>(CT-167)</b>\",\n                                    \"maneuver\": \"straight\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.50 mi\",\n                                        \"value\": 808\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"1 minute\",\n                                        \"value\": 112\n                                    },\n                                    \"html_instructions\": \"Turn <b>left</b> onto <b>Haynes Rd</b>\",\n                                    \"maneuver\": \"turn-left\"\n                                },\n                                {\n                                    \"distance\": {\n                                        \"text\": \"0.16 mi\",\n                                        \"value\": 258\n                                    },\n                                    \"duration\": {\n                                        \"text\": \"0 minutes\",\n                                        \"value\": 34\n                                    },\n                                    \"html_instructions\": \"Turn <b>right</b> onto <b>Haynes Rd</b>\",\n                                    \"maneuver\": \"turn-right\"\n                                }\n                            ],\n                            \"traffic_speed_entry\": [],\n                            \"via_waypoint\": [],\n                            \"start_stop\": {\n                                \"job_stop_id\": 3909323,\n                                \"company_id\": 100,\n                                \"job_id\": 2174816,\n                                \"location_id\": 388574,\n                                \"actual_location_id\": null,\n                                \"user_id\": null,\n                                \"type\": \"dropoff\",\n                                \"meta\": null,\n                                \"status_id\": 1,\n                                \"arrival_date\": \"2021-04-28 20:54:00\",\n                                \"actual_arrival_date\": null,\n                                \"in_progress_date\": null,\n                                \"completed_date\": null,\n                                \"cancelled_date\": null,\n                                \"contact_phone_country\": null,\n                                \"contact_phone\": null,\n                                \"contact_name\": null,\n                                \"notes\": null,\n                                \"driver_notes\": null,\n                                \"internal_notes\": null,\n                                \"order\": 2,\n                                \"attachments\": null,\n                                \"date_created\": \"2021-03-09 20:40:53\",\n                                \"date_updated\": \"2021-03-09 20:40:53\",\n                                \"date_deleted\": null,\n                                \"distance_to_next_stop_meters\": 201022,\n                                \"duration_to_next_stop_seconds\": 9358,\n                                \"distance_from_previous_stop_meters\": 5232,\n                                \"duration_from_previous_stop_seconds\": 865,\n                                \"wait_time_seconds\": null,\n                                \"total_duration_seconds\": null,\n                                \"return_stop_id\": null,\n                                \"recipient\": null,\n                                \"apartment_number\": null,\n                                \"cancellation_reason\": null,\n                                \"contact_phone_international\": null,\n                                \"contact_phone_national\": null,\n                                \"dispatch_group_order\": 2,\n                                \"skip_stop\": 0,\n                                \"time_window_end_time\": null,\n                                \"time_window_start_time\": null,\n                                \"time_window_waiting_time_seconds\": null,\n                                \"ignore_time_windows\": 0,\n                                \"routing_data\": {\n                                    \"id\": \"0\",\n                                    \"lat\": 40.68864,\n                                    \"lng\": -73.9835,\n                                    \"sequence\": 1,\n                                    \"estimatedArrival\": \"2021-04-28T17:13:52Z\",\n                                    \"estimatedDeparture\": \"2021-04-28T17:18:52Z\",\n                                    \"fulfilledConstraints\": [\n                                        \"st:300\"\n                                    ],\n                                    \"fromWaypoint\": \"origin\",\n                                    \"toWaypoint\": \"0\",\n                                    \"distance\": 5232,\n                                    \"time\": 565,\n                                    \"rest\": 0,\n                                    \"waiting\": 0\n                                },\n                                \"estimated_departure_date\": \"2021-04-28 17:09:25\",\n                                \"estimated_arrival_date\": \"2021-04-28 17:04:25\",\n                                \"location\": {\n                                    \"location_id\": 388574,\n                                    \"address\": \"33 Bond St\",\n                                    \"address_two\": null,\n                                    \"city\": \"Brooklyn\",\n                                    \"state\": \"New York\",\n                                    \"postal_code\": \"11201\",\n                                    \"country\": \"US\",\n                                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                    \"latitude\": 40.68864,\n                                    \"longitude\": -73.9835,\n                                    \"date_created\": \"2021-03-09 20:40:53\",\n                                    \"date_updated\": \"2021-03-09 20:40:53\",\n                                    \"place_id\": null,\n                                    \"apartment_number\": null,\n                                    \"types\": [\n                                        \"point\"\n                                    ],\n                                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                                    \"company_id\": null\n                                },\n                                \"status\": {\n                                    \"status_id\": 1,\n                                    \"name\": \"Pending\",\n                                    \"slug\": \"pending\",\n                                    \"order\": 10\n                                },\n                                \"address\": \"33 Bond St\",\n                                \"address_two\": null,\n                                \"city\": \"Brooklyn\",\n                                \"state\": \"New York\",\n                                \"postal_code\": \"11201\",\n                                \"country\": \"US\",\n                                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                                \"latitude\": 40.68864,\n                                \"longitude\": -73.9835,\n                                \"place_id\": null,\n                                \"types\": [\n                                    \"point\"\n                                ],\n                                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                                \"original_index\": \"0\"\n                            },\n                            \"end_stop\": {\n                                \"job_stop_id\": 3909319,\n                                \"company_id\": 100,\n                                \"job_id\": 2174815,\n                                \"location_id\": 388587,\n                                \"actual_location_id\": null,\n                                \"user_id\": null,\n                                \"type\": \"dropoff\",\n                                \"meta\": null,\n                                \"status_id\": 1,\n                                \"arrival_date\": \"2021-04-29 00:54:09\",\n                                \"actual_arrival_date\": null,\n                                \"in_progress_date\": null,\n                                \"completed_date\": null,\n                                \"cancelled_date\": null,\n                                \"contact_phone_country\": null,\n                                \"contact_phone\": null,\n                                \"contact_name\": null,\n                                \"notes\": null,\n                                \"driver_notes\": null,\n                                \"internal_notes\": null,\n                                \"order\": 3,\n                                \"attachments\": null,\n                                \"date_created\": \"2021-04-27 21:32:36\",\n                                \"date_updated\": \"2021-04-27 21:32:36\",\n                                \"date_deleted\": null,\n                                \"distance_to_next_stop_meters\": 0,\n                                \"duration_to_next_stop_seconds\": 0,\n                                \"distance_from_previous_stop_meters\": 201022,\n                                \"duration_from_previous_stop_seconds\": 9358,\n                                \"wait_time_seconds\": null,\n                                \"total_duration_seconds\": null,\n                                \"return_stop_id\": null,\n                                \"recipient\": null,\n                                \"apartment_number\": null,\n                                \"cancellation_reason\": null,\n                                \"contact_phone_international\": null,\n                                \"contact_phone_national\": null,\n                                \"dispatch_group_order\": 3,\n                                \"skip_stop\": 0,\n                                \"time_window_end_time\": null,\n                                \"time_window_start_time\": null,\n                                \"time_window_waiting_time_seconds\": null,\n                                \"ignore_time_windows\": 0,\n                                \"routing_data\": {\n                                    \"id\": \"destination\",\n                                    \"lat\": 41.77357,\n                                    \"lng\": -72.87228,\n                                    \"sequence\": 2,\n                                    \"estimatedArrival\": \"2021-04-28T19:49:50Z\",\n                                    \"estimatedDeparture\": null,\n                                    \"fulfilledConstraints\": [\n                                        \"st:300\"\n                                    ],\n                                    \"fromWaypoint\": \"0\",\n                                    \"toWaypoint\": \"destination\",\n                                    \"distance\": 201022,\n                                    \"time\": 9058,\n                                    \"rest\": 0,\n                                    \"waiting\": 0\n                                },\n                                \"estimated_departure_date\": \"2021-04-28 19:45:23\",\n                                \"estimated_arrival_date\": \"2021-04-28 19:40:23\",\n                                \"location\": {\n                                    \"location_id\": 388587,\n                                    \"address\": \"231 Haynes Rd\",\n                                    \"address_two\": null,\n                                    \"city\": \"Avon\",\n                                    \"state\": \"Connecticut\",\n                                    \"postal_code\": \"06001\",\n                                    \"country\": \"US\",\n                                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                                    \"latitude\": 41.77357,\n                                    \"longitude\": -72.87228,\n                                    \"date_created\": \"2021-04-27 21:32:36\",\n                                    \"date_updated\": \"2021-04-27 21:32:36\",\n                                    \"place_id\": null,\n                                    \"apartment_number\": null,\n                                    \"types\": [\n                                        \"point\"\n                                    ],\n                                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                                    \"company_id\": null\n                                },\n                                \"status\": {\n                                    \"status_id\": 1,\n                                    \"name\": \"Pending\",\n                                    \"slug\": \"pending\",\n                                    \"order\": 10\n                                },\n                                \"address\": \"231 Haynes Rd\",\n                                \"address_two\": null,\n                                \"city\": \"Avon\",\n                                \"state\": \"Connecticut\",\n                                \"postal_code\": \"06001\",\n                                \"country\": \"US\",\n                                \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                                \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                                \"latitude\": 41.77357,\n                                \"longitude\": -72.87228,\n                                \"place_id\": null,\n                                \"types\": [\n                                    \"point\"\n                                ],\n                                \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\"\n                            }\n                        }\n                    ],\n                    \"overview_polyline\": {\n                        \"points\": \"}}nwFjkkbM?k@?{@?qAv@b@`@Vx@^tAt@HAL@NDxAt@`@Nb@Hr@^v@\\\\|Ah@^HfB`@zAt@\\\\PhCnAhClAr@XvCvAn@XtCrApB~@zBdAlD`Bj@XrAn@n@Xv@`@hJfE|Al@jCz@lCp@pBb@zB`@zCr@v@\\\\h@\\\\TR^\\\\DHh@r@b@`AZ`AJp@RjAFx@?h@IbJWzQI|Fs@fg@ErBGrD?RCjAIx@Kv@Ml@Of@M\\\\Q\\\\[XSJS?SIO[EYF]LSPITC`@Bl@X`@`@n@rAV`ALt@Dp@?TAt@ElBChAEhBAbAAf@\\\\MzAs@`C{@zBaA|@_@j@UXKxCgAxAk@`A_@nDyAvB}@nB}@BbE?h@v@l@nBjAFDz@f@J[KZwAxEyDsBj@kBa@CyDMoEGH_D?c@{@Z_CbAgC~@e@PqCjAu@Zm@Ri@T_A\\\\e@GOMOUF{CBeB@}@EaBI{@k@wCIq@Co@CgD@[FuDDqBLiH^wWDkE\\\\iX@e@JuHAyACc@MoAUyAm@cBg@}@e@i@m@m@iAs@e@Q_Dq@u@OgCi@eDy@sC}@cFqBuFiC]Oc@SmAm@iEsBc@Ua@QqHkDm@Y_Ag@wCuAm@YUKoAi@a@S]QmAq@[OYSeAs@WQ]S[Sg@Ya@U}@i@iC}Ay@e@yA{@}@i@kAy@s@q@uAyA]]aBeBuBiCgBkCoCkEqA{B{@{A}AsCqAyB_B_Dc@w@S_@y@{A}@gBkC_FISwBaEsCeGoB}CsBeDm@kAiAiCs@_B}@aCg@kBg@cCq@aEYwB_@{Ca@cDOcA]qBOw@u@uCw@uBo@oAe@u@]i@c@k@s@cAkA{Ai@q@W[c@i@wA_Bm@q@a@c@kAmAkCyBiBmAaDkBiAo@uA{@}@k@]Ui@q@]]c@[i@eAGu@Ay@ZgEp@_HRqBPuAb@gCb@eAt@qBr@sCbAaFl@gDb@gCtAcIZqBx@gF`@kBb@yAf@yA`AmBrAmBlBeDlCaFv@cBnAmD\\\\uAXuAd@mDL{AVeDRaFHwBFmAPuFn@mOFqB^eHBoB?kBCoAIwAM}AWuB[mB[uAo@uBcAcCuBgEmA_Cy@kBSo@qAeFQyAWyCMeDo@sPQkBUkB[cBm@{B{AcF_B{Fk@kCa@iBUeAaAmFoCyMw@mDs@kDm@iCa@oBa@}A}@yDmAkFwAaHk@wCo@cDiBoJoAaGY{Ak@}CMw@o@_DQcAOu@c@uBo@kDW{BQeBq@sGYsBeAcGg@kDcByGk@uBg@uAa@iA[y@uAuDwAuDWo@{@{B]{@cAiCa@iA_AiCYy@}AqEc@kCEeA?uBFgG?sAA{@Mu@Qi@c@q@q@q@k@Yi@Ka@AaAHw@NcCb@WBu@?uAQ{CqAwAkAQKw@m@m@]uAm@o@QoAUu@GkAAaBJiAPc@Jq@X_@Rk@TeAn@sSdMuAn@gBj@u@RoAPgAN}Df@wEb@u@Di@@}AK}@OoBQgACw@B_BLg@LmA^aDnAYJeAR_ALwAD]EaAIkASuAi@sCuAaAk@c@Ys@YuDyByBuAi@[eB{AsBiBs@y@i@q@w@kA_A{AaCqEoEaJu@{Aa@o@g@y@yAkBaCmCq@o@_CcBgAq@g@YeFkCqB_AgFeCcCgAy@a@oGuCwCgAaAYWIOEaB_@aB[e@I_BUwEe@}Ei@cE_@_@CSCaEgBcCqAaAk@e@Uo@UgAOu@?_BDs@HaAR_AT{At@sAr@QH}Ax@wAv@kF~CwBjAqC~A{CbB_CpAuBjA{\\\\fR{NdI}VjNeIpEi@ZoBfAaBv@cA`@{@V_ARgAPiAHeABgCAoAC_AEoAEyBIkBQs@GgDWoFO_@CuA?qB?aABg@?gBBaEB_FBY@_BB{AHa@JuALiMdAcBNuAVu@N_B^iBf@wAXMBiB\\\\gEx@{AToDd@kEf@m@BmAJmAHeAFyAF{CHqCBsB?oC?gBEkBIeAIm@E_AK]Ei@IkDk@qEeAo@Os@QiEeAk@OqCo@_Ce@_C_@mCWgCOoK[aFUk@EwBYe@I_Bc@e@OoBu@y@a@uAw@m@a@m@e@i@c@][_A}@oBaCk@w@U]U_@OWW_@kA}Aa@g@oBkBsAgAe@a@{@m@sGcFoCwBs@k@i@a@{C_CwFoEoDwC}G}FaIiHsDkDwAwAY[i@k@s@u@_AcAc@e@mBsB_@]}@s@iAs@kB}@}@YmBc@qCW_@CQAq@EsDGoEGiA?aCCmAIeAMiDu@cM{CmFsAwFuAiFqAwCq@_B[oEu@kAOcAKUCSAqEK_FHO@Q@gD^uJ`B{AXs@NcCr@OFwAf@g@Lo@PeAPi@Dc@Bg@CaBMwCm@oA]uBu@aBk@}@SsAUyBWoBGeDAiCSoAWgAc@WMoAo@y@_@_DyAwEsA{AYe@KgAQo@IUC}BSgACqBBsARoAXiBp@WHo@PmANw@A[Cc@CcCc@iA_@aAWq@UkAa@eBq@yAi@qBk@gCq@UEUGsE{@iBYmDg@sBe@i@QoA_@y@[mCcAeBo@yB}@eBaAsAy@eAg@kAq@e@Sg@MsCk@cBe@g@UeAs@_@a@]c@e@s@]q@oA_Du@qAoBsBmAo@iDiBuA}@cA_Aq@q@KOaCeCeAk@k@SmAS{@?w@Dg@L_ARwAr@q@d@mAnA_AnAw@tAKTUj@mAhDUv@c@z@e@x@y@~@_@ZkBt@k@FqAFeCEwEkB}A{@mAm@kBw@q@]cC_AqEuAmC{@oAk@y@i@aA}@]a@[g@e@u@Yk@aBeFeAeDs@_BuAyBgAgAs@q@{BiA_@Mw@WaCY}Ca@wB_@}A]iGsAwAKwAB}AXWL}@\\\\sCrAwAt@YJYJg@Le@Hg@Bg@@g@CiAOQEy@Ya@Q_@MyIkDkBgA_As@UWm@q@eBkCc@_Ai@uAUg@Ma@{@qC{AcFc@kBq@aD}@}FKu@a@_Cm@wC[oAq@}BgAeD_A{BqAiC{@yA}BwC{HgH_B}A{@aAw@cA_BeC{@}A{@iBoAeDu@eCa@_Be@}BWgB[}C[iFYcDKy@Ea@i@}Dg@gD[mCs@{HKy@]kBcAoDm@oAy@yAmAeBsCqCcBoAkF_D_Aq@c@_@aBqBm@aAg@}@]w@q@eBe@wAm@}B{@mEe@gD[yCEm@Eo@I}AMgDCmBD}EBy@DyAHqC@qDC{@IeAIo@S{Am@aCISe@mAw@{AaAqAgBaBaKoGwA}@eBeAmA_Aa@i@a@i@]o@w@_Ba@mA[oAOw@Ge@Kq@YaBUqASeAYwAy@gDeA}Cs@aBq@oAiD_G_AgAwA}AoCkCqAcAcIwFkFoDkAaAoBoBUYw@}@_AgAcG{IcAiAmBeBuBuAuHyEcAo@gDkBIGaAq@cCgCwAsA{AmB_@e@SWyEqGaEuFq@}@iAiAiCmCgB{A_@W_DoBuBaAkAa@yAe@qAYmHaBoCm@iCk@_A[gHuBcIaCs@Uw@YkA]}Bq@UG_@Oy@WmGoBmDgAcCq@{A]qBSe@AoBDaBPgBj@}@V{BtAy@x@uAhBm@hAiBvEoEnLcA~B{@lBMVk@~@a@h@iBxB_A|@qA|@_C`AmA^s@Pm@H}ALu@BoBCkAKu@KuBe@qBi@uEgBo@SwCm@iBWyBMuBI{BEq@DiBRu@NoCh@eIfBoQxDeJpBcTtEeAR}KfCqGxAiJpBoB^k@LkEv@qALqAFkBDsAAeBGeBOyBUu@QyAa@wCaAoDgBiAs@_BiAiAcAqAqAgAqAg@i@yAqB_CaD_MiPy@}@iAgAo@m@YS_BgAmAu@yCyAoAc@}Bo@aASmASeCSqCGqA?sCDeAByFBeIBmBEcBGuACyG]yGm@gReBkBCyAAwLd@kI`@_NXaJCcLg@oBOsFi@gJ{AoAWgAQ}@UaG{AuPmF{By@mCcAyGsCwBeAgCuAu@]GE_@SIE}@_@kIkEgTyKuPwIsQeJ_Bu@_C_AiDiAsA[sBe@aDi@sFg@}AKaDEuKC}BAcIEiBGcBMqDa@{AScCa@gCk@yCw@wFiBaEcB_@OcG_DoEmC_JgF{CmBqEgCqDuB_DcBeMqHsEoCkTcM}IgF}Ay@s@[aEgBwIkCaBa@qF_AaBScBOiEWaDKaLW_GS}Fk@wHoAkEy@gScEo]_HkB[uBUaBIsBAaBDmBL_BR}AZ_B^iFxAkV|Fu@TmEdAaDj@mDTqABwCG}Ca@i@K{J{Aa^eGiAS_F{@qCi@oAOiD]{E[eFQkDAcDBgJZgBN_CPmCXmHz@iG^}HTuDBuCAyEIoIa@{CScHq@oC]MAeBQmF_A}Dy@cDw@iEmAkBk@aHcCcCaAmF_CcAe@iGiDaMuHuCgBkMyH{Au@}D{AyEuAmHsA{Dq@uGyA{DkAwPcGgBc@{ASwAKaB?}AFs@F_BVmCr@gCjAUN{@h@}@r@wDzCuAbAeGfFwCxBeCnAsJvDwMfF{Ax@}BpBkDxDuC`Dc@l@{BxBeAnAg@^g@XcAv@eA|@qBhA{BfAq@VcBf@qCn@{AXyBb@{@Lk@HgBNiBCw@EiBWkBa@iBg@gBm@_@OmAc@g@WwDmBuHuDqD_BmDkAyAa@gOwD_AYc@MiKoCoCw@qCeAcFkC{A{@cCeAyEqAuEgA{Cg@qBWwBQsGUgJOqJWwEMmBIs@GgBUeB]eBi@cBm@uF_CcBo@kBg@_Ba@}AWqBScIk@}Hs@_Dm@s@UgBs@cBy@o@a@{AkAyAqAmHuHeHeH_QoQaB_BqJ}J{DwEuAmBiHsKgAyAmAqAmBcBqA{@uBgAk@UmBk@}AYiCWcBEcBDcBN{ATuAX_AXaD~@_ATaAVcCd@yANk@DwADyAAm@CiCUwAW_@KeBg@gMaFmDkAuEaA{M{A}Eq@sA]uAc@qAi@wBiAsCuBeBcB_AeA_AgAo@_AgB_CcBsBiHqIyKcNsDuEkEiF_E}EeQiTeDcE}A{B_AmAkAgBe@s@iNsSsOkUaM{Qo@_Aw@oAeKiOqBcDcAiBcC}EuByEu@iB_CwG_Twq@_@kAm@mBoHyU_BaEgAqBmAiBa@i@_CuCyAmAyAgA{AaAeB{@gBo@_Co@yAW}AScBUoBYyEq@eE{@gA]sAa@wAi@qDuA_AyASc@Qi@c@kBqByIYoA}@}DIm@E{A@i@Fi@F]Lq@dBoEp@eBjAyC|A}DrKqXVq@Zu@p@wBdAwDx@{D`@aCR}AR{Ad@uFJuCFgFBcB@o@GeDe@mK_Cwf@g@uIkEk}@[_Eq@_G{@_GiAyFsAsFaGoUoAqF}@sEg@_Dc@yBy@{FSgB_@{CO_BYsBw@yDu@wCkBkGc@oAoCgIkBwGm@yCy@iGM{AOwF?kBBiBPeEDyAPeBXwB`AcFv@wCtAwElAqEZoA\\\\gBh@eF`@uLBgAFqD`@eQR{GN{EJqDRuILaEf@uHT_CR_BrH_e@|AcJN}@nF{^b@}B`@}BrAcF|AsEfAmC\\\\y@v@}Bb@kBVgBNaBFkA?eDK{BUkBc@_C[mAc@uB[qAE]W}AO{A_@sE[kBa@wA_A{BaAyAo@m@wBoAcAYmBY_EHo@Fo@F{Ad@e@Ra@TsNvFiAb@a@F_ARgBXK?o@B{AA{BUcAYwAe@yBsA_CmBqCsCwC{D}CmFk@mAmB_Fy@mCu@}Ce@{ByDuVaAwDg@aBOg@Wm@cAcCwB_EsBmCaDiDgBaBwB_CgGkGaAaAwAkBg@o@cDuEcDiGgB_EmCaHSs@Oi@_@wAi@uBq@qCm@oCWqAyAaLwBaU}@gI_AaHcBaKsAuH_BcJw@_EmDsSUkAeAqHIo@i@{DeBaNYcDOsC?mBJ_DTqCT_B`@_CZ_APc@j@cBfB_FlBuEzEkLt@sBr@uBZiAt@aGHaBD}@CiF?]WgEUkBm@oCy@iCm@cBwC{GMU]_AsBeFgBcE{@_CcA_Eo@oD[sBUeC_ByV_@_EWwB_@eCiAgFk@kB}CeIaCiGYu@eBqEwCiHsBmFyB}HcAoFc@uDgAiNcB{XG}C@qDLqCPqBTmBd@gCp@eCj@iBpCuJ~@aE`@sB\\\\{BVkDF{B?}CEyBOkC_@gDc@eCi@{Bo@yBiAcEg@kBaCgI{BkIc@cCUsAa@gDMmBCgBEsBAiEFo\\\\AuDEmEGcBC}@OgDaBkVe@qHSuCM{G@wCF_Ex@iUBsBEuFMiCW{Cu@}Es@aDcGgT_AqDYgBYyBSqBIwAEiB?eENuC@q@`@gDb@aC\\\\_Bf@gBdQqh@jAcD`CsFjVoh@`CkFtHuPr@}AbAiCn@eBfBqGp@cE`@aEXsCp@qFfA{Jd@_EDa@zAqO`AkINcBb@wD~C}X`@yEPqD@{BKqDMmAQaBw@mEGMc@uA_AiC_@w@o@oA_AwA{AiB}BmBaD{CeQyOyGoGqNuM{UyVsFcGsCmCiM_N_BuAmA{@mBiAgB}@qBu@iBa@mBW{C?}AHmAPwA^qEhBsAn@uGvCuG|B[JkATgCd@e@LaBTuEXqADqCIc@AyCOkCYiCi@sCw@i@UmAi@aEcCm@s@a@a@oAgBMUsAcCoAcDwAuFuEaQ}BuI_@uAgC}Hy@iB_A_Bo@_Ac@e@_E_EsAoAsDkDu@w@yBkCw@iAYa@aAeBiA_CkB_EaLsWuFcM}AeDoA{BoA_B_@g@_@c@UUcDiCg@]_EmCsFiDq@e@cBiAeC_BsA}@u@m@oAaAaBoA_B}AaB}Aq@w@a@c@w@{@{AeBoDyFwDcHs@wA}C{HiBqGyAeH_@{BkBgMqAiI{CuQiHy_@eGuXaIwZiL_b@uKu`@{BeIoAoEkAiEkHuW_HyViB}EwAoDe@{@g@{@uGmJsFcHMQgAuAiKoNgBqCsBoDe@y@gA{B}@kBoBaEuOe\\\\gBsDiOe\\\\gEgMwBmJa@oByBeKyIsb@mBeJmAeGwAeH_A{EaC_L{DyR_A{FoC}ReByKyHmi@mC_QyAeH{N}f@mAeDsAqCgAmBiB}B}A}A{AmAgBiA{As@eCu@iB]mAQcBImAEoGCcJBoAA}Fc@uAQ_FmA_Bm@cBy@{D{BkDwCyB_Co@w@_@g@yC}EoAcCu@iBy@{BSk@gAwDaAmDu@mCa@{AgAkD_@cAy@kBqCqFkAkBgFkHeAyAwLyPo@eAc@}@s@qB]aAYgAa@uB[mCq@oLe@}Hm@cDmAwE_@uAgAyDcBaGKQg@uBa@mB]eB_@wB]iCc@cDi@kJAUAk@EgBCiA?s@?QCmAMkDG}CIgECkCAq@GwCCoACcAAuA?Y?WEuBAiC?qCNoBd@oD`AwFRkARqBFk@@yACoBa@sGScEK}AKaEDaEHcA`@kEn@uCv@oCdAaC`@w@hBiCbAeAx@q@ZWtBoAlAg@|MgDpAk@dAi@tAy@bBmAjBuBh@s@l@{@jAoBt@aBd@qAhEaLp@oBPm@Na@z@qDXoAb@gCNeATyBd@oG^}H^oHr@}JRkCz@wIxBgRJaC@eCAyAEiASaCi@qDsAuFy@}CcJc^_BiGwCgLU_A{AyFuCmLUmAWmBQkCK}BA_CDkBLyBh@eE`@sBl@yBhCsHVw@pByFrF_PhC}HpD{KbAyClAoDlEmM|@cD^yBTsATuBJqBDiB?gBOaDKwAYwBk@iCs@qCw@wB}@_BaAyAgAoA}@iAiAsA}C{D}@uAy@cBq@aBm@gBQ}@UgAMyAS_D_@}K_@uIMeD[wDQsAScAa@qB}@{Cg@sAy@iBg@aA]g@wAsBeu@{}@}BwCsAwBmAwBy@aBgAiCgFoOcCyHgBoF{@kCg@{ASk@eGeRm@mB{DiL_@aAsAwCs@_A_A}@}@y@uBaB_FkD_GcEuByAgAy@_JwGa@WuAcAkEwCkA}@sJkHyBaBiCyBkDsCa@[iLsJiFiEi@e@{CgCcBuAu@o@oC{BiB{A_Aq@w@c@u@g@w@_@cDsA}@SmA[sAYqBSoCM_B?y@AwE`@gCp@yAp@wCfBcCdBaBlAwDlCiEdCmEhBwCt@qB\\\\iBVkBF_AFoEAuAGaGk@yC_@iFm@uP_B}YwCmFu@gC]iBWmEsAiCgAw@c@gBmAoB{AsFyDsBwAaAu@uCuBo@e@wIeGiBuAeEkEeAqAuBwCuBwD_CcFmNe[uEgJiGqJmMkRCEoLcQIMoAiB_FoH}A_CqGmJw@cAsBqC}CuDy@{@qEuEcFsEsI}Ggi@ea@cZcUwC{BuHwFsCwBcDeCyFgEcHoFgFwDaD_CqEoCuEgCkCsAqD}AiBs@{Aq@_FoBqAi@{Am@{CmAaC_ASIyCmAg@Um@e@sAmAm@s@m@eAk@eAq@gB_@yAYwAS{AMoASuJ@mCDmCJgBHeBfAoMv@mJXaD`@oEVmCl@eFd@oGBs@LyCBu@?_BA}@KcCUiBY{AKa@i@eBwAsCo@_Au@}@{@u@}A_A_@O}@_@uBs@iBc@gKkCuBc@}Dw@oBi@q@QiD{@qCs@_HeBmBg@q@OqD}@gHeBu@SsCo@{MgDuAa@sBm@gBw@iDcBy@g@_jAwu@mCgBiDmBeE}BiD}A_GgCc@SiGkC}Ao@iMkFyDcBad@kRaBw@}D{BwAgAc@]SQy@s@q@m@{Aw@_Bi@iASkBIaAJ_AT}@`@}AlAcB`Cc@|@]hA[vAi@hFIlBC|AIhGCdZ?`C@pG?~E?bA?|A?vAA|BG`GMbBM~@yAvGMb@cBzFoAfEg@xCe@lICb@UdBQv@Q~@G`ACbA@v@Ht@Lj@|@xBJTr@|AHZ?ZEXGPc@nAYz@Wt@ITo@dB]~@Sj@[`Ay@zBMd@_AjBc@v@eAvAu@dAgBbCgExFgGjIs@`AaBxBiAhBeAvBeBtDo@xAa@z@oIpRaGrMmFxLm@nAo@vAyDrIkC|Fg@pASv@[nCUvCGb@m@dI]vEQrBuBj@}GrBaR`G{F~AgDf@wDf@oKlA{BTqAL}@RcAl@s@v@a@d@m@p@[X[Vu@\\\\_ANy@B}AD]DMFWRmA`Ag@Jq@DyBKs@C{AGi@CyJf@kB?qDGqB?k@F_C\\\\eAPa@J}A^gGz@cHhA}AVoBZuFfAmDh@iI~AiAZaBb@_CbA{FfDbAfEHb@@d@AhDWlHBnADr@RvAZhAn@pAl@|@v@~@Zj@HZH`@@v@OfCC`A@d@RbBRl@o@j@aDzAaAp@_@f@Wb@Sj@Mj@\"\n                    },\n                    \"warnings\": [],\n                    \"waypoint_order\": [\n                        0\n                    ]\n                }\n            ],\n            \"status\": \"OK\"\n        },\n        \"markers\": [\n            {\n                \"type\": \"pickup\",\n                \"order\": 1,\n                \"label\": 1,\n                \"job_id\": 2174816,\n                \"job_number\": 6,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"stop\": {\n                    \"job_stop_id\": 3909321,\n                    \"type\": \"pickup\",\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0\n                },\n                \"job_stop_id\": 3909321,\n                \"directions_location\": {\n                    \"latitude\": 40.714066,\n                    \"longitude\": -73.9552617\n                }\n            },\n            {\n                \"type\": \"dropoff\",\n                \"order\": 2,\n                \"label\": 2,\n                \"job_id\": 2174816,\n                \"job_number\": 6,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"stop\": {\n                    \"job_stop_id\": 3909323,\n                    \"type\": \"dropoff\",\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"distance_to_next_stop_meters\": 201022,\n                    \"duration_to_next_stop_seconds\": 9358,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865\n                },\n                \"job_stop_id\": 3909323,\n                \"directions_location\": {\n                    \"latitude\": 40.6887348,\n                    \"longitude\": -73.983437\n                }\n            },\n            {\n                \"type\": \"dropoff\",\n                \"order\": 3,\n                \"label\": 3,\n                \"job_id\": 2174815,\n                \"job_number\": 5,\n                \"location\": {\n                    \"location_id\": 388587,\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                    \"company_id\": null\n                },\n                \"stop\": {\n                    \"job_stop_id\": 3909319,\n                    \"type\": \"dropoff\",\n                    \"location\": {\n                        \"location_id\": 388587,\n                        \"address\": \"231 Haynes Rd\",\n                        \"address_two\": null,\n                        \"city\": \"Avon\",\n                        \"state\": \"Connecticut\",\n                        \"postal_code\": \"06001\",\n                        \"country\": \"US\",\n                        \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"latitude\": 41.77357,\n                        \"longitude\": -72.87228,\n                        \"date_created\": \"2021-04-27 21:32:36\",\n                        \"date_updated\": \"2021-04-27 21:32:36\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 201022,\n                    \"duration_from_previous_stop_seconds\": 9358\n                },\n                \"job_stop_id\": 3909319,\n                \"directions_location\": {\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228\n                }\n            }\n        ],\n        \"route_summary\": {\n            \"total_duration_seconds\": 10223,\n            \"total_distance_meters\": 206254\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"5304ca63-3e1b-49b7-95a3-871755cf85a1"},{"name":"Clear batch","id":"a3121aea-95c7-4f16-97b5-10655e9d142e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/batch/:batch_id","description":"<p>Un-batch a group of jobs</p>\n","urlObject":{"path":["job","batch",":batch_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"BgRKJnK9o","key":"batch_id"}]}},"response":[{"id":"ec732666-270a-4320-864f-b20bfc3c9107","name":"Success","originalRequest":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/job/batch/:batch_id","host":["{{host}}"],"path":["job","batch",":batch_id"],"variable":[{"key":"batch_id","value":"BgRKJnK9o"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"29154"},{"key":"ETag","value":"W/\"71e2-CgpWYLj33nYUmwiNBQZB6dpzBww\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:05:09 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"job_id\": 2174815,\n            \"job_number\": 5,\n            \"origin_job_number\": null,\n            \"hash\": \"CNFxpq-Ko\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388587,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388587,\n                \"address\": \"231 Haynes Rd\",\n                \"address_two\": null,\n                \"city\": \"Avon\",\n                \"state\": \"Connecticut\",\n                \"postal_code\": \"06001\",\n                \"country\": \"US\",\n                \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"latitude\": 41.77357,\n                \"longitude\": -72.87228,\n                \"date_created\": \"2021-04-27 21:32:36\",\n                \"date_updated\": \"2021-04-27 21:32:36\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 16:54:10\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 16:54:10\",\n            \"date_updated\": \"2021-04-28 17:05:08\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/CNFxpq-Ko\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909320,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:10\",\n                    \"date_updated\": \"2021-04-28 17:05:07\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 196205,\n                    \"duration_to_next_stop_seconds\": 9121,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909319,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388587,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:10\",\n                    \"date_updated\": \"2021-04-28 17:05:07\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 196205,\n                    \"duration_from_previous_stop_seconds\": 9121,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388587,\n                        \"address\": \"231 Haynes Rd\",\n                        \"address_two\": null,\n                        \"city\": \"Avon\",\n                        \"state\": \"Connecticut\",\n                        \"postal_code\": \"06001\",\n                        \"country\": \"US\",\n                        \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"latitude\": 41.77357,\n                        \"longitude\": -72.87228,\n                        \"date_created\": \"2021-04-27 21:32:36\",\n                        \"date_updated\": \"2021-04-27 21:32:36\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909320,\n                \"company_id\": 100,\n                \"job_id\": 2174815,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 00:54:09\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 17:05:07\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 196205,\n                \"duration_to_next_stop_seconds\": 9121,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909319,\n                \"company_id\": 100,\n                \"job_id\": 2174815,\n                \"location_id\": 388587,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 00:54:09\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 17:05:07\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 196205,\n                \"duration_from_previous_stop_seconds\": 9121,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388587,\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174816,\n            \"job_number\": 6,\n            \"origin_job_number\": null,\n            \"hash\": \"fgO_1YBkl\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388574,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 16:54:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": 0,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 16:54:19\",\n            \"date_updated\": \"2021-04-28 17:05:08\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": 0,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/fgO_1YBkl\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909321,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 16:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:20\",\n                    \"date_updated\": \"2021-04-28 17:05:07\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909323,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388574,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 20:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:41\",\n                    \"date_updated\": \"2021-04-28 17:05:07\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909321,\n                \"company_id\": 100,\n                \"job_id\": 2174816,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 16:54:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:20\",\n                \"date_updated\": \"2021-04-28 17:05:07\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909323,\n                \"company_id\": 100,\n                \"job_id\": 2174816,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 20:54:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:41\",\n                \"date_updated\": \"2021-04-28 17:05:07\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 2\n    }\n}"}],"_postman_id":"a3121aea-95c7-4f16-97b5-10655e9d142e"},{"name":"Remove job from dispatch group","id":"f0956e61-6fe4-47ce-9ff7-e525a94cbd94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/:job_id/dispatch-group","urlObject":{"path":["job",":job_id","dispatch-group"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174816","key":"job_id"}]}},"response":[{"id":"89dafc1b-baf7-4997-8aa8-284ae3ab8493","name":"Success","originalRequest":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/job/:job_id/dispatch-group","host":["{{host}}"],"path":["job",":job_id","dispatch-group"],"variable":[{"key":"job_id","value":"2174816"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"32946"},{"key":"ETag","value":"W/\"80b2-/lxwuqJS7UCAMkO/xT9rzftqGPI\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:06:09 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"job_id\": 2174815,\n            \"job_number\": 5,\n            \"origin_job_number\": null,\n            \"hash\": \"CNFxpq-Ko\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388587,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388587,\n                \"address\": \"231 Haynes Rd\",\n                \"address_two\": null,\n                \"city\": \"Avon\",\n                \"state\": \"Connecticut\",\n                \"postal_code\": \"06001\",\n                \"country\": \"US\",\n                \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"latitude\": 41.77357,\n                \"longitude\": -72.87228,\n                \"date_created\": \"2021-04-27 21:32:36\",\n                \"date_updated\": \"2021-04-27 21:32:36\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 16:54:10\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 9,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": \"2021-04-28 17:06:00\",\n            \"driver_reminded_date\": \"2021-04-28 17:06:02\",\n            \"date_created\": \"2021-04-28 16:54:10\",\n            \"date_updated\": \"2021-04-28 17:06:08\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": \"kWZPVwDZO\",\n            \"dispatch_group_order\": 1,\n            \"dispatch_group_optimization_method\": \"single_pickup_optimization\",\n            \"dispatch_group_data\": {\n                \"color\": \"#1F75FE\",\n                \"ignore_time_windows\": 0,\n                \"total_jobs\": 1,\n                \"optimize\": 1\n            },\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/CNFxpq-Ko\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909320,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:10\",\n                    \"date_updated\": \"2021-04-28 17:06:08\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 196205,\n                    \"duration_to_next_stop_seconds\": 9121,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": 1,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909319,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388587,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:10\",\n                    \"date_updated\": \"2021-04-28 17:06:08\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 196205,\n                    \"duration_from_previous_stop_seconds\": 9121,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": 2,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"0\\\",\\\"lat\\\":41.77357,\\\"lng\\\":-72.87228,\\\"sequence\\\":2,\\\"estimatedArrival\\\":\\\"2021-04-28T15:50:23-04:00\\\",\\\"estimatedDeparture\\\":\\\"2021-04-28T15:55:23-04:00\\\",\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"destination\\\",\\\"toWaypoint\\\":\\\"0\\\",\\\"distance\\\":201022,\\\"time\\\":9058,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388587,\n                        \"address\": \"231 Haynes Rd\",\n                        \"address_two\": null,\n                        \"city\": \"Avon\",\n                        \"state\": \"Connecticut\",\n                        \"postal_code\": \"06001\",\n                        \"country\": \"US\",\n                        \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"latitude\": 41.77357,\n                        \"longitude\": -72.87228,\n                        \"date_created\": \"2021-04-27 21:32:36\",\n                        \"date_updated\": \"2021-04-27 21:32:36\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909320,\n                \"company_id\": 100,\n                \"job_id\": 2174815,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 00:54:09\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 17:06:08\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 196205,\n                \"duration_to_next_stop_seconds\": 9121,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": 1,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909319,\n                \"company_id\": 100,\n                \"job_id\": 2174815,\n                \"location_id\": 388587,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 00:54:09\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 17:06:08\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 196205,\n                \"duration_from_previous_stop_seconds\": 9121,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": 2,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"0\\\",\\\"lat\\\":41.77357,\\\"lng\\\":-72.87228,\\\"sequence\\\":2,\\\"estimatedArrival\\\":\\\"2021-04-28T15:50:23-04:00\\\",\\\"estimatedDeparture\\\":\\\"2021-04-28T15:55:23-04:00\\\",\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"destination\\\",\\\"toWaypoint\\\":\\\"0\\\",\\\"distance\\\":201022,\\\"time\\\":9058,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388587,\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174816,\n            \"job_number\": 6,\n            \"origin_job_number\": null,\n            \"hash\": \"fgO_1YBkl\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388574,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 16:54:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": 0,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": \"2021-04-28 17:05:00\",\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 16:54:19\",\n            \"date_updated\": \"2021-04-28 17:06:07\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": 0,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/fgO_1YBkl\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909321,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 16:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:20\",\n                    \"date_updated\": \"2021-04-28 17:06:07\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909323,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388574,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 20:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:41\",\n                    \"date_updated\": \"2021-04-28 17:06:07\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909321,\n                \"company_id\": 100,\n                \"job_id\": 2174816,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 16:54:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:20\",\n                \"date_updated\": \"2021-04-28 17:06:07\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909323,\n                \"company_id\": 100,\n                \"job_id\": 2174816,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 20:54:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:41\",\n                \"date_updated\": \"2021-04-28 17:06:07\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 2\n    }\n}"}],"_postman_id":"f0956e61-6fe4-47ce-9ff7-e525a94cbd94"}],"id":"ad1c9f5f-8c94-4357-9ad0-93e7f5a00ffe","_postman_id":"ad1c9f5f-8c94-4357-9ad0-93e7f5a00ffe","description":""},{"name":"Job Stop Actions","item":[{"name":"Get Enums","id":"9cc95b56-1113-46bc-ac22-50a3e4242102","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/stop/action/enums","urlObject":{"path":["job","stop","action","enums"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"343a6b0e-f824-45ea-a442-7e28a22bfbaa","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/stop/action/enums"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"880"},{"key":"ETag","value":"W/\"370-Xm69t6rQEDILkQo2aKcUjJeoYmc\""},{"key":"set-cookie","value":"connect.sid=s%3AV8yn-sSKGcYp77sCTWXGfVL3SIanjVeB.WXhNA0g7SPHDWI%2Fy09zEYhf4IsAMecdV25ld2rxHdfw; Path=/; Expires=Wed, 07 Apr 2021 23:17:05 GMT; HttpOnly"},{"key":"Date","value":"Tue, 07 Apr 2020 23:17:41 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"TYPES\": {\n            \"take_picture\": {\n                \"id\": \"take_picture\",\n                \"display\": \"Take Picture\",\n                \"has_attachment\": 1\n            },\n            \"take_video\": {\n                \"id\": \"take_video\",\n                \"display\": \"Take Video\",\n                \"has_attachment\": 1\n            },\n            \"get_signature\": {\n                \"id\": \"get_signature\",\n                \"display\": \"Get Signature\",\n                \"has_attachment\": 1\n            },\n            \"order_acknowledgement\": {\n                \"id\": \"order_acknowledgement\",\n                \"display\": \"Order Acknowledgement\",\n                \"has_attachment\": 1,\n                \"item_statuses\": {\n                    \"rejected\": {\n                        \"id\": \"rejected\",\n                        \"display\": \"Rejected\"\n                    },\n                    \"accepted\": {\n                        \"id\": \"accepted\",\n                        \"display\": \"Accepted\"\n                    }\n                },\n                \"rejection_reasons\": {\n                    \"lost_or_damaged\": {\n                        \"id\": \"lost_or_damaged\",\n                        \"display\": \"Lost or Damaged\"\n                    },\n                    \"wrong_quantity\": {\n                        \"id\": \"wrong_quantity\",\n                        \"display\": \"Wrong Quantity\"\n                    },\n                    \"other\": {\n                        \"id\": \"other\",\n                        \"display\": \"Other\"\n                    }\n                },\n                \"settings\": {\n                    \"require_signature\": {\n                        \"id\": \"require_signature\",\n                        \"display\": \"Requires Signature\",\n                        \"optional\": true,\n                        \"type\": \"checkbox\"\n                    }\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.27.1\"\n    }\n}"}],"_postman_id":"9cc95b56-1113-46bc-ac22-50a3e4242102"},{"name":"Complete Stop Action","id":"afdb06a1-f2ed-43ef-8976-a5589a8e9f8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_stop_action_id","value":"4237","type":"text"},{"key":"attachments","description":"<p>Optional. Some actions require attachments</p>\n","type":"file","src":"/Users/nickcassell/Downloads/SignatureAttachmentExample.png"},{"key":"meta","value":"","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"job_stop_id","value":"3909325","type":"text"}]},"url":"{{host}}/job/:job_id/stop/action/complete","urlObject":{"path":["job",":job_id","stop","action","complete"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174817","key":"job_id"}]}},"response":[{"id":"7b461208-0407-483a-9db1-da82b415459f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_stop_action_id","value":"4237","type":"text"},{"key":"attachments","description":"Optional. Some actions require attachments","type":"file","src":"/Users/nickcassell/Downloads/SignatureAttachmentExample.png"},{"key":"meta","value":"","description":"Optional","type":"text","disabled":true},{"key":"job_stop_id","value":"3909325","type":"text"}]},"url":{"raw":"{{host}}/job/:job_id/stop/action/complete","host":["{{host}}"],"path":["job",":job_id","stop","action","complete"],"variable":[{"key":"job_id","value":"2174817"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2339"},{"key":"ETag","value":"W/\"923-ddYWdmdPqnm0QLqi6rXCvObNqpc\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:10:29 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_stop_id\": 3909325,\n        \"company_id\": 100,\n        \"job_id\": 2174817,\n        \"location_id\": 388586,\n        \"actual_location_id\": null,\n        \"user_id\": null,\n        \"type\": \"pickup\",\n        \"meta\": null,\n        \"status_id\": 4,\n        \"arrival_date\": \"2021-04-29 01:07:46\",\n        \"actual_arrival_date\": null,\n        \"in_progress_date\": \"2021-04-28 17:09:30\",\n        \"completed_date\": null,\n        \"cancelled_date\": null,\n        \"contact_phone_country\": null,\n        \"contact_phone\": null,\n        \"contact_name\": null,\n        \"notes\": null,\n        \"driver_notes\": null,\n        \"internal_notes\": null,\n        \"order\": 1,\n        \"attachments\": null,\n        \"date_created\": \"2021-04-28 17:07:47\",\n        \"date_updated\": \"2021-04-28 17:09:30\",\n        \"date_deleted\": null,\n        \"distance_to_next_stop_meters\": 5232,\n        \"duration_to_next_stop_seconds\": 865,\n        \"distance_from_previous_stop_meters\": 0,\n        \"duration_from_previous_stop_seconds\": 0,\n        \"wait_time_seconds\": null,\n        \"total_duration_seconds\": null,\n        \"return_stop_id\": null,\n        \"recipient\": null,\n        \"apartment_number\": null,\n        \"cancellation_reason\": null,\n        \"contact_phone_international\": null,\n        \"contact_phone_national\": null,\n        \"dispatch_group_order\": null,\n        \"skip_stop\": 0,\n        \"time_window_end_time\": null,\n        \"time_window_start_time\": null,\n        \"time_window_waiting_time_seconds\": null,\n        \"ignore_time_windows\": 0,\n        \"routing_data\": null,\n        \"estimated_departure_date\": null,\n        \"estimated_arrival_date\": null,\n        \"job_stop_actions\": [\n            {\n                \"job_stop_action_id\": 4237,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"job_stop_id\": 3909325,\n                \"job_stop_type\": \"pickup\",\n                \"type\": {\n                    \"id\": \"get_signature\",\n                    \"display\": \"Get Signature\",\n                    \"has_attachment\": 1,\n                    \"attachment_name\": \"Signature\"\n                },\n                \"stop_status_id\": 4,\n                \"order\": 1,\n                \"button_text\": \"Get Signature\",\n                \"description\": \"Get User's Signature\",\n                \"url\": null,\n                \"attachments\": [\n                    {\n                        \"size\": 5675,\n                        \"path\": \"tmp/24d49728e58795c6d2c6fb2e1bf20160\",\n                        \"name\": \"SignatureAttachmentExample.png\",\n                        \"type\": \"image/png\",\n                        \"extension\": \"png\",\n                        \"stored_name\": \"signatureattachmentexample_pq-gWSyBC.png\",\n                        \"original_filename\": \"SignatureAttachmentExample.png\",\n                        \"remote_path\": \"liverydesk-public-dev/job/2174817/stop/3909325/action/4237/attachment\",\n                        \"attachment_type\": \"get_signature\",\n                        \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174817/stop/3909325/action/4237/attachment/signatureattachmentexample_pq-gWSyBC.png\"\n                    }\n                ],\n                \"meta\": {\n                    \"settings\": {}\n                },\n                \"is_active\": 1,\n                \"date_completed\": \"2021-04-28 17:10:28\",\n                \"date_created\": \"2021-04-28 17:07:48\",\n                \"date_updated\": \"2021-04-28 17:10:28\",\n                \"date_deleted\": null,\n                \"type_data\": null,\n                \"body\": null\n            }\n        ],\n        \"next_job_stop_action\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"afdb06a1-f2ed-43ef-8976-a5589a8e9f8a"},{"name":"Complete Stop Action - Sign Agreement","id":"6bb67829-8acd-40fc-9200-a4bc7b919769","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_stop_action_id","value":"4237","type":"text"},{"key":"meta","value":"","type":"text","disabled":true},{"key":"job_stop_id","value":"3909325","type":"text"},{"key":"attachments","type":"file","src":"/Users/nickcassell/Downloads/SignatureAttachmentExample.png"}]},"url":"{{host}}/job/:job_id/stop/action/complete","description":"<p>This job stop actions purpose is have the use sign a 'form'. The form will be a block of text stored on <code>job_stop_action.description</code> the endpoint is identical to the existing signature job stop action, except that the UI will be slightly different</p>\n","urlObject":{"path":["job",":job_id","stop","action","complete"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174817","key":"job_id"}]}},"response":[{"id":"1e7606c0-9453-4110-81d9-5e0c14e52791","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_stop_action_id","value":"4237","type":"text"},{"key":"meta","value":"","type":"text","disabled":true},{"key":"job_stop_id","value":"3909325","type":"text"},{"key":"attachments","type":"file","src":"/Users/nickcassell/Downloads/SignatureAttachmentExample.png"}]},"url":{"raw":"{{host}}/job/:job_id/stop/action/complete","host":["{{host}}"],"path":["job",":job_id","stop","action","complete"],"variable":[{"key":"job_id","value":"2174817"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2339"},{"key":"ETag","value":"W/\"923-4aieKrmLyk118h+JThMPnXtY1X8\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:12:49 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_stop_id\": 3909325,\n        \"company_id\": 100,\n        \"job_id\": 2174817,\n        \"location_id\": 388586,\n        \"actual_location_id\": null,\n        \"user_id\": null,\n        \"type\": \"pickup\",\n        \"meta\": null,\n        \"status_id\": 4,\n        \"arrival_date\": \"2021-04-29 01:07:46\",\n        \"actual_arrival_date\": null,\n        \"in_progress_date\": \"2021-04-28 17:09:30\",\n        \"completed_date\": null,\n        \"cancelled_date\": null,\n        \"contact_phone_country\": null,\n        \"contact_phone\": null,\n        \"contact_name\": null,\n        \"notes\": null,\n        \"driver_notes\": null,\n        \"internal_notes\": null,\n        \"order\": 1,\n        \"attachments\": null,\n        \"date_created\": \"2021-04-28 17:07:47\",\n        \"date_updated\": \"2021-04-28 17:09:30\",\n        \"date_deleted\": null,\n        \"distance_to_next_stop_meters\": 5232,\n        \"duration_to_next_stop_seconds\": 865,\n        \"distance_from_previous_stop_meters\": 0,\n        \"duration_from_previous_stop_seconds\": 0,\n        \"wait_time_seconds\": null,\n        \"total_duration_seconds\": null,\n        \"return_stop_id\": null,\n        \"recipient\": null,\n        \"apartment_number\": null,\n        \"cancellation_reason\": null,\n        \"contact_phone_international\": null,\n        \"contact_phone_national\": null,\n        \"dispatch_group_order\": null,\n        \"skip_stop\": 0,\n        \"time_window_end_time\": null,\n        \"time_window_start_time\": null,\n        \"time_window_waiting_time_seconds\": null,\n        \"ignore_time_windows\": 0,\n        \"routing_data\": null,\n        \"estimated_departure_date\": null,\n        \"estimated_arrival_date\": null,\n        \"job_stop_actions\": [\n            {\n                \"job_stop_action_id\": 4237,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"job_stop_id\": 3909325,\n                \"job_stop_type\": \"pickup\",\n                \"type\": {\n                    \"id\": \"get_signature\",\n                    \"display\": \"Get Signature\",\n                    \"has_attachment\": 1,\n                    \"attachment_name\": \"Signature\"\n                },\n                \"stop_status_id\": 4,\n                \"order\": 1,\n                \"button_text\": \"Get Signature\",\n                \"description\": \"Get User's Signature\",\n                \"url\": null,\n                \"attachments\": [\n                    {\n                        \"size\": 5675,\n                        \"path\": \"tmp/ee10143d63c411c6c025ee15f7176090\",\n                        \"name\": \"SignatureAttachmentExample.png\",\n                        \"type\": \"image/png\",\n                        \"extension\": \"png\",\n                        \"stored_name\": \"signatureattachmentexample_oNCimSX8K.png\",\n                        \"original_filename\": \"SignatureAttachmentExample.png\",\n                        \"remote_path\": \"liverydesk-public-dev/job/2174817/stop/3909325/action/4237/attachment\",\n                        \"attachment_type\": \"get_signature\",\n                        \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174817/stop/3909325/action/4237/attachment/signatureattachmentexample_oNCimSX8K.png\"\n                    }\n                ],\n                \"meta\": {\n                    \"settings\": {}\n                },\n                \"is_active\": 1,\n                \"date_completed\": \"2021-04-28 17:12:48\",\n                \"date_created\": \"2021-04-28 17:07:48\",\n                \"date_updated\": \"2021-04-28 17:12:48\",\n                \"date_deleted\": null,\n                \"type_data\": null,\n                \"body\": null\n            }\n        ],\n        \"next_job_stop_action\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"6bb67829-8acd-40fc-9200-a4bc7b919769"},{"name":"Complete Stop Action - Accept","id":"bfd7e968-2b56-44a6-a45c-101609f28cc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_stop_action_id","value":"4239","type":"text"},{"key":"job_stop_id","value":"3909326","type":"text"},{"key":"attachments","type":"file","src":"/Users/nickcassell/Downloads/SignatureAttachmentExample.png"},{"key":"meta","value":"","type":"text","disabled":true},{"key":"type_data[notes]","value":"These are the driver notes","description":"<p>Optional. Can be found on the job.stops.job_stop_actions.settings object</p>\n","type":"text"}]},"url":"{{host}}/job/:job_id/stop/action/complete/accept","description":"<p>This job stop actions purpose is have to display a block of text stored on <code>job_stop_actions.description</code>, and have the user press an 'accept button'. No attachment needs to be sent</p>\n","urlObject":{"path":["job",":job_id","stop","action","complete","accept"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174818","key":"job_id"}]}},"response":[{"id":"0a11013c-ed55-4f7d-af75-9f698c2411f5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_stop_action_id","value":"4239","type":"text"},{"key":"job_stop_id","value":"3909326","type":"text"},{"key":"attachments","type":"file","src":"/Users/nickcassell/Downloads/SignatureAttachmentExample.png"},{"key":"meta","value":"","type":"text","disabled":true},{"key":"type_data[notes]","value":"These are the driver notes","description":"Optional. Can be found on the job.stops.job_stop_actions.settings object","type":"text"}]},"url":{"raw":"{{host}}/job/:job_id/stop/action/complete/accept","host":["{{host}}"],"path":["job",":job_id","stop","action","complete","accept"],"variable":[{"key":"job_id","value":"2174818"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4865"},{"key":"ETag","value":"W/\"1301-NYoBYLqNIqUMAtDwor2MmdMl0es\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:18:39 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_stop_id\": 3909326,\n        \"company_id\": 100,\n        \"job_id\": 2174818,\n        \"location_id\": 388586,\n        \"actual_location_id\": null,\n        \"user_id\": null,\n        \"type\": \"pickup\",\n        \"meta\": null,\n        \"status_id\": 4,\n        \"arrival_date\": \"2021-04-29 01:14:21\",\n        \"actual_arrival_date\": null,\n        \"in_progress_date\": \"2021-04-28 17:14:57\",\n        \"completed_date\": null,\n        \"cancelled_date\": null,\n        \"contact_phone_country\": null,\n        \"contact_phone\": null,\n        \"contact_name\": null,\n        \"notes\": null,\n        \"driver_notes\": null,\n        \"internal_notes\": null,\n        \"order\": 1,\n        \"attachments\": null,\n        \"date_created\": \"2021-04-28 17:14:22\",\n        \"date_updated\": \"2021-04-28 17:14:57\",\n        \"date_deleted\": null,\n        \"distance_to_next_stop_meters\": 5232,\n        \"duration_to_next_stop_seconds\": 865,\n        \"distance_from_previous_stop_meters\": 0,\n        \"duration_from_previous_stop_seconds\": 0,\n        \"wait_time_seconds\": null,\n        \"total_duration_seconds\": null,\n        \"return_stop_id\": null,\n        \"recipient\": null,\n        \"apartment_number\": null,\n        \"cancellation_reason\": null,\n        \"contact_phone_international\": null,\n        \"contact_phone_national\": null,\n        \"dispatch_group_order\": null,\n        \"skip_stop\": 0,\n        \"time_window_end_time\": null,\n        \"time_window_start_time\": null,\n        \"time_window_waiting_time_seconds\": null,\n        \"ignore_time_windows\": 0,\n        \"routing_data\": null,\n        \"estimated_departure_date\": null,\n        \"estimated_arrival_date\": null,\n        \"job_stop_actions\": [\n            {\n                \"job_stop_action_id\": 4239,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"job_stop_id\": 3909326,\n                \"job_stop_type\": \"pickup\",\n                \"type\": {\n                    \"id\": \"confirmation\",\n                    \"display\": \"Confirmation\",\n                    \"has_attachment\": 1,\n                    \"has_body\": true,\n                    \"attachment_name\": \"Signature\",\n                    \"settings\": {\n                        \"require_signature\": {\n                            \"id\": \"require_signature\",\n                            \"display\": \"Requires Signature\",\n                            \"optional\": true,\n                            \"type\": \"checkbox\"\n                        },\n                        \"require_notes\": {\n                            \"id\": \"require_notes\",\n                            \"display\": \"Requires Driver Notes\",\n                            \"optional\": true,\n                            \"type\": \"checkbox\"\n                        },\n                        \"show_notes\": {\n                            \"id\": \"show_notes\",\n                            \"display\": \"Show Driver Notes\",\n                            \"optional\": true,\n                            \"type\": \"checkbox\"\n                        }\n                    }\n                },\n                \"stop_status_id\": 4,\n                \"order\": 1,\n                \"button_text\": \"Confirmation\",\n                \"description\": \"Accept this confirmation\",\n                \"url\": null,\n                \"attachments\": [\n                    {\n                        \"size\": 5675,\n                        \"path\": \"tmp/2be083e43303f402ef58a7056e296802\",\n                        \"name\": \"SignatureAttachmentExample.png\",\n                        \"type\": \"image/png\",\n                        \"extension\": \"png\",\n                        \"stored_name\": \"signatureattachmentexample_TIp9cTcRy.png\",\n                        \"original_filename\": \"SignatureAttachmentExample.png\",\n                        \"remote_path\": \"liverydesk-public-dev/job/2174818/stop/3909326/action/4239/attachment\",\n                        \"attachment_type\": \"confirmation\",\n                        \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174818/stop/3909326/action/4239/attachment/signatureattachmentexample_TIp9cTcRy.png\"\n                    }\n                ],\n                \"meta\": {\n                    \"settings\": {\n                        \"show_notes\": 1,\n                        \"require_notes\": 1,\n                        \"require_signature\": 1\n                    }\n                },\n                \"is_active\": 1,\n                \"date_completed\": \"2021-04-28 17:18:39\",\n                \"date_created\": \"2021-04-28 17:14:23\",\n                \"date_updated\": \"2021-04-28 17:18:39\",\n                \"date_deleted\": null,\n                \"type_data\": {\n                    \"notes\": \"These are the driver notes\"\n                },\n                \"body\": \"Do you accept?\"\n            },\n            {\n                \"job_stop_action_id\": 4238,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"job_stop_id\": 3909326,\n                \"job_stop_type\": \"pickup\",\n                \"type\": {\n                    \"id\": \"order_acknowledgement\",\n                    \"display\": \"Order Acknowledgement\",\n                    \"has_attachment\": 1,\n                    \"attachment_name\": \"Signature\",\n                    \"item_statuses\": {\n                        \"rejected\": {\n                            \"id\": \"rejected\",\n                            \"display\": \"Rejected\"\n                        },\n                        \"accepted\": {\n                            \"id\": \"accepted\",\n                            \"display\": \"Accepted\"\n                        }\n                    },\n                    \"rejection_reasons\": {\n                        \"lost_or_damaged\": {\n                            \"id\": \"lost_or_damaged\",\n                            \"display\": \"Lost or Damaged\",\n                            \"order\": 1\n                        },\n                        \"wrong_quantity\": {\n                            \"id\": \"wrong_quantity\",\n                            \"display\": \"Wrong Quantity\",\n                            \"order\": 2\n                        },\n                        \"other\": {\n                            \"id\": \"other\",\n                            \"display\": \"Other\",\n                            \"order\": 3\n                        }\n                    },\n                    \"settings\": {\n                        \"require_signature\": {\n                            \"id\": \"require_signature\",\n                            \"display\": \"Requires Signature\",\n                            \"optional\": true,\n                            \"type\": \"checkbox\"\n                        }\n                    }\n                },\n                \"stop_status_id\": 4,\n                \"order\": 2,\n                \"button_text\": \"Order Acknowledgement\",\n                \"description\": \"Order Acknowledgement\",\n                \"url\": null,\n                \"attachments\": null,\n                \"meta\": {\n                    \"settings\": {\n                        \"require_signature\": 1\n                    }\n                },\n                \"is_active\": 1,\n                \"date_completed\": null,\n                \"date_created\": \"2021-04-28 17:14:23\",\n                \"date_updated\": \"2021-04-28 17:14:23\",\n                \"date_deleted\": null,\n                \"type_data\": null,\n                \"body\": null\n            }\n        ],\n        \"next_job_stop_action\": {\n            \"job_stop_action_id\": 4238,\n            \"company_id\": 100,\n            \"job_id\": 2174818,\n            \"job_stop_id\": 3909326,\n            \"job_stop_type\": \"pickup\",\n            \"type\": {\n                \"id\": \"order_acknowledgement\",\n                \"display\": \"Order Acknowledgement\",\n                \"has_attachment\": 1,\n                \"attachment_name\": \"Signature\",\n                \"item_statuses\": {\n                    \"rejected\": {\n                        \"id\": \"rejected\",\n                        \"display\": \"Rejected\"\n                    },\n                    \"accepted\": {\n                        \"id\": \"accepted\",\n                        \"display\": \"Accepted\"\n                    }\n                },\n                \"rejection_reasons\": {\n                    \"lost_or_damaged\": {\n                        \"id\": \"lost_or_damaged\",\n                        \"display\": \"Lost or Damaged\",\n                        \"order\": 1\n                    },\n                    \"wrong_quantity\": {\n                        \"id\": \"wrong_quantity\",\n                        \"display\": \"Wrong Quantity\",\n                        \"order\": 2\n                    },\n                    \"other\": {\n                        \"id\": \"other\",\n                        \"display\": \"Other\",\n                        \"order\": 3\n                    }\n                },\n                \"settings\": {\n                    \"require_signature\": {\n                        \"id\": \"require_signature\",\n                        \"display\": \"Requires Signature\",\n                        \"optional\": true,\n                        \"type\": \"checkbox\"\n                    }\n                }\n            },\n            \"stop_status_id\": 4,\n            \"order\": 2,\n            \"button_text\": \"Order Acknowledgement\",\n            \"description\": \"Order Acknowledgement\",\n            \"url\": null,\n            \"attachments\": null,\n            \"meta\": {\n                \"settings\": {\n                    \"require_signature\": 1\n                }\n            },\n            \"is_active\": 1,\n            \"date_completed\": null,\n            \"date_created\": \"2021-04-28 17:14:23\",\n            \"date_updated\": \"2021-04-28 17:14:23\",\n            \"date_deleted\": null,\n            \"type_data\": null,\n            \"body\": null\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"bfd7e968-2b56-44a6-a45c-101609f28cc0"},{"name":"Complete Stop Action - Order Acknowledge","id":"d4fb4310-3153-4ecd-91de-7d2e0a4411f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_stop_action_id","value":"4238","type":"text"},{"key":"meta","value":"","type":"text","disabled":true},{"key":"job_stop_id","value":"3909326","type":"text"},{"key":"attachments","type":"file","src":"/Users/nickcassell/Downloads/SignatureAttachmentExample.png"},{"key":"type_data[items][0][ID]","value":"555","description":"<p>The <code>items</code> structure will already be defined on <code>job.items</code></p>\n","type":"text"},{"key":"type_data[items][0][qty]","value":"3","type":"text"},{"key":"type_data[items][0][name]","value":"Iced Coffee","type":"text"},{"key":"type_data[items][0][price]","value":"4","type":"text"},{"key":"type_data[items][0][_item_id]","value":"B1oTe07PL","type":"text"},{"key":"type_data[items][0][_status][status_id]","value":"rejected","description":"<p>Required. 'rejected' or 'accepted'</p>\n","type":"text"},{"key":"type_data[items][0][_status][notes]","value":"Nice and cold","description":"<p>optional</p>\n","type":"text"},{"key":"type_data[items][0][_status][rejection_reason_id]","value":"wrong_quantity","description":"<p>optional, only for rejected items. Options can be found on <code>job_stop_action.type.rejection_reasons</code></p>\n","type":"text"},{"key":"type","value":"order_acknowledgement","type":"text","disabled":true}]},"url":"{{host}}/job/:job_id/stop/action/complete/order_acknowledgement","description":"<p>This stop action is used for courier companies when they want each item on the job to be approved/rejected by the user who ordered it.</p>\n<p>This job stop action has a setting: get_signature. This is optional and the company can choose to get a signature or not. This will be set in <code>job_stop_actions.meta.settings.get_signature</code> when collecting the signature send it as <code>attachments</code> with the meta object having <code>attachment_type</code> = 'get_signature'</p>\n<p>When completing this action get the job.items array, and show the user each item and allow them to choose either 'rejected' or 'accepted' these statuses can be found on <code>job_stop_action.type.item_statuses</code></p>\n<p>If an item is rejected, the user can select a <code>item._status.rejection_reason_id</code> from <code>job_stop_action.type.rejection_reasons</code></p>\n","urlObject":{"path":["job",":job_id","stop","action","complete","order_acknowledgement"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174818","key":"job_id"}]}},"response":[{"id":"98c410fd-5f73-4d35-926f-6db7d2568bcb","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_stop_action_id","value":"4238","type":"text"},{"key":"meta","value":"","type":"text","disabled":true},{"key":"job_stop_id","value":"3909326","type":"text"},{"key":"attachments","type":"file","src":"/Users/nickcassell/Downloads/SignatureAttachmentExample.png"},{"key":"type_data[items][0][ID]","value":"555","description":"The `items` structure will already be defined on `job.items`","type":"text"},{"key":"type_data[items][0][qty]","value":"3","type":"text"},{"key":"type_data[items][0][name]","value":"Iced Coffee","type":"text"},{"key":"type_data[items][0][price]","value":"4","type":"text"},{"key":"type_data[items][0][_item_id]","value":"B1oTe07PL","type":"text"},{"key":"type_data[items][0][_status][status_id]","value":"rejected","description":"Required. 'rejected' or 'accepted'","type":"text"},{"key":"type_data[items][0][_status][notes]","value":"Nice and cold","description":"optional","type":"text"},{"key":"type_data[items][0][_status][rejection_reason_id]","value":"wrong_quantity","description":"optional, only for rejected items. Options can be found on `job_stop_action.type.rejection_reasons`\n","type":"text"},{"key":"type","value":"order_acknowledgement","type":"text","disabled":true}]},"url":{"raw":"{{host}}/job/:job_id/stop/action/complete/order_acknowledgement","host":["{{host}}"],"path":["job",":job_id","stop","action","complete","order_acknowledgement"],"variable":[{"key":"job_id","value":"2174818"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4546"},{"key":"ETag","value":"W/\"11c2-ffLDG4oAkYx+qw9D2IVwmzWi2wI\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:19:56 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_stop_id\": 3909326,\n        \"company_id\": 100,\n        \"job_id\": 2174818,\n        \"location_id\": 388586,\n        \"actual_location_id\": null,\n        \"user_id\": null,\n        \"type\": \"pickup\",\n        \"meta\": null,\n        \"status_id\": 4,\n        \"arrival_date\": \"2021-04-29 01:14:21\",\n        \"actual_arrival_date\": null,\n        \"in_progress_date\": \"2021-04-28 17:14:57\",\n        \"completed_date\": null,\n        \"cancelled_date\": null,\n        \"contact_phone_country\": null,\n        \"contact_phone\": null,\n        \"contact_name\": null,\n        \"notes\": null,\n        \"driver_notes\": null,\n        \"internal_notes\": null,\n        \"order\": 1,\n        \"attachments\": null,\n        \"date_created\": \"2021-04-28 17:14:22\",\n        \"date_updated\": \"2021-04-28 17:14:57\",\n        \"date_deleted\": null,\n        \"distance_to_next_stop_meters\": 5232,\n        \"duration_to_next_stop_seconds\": 865,\n        \"distance_from_previous_stop_meters\": 0,\n        \"duration_from_previous_stop_seconds\": 0,\n        \"wait_time_seconds\": null,\n        \"total_duration_seconds\": null,\n        \"return_stop_id\": null,\n        \"recipient\": null,\n        \"apartment_number\": null,\n        \"cancellation_reason\": null,\n        \"contact_phone_international\": null,\n        \"contact_phone_national\": null,\n        \"dispatch_group_order\": null,\n        \"skip_stop\": 0,\n        \"time_window_end_time\": null,\n        \"time_window_start_time\": null,\n        \"time_window_waiting_time_seconds\": null,\n        \"ignore_time_windows\": 0,\n        \"routing_data\": null,\n        \"estimated_departure_date\": null,\n        \"estimated_arrival_date\": null,\n        \"job_stop_actions\": [\n            {\n                \"job_stop_action_id\": 4239,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"job_stop_id\": 3909326,\n                \"job_stop_type\": \"pickup\",\n                \"type\": {\n                    \"id\": \"confirmation\",\n                    \"display\": \"Confirmation\",\n                    \"has_attachment\": 1,\n                    \"has_body\": true,\n                    \"attachment_name\": \"Signature\",\n                    \"settings\": {\n                        \"require_signature\": {\n                            \"id\": \"require_signature\",\n                            \"display\": \"Requires Signature\",\n                            \"optional\": true,\n                            \"type\": \"checkbox\"\n                        },\n                        \"require_notes\": {\n                            \"id\": \"require_notes\",\n                            \"display\": \"Requires Driver Notes\",\n                            \"optional\": true,\n                            \"type\": \"checkbox\"\n                        },\n                        \"show_notes\": {\n                            \"id\": \"show_notes\",\n                            \"display\": \"Show Driver Notes\",\n                            \"optional\": true,\n                            \"type\": \"checkbox\"\n                        }\n                    }\n                },\n                \"stop_status_id\": 4,\n                \"order\": 1,\n                \"button_text\": \"Confirmation\",\n                \"description\": \"Accept this confirmation\",\n                \"url\": null,\n                \"attachments\": [\n                    {\n                        \"size\": 5675,\n                        \"path\": \"tmp/2be083e43303f402ef58a7056e296802\",\n                        \"name\": \"SignatureAttachmentExample.png\",\n                        \"type\": \"image/png\",\n                        \"extension\": \"png\",\n                        \"stored_name\": \"signatureattachmentexample_TIp9cTcRy.png\",\n                        \"original_filename\": \"SignatureAttachmentExample.png\",\n                        \"remote_path\": \"liverydesk-public-dev/job/2174818/stop/3909326/action/4239/attachment\",\n                        \"attachment_type\": \"confirmation\",\n                        \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174818/stop/3909326/action/4239/attachment/signatureattachmentexample_TIp9cTcRy.png\"\n                    }\n                ],\n                \"meta\": {\n                    \"settings\": {\n                        \"show_notes\": 1,\n                        \"require_notes\": 1,\n                        \"require_signature\": 1\n                    }\n                },\n                \"is_active\": 1,\n                \"date_completed\": \"2021-04-28 17:18:39\",\n                \"date_created\": \"2021-04-28 17:14:23\",\n                \"date_updated\": \"2021-04-28 17:18:39\",\n                \"date_deleted\": null,\n                \"type_data\": {\n                    \"notes\": \"These are the driver notes\"\n                },\n                \"body\": \"Do you accept?\"\n            },\n            {\n                \"job_stop_action_id\": 4238,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"job_stop_id\": 3909326,\n                \"job_stop_type\": \"pickup\",\n                \"type\": {\n                    \"id\": \"order_acknowledgement\",\n                    \"display\": \"Order Acknowledgement\",\n                    \"has_attachment\": 1,\n                    \"attachment_name\": \"Signature\",\n                    \"item_statuses\": {\n                        \"rejected\": {\n                            \"id\": \"rejected\",\n                            \"display\": \"Rejected\"\n                        },\n                        \"accepted\": {\n                            \"id\": \"accepted\",\n                            \"display\": \"Accepted\"\n                        }\n                    },\n                    \"rejection_reasons\": {\n                        \"lost_or_damaged\": {\n                            \"id\": \"lost_or_damaged\",\n                            \"display\": \"Lost or Damaged\",\n                            \"order\": 1\n                        },\n                        \"wrong_quantity\": {\n                            \"id\": \"wrong_quantity\",\n                            \"display\": \"Wrong Quantity\",\n                            \"order\": 2\n                        },\n                        \"other\": {\n                            \"id\": \"other\",\n                            \"display\": \"Other\",\n                            \"order\": 3\n                        }\n                    },\n                    \"settings\": {\n                        \"require_signature\": {\n                            \"id\": \"require_signature\",\n                            \"display\": \"Requires Signature\",\n                            \"optional\": true,\n                            \"type\": \"checkbox\"\n                        }\n                    }\n                },\n                \"stop_status_id\": 4,\n                \"order\": 2,\n                \"button_text\": \"Order Acknowledgement\",\n                \"description\": \"Order Acknowledgement\",\n                \"url\": null,\n                \"attachments\": [\n                    {\n                        \"size\": 5675,\n                        \"path\": \"tmp/142ba5bdceb5776e2c5f72fef58766a0\",\n                        \"name\": \"SignatureAttachmentExample.png\",\n                        \"type\": \"image/png\",\n                        \"extension\": \"png\",\n                        \"stored_name\": \"signatureattachmentexample_cGQhZyZ7_C.png\",\n                        \"original_filename\": \"SignatureAttachmentExample.png\",\n                        \"remote_path\": \"liverydesk-public-dev/job/2174818/stop/3909326/action/4238/attachment\",\n                        \"attachment_type\": \"order_acknowledgement\",\n                        \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174818/stop/3909326/action/4238/attachment/signatureattachmentexample_cGQhZyZ7_C.png\"\n                    }\n                ],\n                \"meta\": {\n                    \"settings\": {\n                        \"require_signature\": 1\n                    }\n                },\n                \"is_active\": 1,\n                \"date_completed\": \"2021-04-28 17:19:56\",\n                \"date_created\": \"2021-04-28 17:14:23\",\n                \"date_updated\": \"2021-04-28 17:19:56\",\n                \"date_deleted\": null,\n                \"type_data\": {\n                    \"items\": [\n                        {\n                            \"ID\": \"555\",\n                            \"qty\": \"3\",\n                            \"name\": \"Iced Coffee\",\n                            \"price\": \"4\",\n                            \"_item_id\": \"B1oTe07PL\",\n                            \"_status\": {\n                                \"status_id\": \"rejected\",\n                                \"notes\": \"Nice and cold\",\n                                \"rejection_reason_id\": \"wrong_quantity\"\n                            }\n                        }\n                    ]\n                },\n                \"body\": null\n            }\n        ],\n        \"next_job_stop_action\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"d4fb4310-3153-4ecd-91de-7d2e0a4411f4"},{"name":"Set Active Status For Job Stop Action","id":"0891dfd5-60a9-4967-a781-a2d94431811a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_stop_action_id","value":"59","type":"text"},{"key":"job_stop_id","value":"1180258","type":"text"},{"key":"is_active","value":"1","type":"text"}]},"url":"{{host}}/job/stop/action/status","urlObject":{"path":["job","stop","action","status"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0891dfd5-60a9-4967-a781-a2d94431811a"}],"id":"d963e662-298c-4eb3-8929-720b44088a60","_postman_id":"d963e662-298c-4eb3-8929-720b44088a60","description":""},{"name":"Stops","item":[{"name":"Arrived at Stop","id":"fb36d828-bac0-4d23-8fee-ab9da0a2a075","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stop_id","value":"3909326","type":"text"}]},"url":"{{host}}/job/:job_id/stop/arrive","urlObject":{"path":["job",":job_id","stop","arrive"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174818","key":"job_id"}]}},"response":[{"id":"f9c9b739-86d1-43f5-8f66-91213056e534","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stop_id","value":"3909326","type":"text"}]},"url":{"raw":"{{host}}/job/:job_id/stop/arrive","host":["{{host}}"],"path":["job",":job_id","stop","arrive"],"variable":[{"key":"job_id","value":"2174818"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"22218"},{"key":"ETag","value":"W/\"56ca-rq6ejNj6Pa1imM53FhPIuUhEOHw\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:22:32 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174818,\n        \"job_number\": 8,\n        \"origin_job_number\": null,\n        \"hash\": \"ZhFVBejcJ\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": 965,\n        \"pickup_location_id\": 388586,\n        \"actual_pickup_location_id\": null,\n        \"dropoff_location_id\": 388574,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388586,\n            \"address\": \"385 Metropolitan Ave\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11211\",\n            \"country\": \"US\",\n            \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"latitude\": 40.71407,\n            \"longitude\": -73.95536,\n            \"date_created\": \"2021-04-27 21:32:35\",\n            \"date_updated\": \"2021-04-27 21:32:35\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388574,\n            \"address\": \"33 Bond St\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11201\",\n            \"country\": \"US\",\n            \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"latitude\": 40.68864,\n            \"longitude\": -73.9835,\n            \"date_created\": \"2021-03-09 20:40:53\",\n            \"date_updated\": \"2021-03-09 20:40:53\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"f30c5007222a4985a820a6397789a038\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2021-04-28 17:14:22\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 4,\n        \"in_progress_date\": \"2021-04-28 17:22:06\",\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"driver notes\",\n        \"internal_notes\": \"\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": null,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 0,\n        \"price_override_flag\": 0,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-28 17:14:22\",\n        \"date_updated\": \"2021-04-28 17:22:06\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": null,\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": 364,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"driver\": {\n            \"employee_id\": 965,\n            \"driver_number\": 1,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Company\",\n            \"username\": \"demodriver@test_company\",\n            \"email\": \"testcompany@testcompany.com\",\n            \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n            \"password_hint\": \"pa*****4\",\n            \"hash\": \"rjgtIGdgx\",\n            \"company_id\": 100,\n            \"location_id\": 388582,\n            \"primary_phone_country\": \"US\",\n            \"primary_phone\": \"2222222222\",\n            \"secondary_phone_country\": null,\n            \"secondary_phone\": null,\n            \"is_driver\": 1,\n            \"role_name\": \"driver\",\n            \"is_active\": 1,\n            \"is_deleted\": 0,\n            \"social_security_number\": null,\n            \"date_of_birth\": null,\n            \"base\": null,\n            \"base_id\": 67,\n            \"old_base_id\": null,\n            \"base_license_number\": null,\n            \"base_fee\": null,\n            \"base_fee_frequency\": null,\n            \"base_fee_last_processed\": null,\n            \"enable_recurring_base_fee\": 0,\n            \"base_fee_start_date\": null,\n            \"hack_license_number\": null,\n            \"hack_license_expiration\": null,\n            \"driver_license_number\": \"Change this\",\n            \"driver_license_expiration\": \"2021-05-27\",\n            \"driver_license_class\": \"D\",\n            \"is_car_owner\": 0,\n            \"dispatch_app_version\": null,\n            \"device_id\": null,\n            \"date_created\": \"2021-04-27 17:53:51\",\n            \"date_updated\": \"2021-04-28 16:48:55\",\n            \"car_type_id\": 255,\n            \"new_car_type_id\": null,\n            \"car_make\": \"Toyota\",\n            \"car_model\": \"Camry\",\n            \"car_year\": 2016,\n            \"car_color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"on_duty\": 0,\n            \"on_duty_date\": null,\n            \"phone_verified\": null,\n            \"phone_verification_code\": null,\n            \"phone_verified_date\": null,\n            \"picture\": null,\n            \"attributes\": null,\n            \"profile\": null,\n            \"application_approved_date\": null,\n            \"application_approved\": 0,\n            \"number_of_ratings\": 0,\n            \"average_rating\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            },\n            \"transaction_balance\": 0,\n            \"suspended_until\": null,\n            \"date_unsuspending\": null,\n            \"password_reset_hash\": null,\n            \"password_reset_client_hash\": null,\n            \"password_reset_hash_date\": null,\n            \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n            \"is_suspended\": 0,\n            \"recruiter_entity_id\": null,\n            \"recruiter_entity_type\": null,\n            \"car_vin\": null,\n            \"assigned_to_vehicle_id\": 364,\n            \"parent_employee_id\": null,\n            \"custom_attributes\": null,\n            \"primary_phone_international\": \"+1 222 222 2222\",\n            \"primary_phone_national\": \"(222) 222-2222\",\n            \"transaction_balace\": 0,\n            \"car_type\": {\n                \"vehicle_id\": 364,\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            },\n            \"assigned_to_vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            }\n        },\n        \"vehicle\": {\n            \"vehicle_id\": 364,\n            \"company_id\": 100,\n            \"owner_employee_id\": 965,\n            \"type_id\": 255,\n            \"name\": null,\n            \"make\": \"Toyota\",\n            \"model\": \"Camry\",\n            \"year\": 2016,\n            \"color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration_date\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"inspection_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": 1,\n            \"date_created\": \"2021-04-27T17:53:51Z\",\n            \"date_updated\": \"2021-04-27T17:53:51Z\",\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"_type\": \"vehicle\",\n            \"summary\": \"2016 Black Toyota Camry\",\n            \"car_type\": {\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": {\n                    \"capacity\": {\n                        \"value\": 6\n                    }\n                },\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            }\n        },\n        \"driver_base\": {\n            \"base_id\": 67,\n            \"name\": \"TEST_COMPANY\"\n        },\n        \"job_status\": {\n            \"status_id\": 4,\n            \"name\": \"In Progress\",\n            \"slug\": \"in-progress\",\n            \"order\": 40\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 964,\n            \"first_name\": \"LD\",\n            \"last_name\": \"Admin\",\n            \"email\": \"info@liverydesk.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 4,\n            \"name\": \"In Progress\",\n            \"slug\": \"in-progress\",\n            \"order\": 40\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 0,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 0,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/ZhFVBejcJ\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909326,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 5,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n                \"in_progress_date\": \"2021-04-28 17:22:05\",\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:22:31\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 5,\n                    \"name\": \"In Front\",\n                    \"slug\": \"in-front\",\n                    \"order\": 50\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4239,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:26\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"notes\": \"These are the driver notes\"\n                        },\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4238,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:27\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"items\": [\n                                {\n                                    \"ID\": \"555\",\n                                    \"qty\": \"3\",\n                                    \"name\": \"Iced Coffee\",\n                                    \"price\": \"4\",\n                                    \"_item_id\": \"B1oTe07PL\",\n                                    \"_status\": {\n                                        \"status_id\": \"rejected\",\n                                        \"notes\": \"Nice and cold\",\n                                        \"rejection_reason_id\": \"wrong_quantity\"\n                                    }\n                                }\n                            ]\n                        },\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            {\n                \"job_stop_id\": 3909327,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:20:55\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            }\n        ],\n        \"current_stop\": {\n            \"job_stop_id\": 3909326,\n            \"company_id\": 100,\n            \"job_id\": 2174818,\n            \"location_id\": 388586,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": null,\n            \"status_id\": 5,\n            \"arrival_date\": \"2021-04-29 01:14:21\",\n            \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n            \"in_progress_date\": \"2021-04-28 17:22:05\",\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:14:22\",\n            \"date_updated\": \"2021-04-28 17:22:31\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 5232,\n            \"duration_to_next_stop_seconds\": 865,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 5,\n                \"name\": \"In Front\",\n                \"slug\": \"in-front\",\n                \"order\": 50\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4239,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"job_stop_id\": 3909326,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"confirmation\",\n                        \"display\": \"Confirmation\",\n                        \"has_attachment\": 1,\n                        \"has_body\": true,\n                        \"attachment_name\": \"Signature\",\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"require_notes\": {\n                                \"id\": \"require_notes\",\n                                \"display\": \"Requires Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"show_notes\": {\n                                \"id\": \"show_notes\",\n                                \"display\": \"Show Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Confirmation\",\n                    \"description\": \"Accept this confirmation\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"show_notes\": 1,\n                            \"require_notes\": 1,\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 0,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:14:23\",\n                    \"date_updated\": \"2021-04-28 17:22:26\",\n                    \"date_deleted\": null,\n                    \"type_data\": {\n                        \"notes\": \"These are the driver notes\"\n                    },\n                    \"body\": \"Do you accept?\"\n                },\n                {\n                    \"job_stop_action_id\": 4238,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"job_stop_id\": 3909326,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"order_acknowledgement\",\n                        \"display\": \"Order Acknowledgement\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\",\n                        \"item_statuses\": {\n                            \"rejected\": {\n                                \"id\": \"rejected\",\n                                \"display\": \"Rejected\"\n                            },\n                            \"accepted\": {\n                                \"id\": \"accepted\",\n                                \"display\": \"Accepted\"\n                            }\n                        },\n                        \"rejection_reasons\": {\n                            \"lost_or_damaged\": {\n                                \"id\": \"lost_or_damaged\",\n                                \"display\": \"Lost or Damaged\",\n                                \"order\": 1\n                            },\n                            \"wrong_quantity\": {\n                                \"id\": \"wrong_quantity\",\n                                \"display\": \"Wrong Quantity\",\n                                \"order\": 2\n                            },\n                            \"other\": {\n                                \"id\": \"other\",\n                                \"display\": \"Other\",\n                                \"order\": 3\n                            }\n                        },\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 2,\n                    \"button_text\": \"Order Acknowledgement\",\n                    \"description\": \"Order Acknowledgement\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 0,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:14:23\",\n                    \"date_updated\": \"2021-04-28 17:22:27\",\n                    \"date_deleted\": null,\n                    \"type_data\": {\n                        \"items\": [\n                            {\n                                \"ID\": \"555\",\n                                \"qty\": \"3\",\n                                \"name\": \"Iced Coffee\",\n                                \"price\": \"4\",\n                                \"_item_id\": \"B1oTe07PL\",\n                                \"_status\": {\n                                    \"status_id\": \"rejected\",\n                                    \"notes\": \"Nice and cold\",\n                                    \"rejection_reason_id\": \"wrong_quantity\"\n                                }\n                            }\n                        ]\n                    },\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": null\n        },\n        \"next_stop\": {\n            \"job_stop_id\": 3909327,\n            \"company_id\": 100,\n            \"job_id\": 2174818,\n            \"location_id\": 388574,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2021-04-29 01:14:21\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:14:22\",\n            \"date_updated\": \"2021-04-28 17:20:55\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 5232,\n            \"duration_from_previous_stop_seconds\": 865,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            }\n        },\n        \"previous_stop\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"fb36d828-bac0-4d23-8fee-ab9da0a2a075"},{"name":"Complete Stop","id":"8662299c-d664-4848-b918-0fd12a27d075","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stop_id","value":"3909326","type":"text"},{"key":"latitude","value":"40.70327","type":"text"},{"key":"longitude","value":"-73.66735","type":"text"},{"key":"recipient_name","value":"John Nextdoor","description":"<p>Optional</p>\n","type":"text"},{"key":"recipient_designation","value":"Nextdoor Neighbor","description":"<p>Optional</p>\n","type":"text"},{"key":"recipient_address","value":"123 West Ave","description":"<p>Optional</p>\n","type":"text"}]},"url":"{{host}}/job/:job_id/stop/complete","urlObject":{"path":["job",":job_id","stop","complete"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174818","key":"job_id"}]}},"response":[{"id":"195cd346-f16c-4a88-a337-5a123c8ed8f8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stop_id","value":"3909326","type":"text"},{"key":"latitude","value":"40.70327","type":"text"},{"key":"longitude","value":"-73.66735","type":"text"},{"key":"recipient_name","value":"John Nextdoor","description":"Optional","type":"text"},{"key":"recipient_designation","value":"Nextdoor Neighbor","description":"Optional","type":"text"},{"key":"recipient_address","value":"123 West Ave","description":"Optional","type":"text"}]},"url":{"raw":"{{host}}/job/:job_id/stop/complete","host":["{{host}}"],"path":["job",":job_id","stop","complete"],"variable":[{"key":"job_id","value":"2174818"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"24095"},{"key":"ETag","value":"W/\"5e1f-XzTjsSh2qywTv1Rk93rHjATIijs\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:24:45 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174818,\n        \"job_number\": 8,\n        \"origin_job_number\": null,\n        \"hash\": \"ZhFVBejcJ\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": 965,\n        \"pickup_location_id\": 388586,\n        \"actual_pickup_location_id\": 388589,\n        \"dropoff_location_id\": 388574,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388586,\n            \"address\": \"385 Metropolitan Ave\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11211\",\n            \"country\": \"US\",\n            \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"latitude\": 40.71407,\n            \"longitude\": -73.95536,\n            \"date_created\": \"2021-04-27 21:32:35\",\n            \"date_updated\": \"2021-04-27 21:32:35\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388574,\n            \"address\": \"33 Bond St\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11201\",\n            \"country\": \"US\",\n            \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"latitude\": 40.68864,\n            \"longitude\": -73.9835,\n            \"date_created\": \"2021-03-09 20:40:53\",\n            \"date_updated\": \"2021-03-09 20:40:53\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"f30c5007222a4985a820a6397789a038\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2021-04-28 17:14:22\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 4,\n        \"in_progress_date\": \"2021-04-28 17:22:06\",\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"driver notes\",\n        \"internal_notes\": \"\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": null,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 0,\n        \"price_override_flag\": 0,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-28 17:14:22\",\n        \"date_updated\": \"2021-04-28 17:22:06\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": null,\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": 364,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"driver\": {\n            \"employee_id\": 965,\n            \"driver_number\": 1,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Company\",\n            \"username\": \"demodriver@test_company\",\n            \"email\": \"testcompany@testcompany.com\",\n            \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n            \"password_hint\": \"pa*****4\",\n            \"hash\": \"rjgtIGdgx\",\n            \"company_id\": 100,\n            \"location_id\": 388582,\n            \"primary_phone_country\": \"US\",\n            \"primary_phone\": \"2222222222\",\n            \"secondary_phone_country\": null,\n            \"secondary_phone\": null,\n            \"is_driver\": 1,\n            \"role_name\": \"driver\",\n            \"is_active\": 1,\n            \"is_deleted\": 0,\n            \"social_security_number\": null,\n            \"date_of_birth\": null,\n            \"base\": null,\n            \"base_id\": 67,\n            \"old_base_id\": null,\n            \"base_license_number\": null,\n            \"base_fee\": null,\n            \"base_fee_frequency\": null,\n            \"base_fee_last_processed\": null,\n            \"enable_recurring_base_fee\": 0,\n            \"base_fee_start_date\": null,\n            \"hack_license_number\": null,\n            \"hack_license_expiration\": null,\n            \"driver_license_number\": \"Change this\",\n            \"driver_license_expiration\": \"2021-05-27\",\n            \"driver_license_class\": \"D\",\n            \"is_car_owner\": 0,\n            \"dispatch_app_version\": null,\n            \"device_id\": null,\n            \"date_created\": \"2021-04-27 17:53:51\",\n            \"date_updated\": \"2021-04-28 16:48:55\",\n            \"car_type_id\": 255,\n            \"new_car_type_id\": null,\n            \"car_make\": \"Toyota\",\n            \"car_model\": \"Camry\",\n            \"car_year\": 2016,\n            \"car_color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"on_duty\": 0,\n            \"on_duty_date\": null,\n            \"phone_verified\": null,\n            \"phone_verification_code\": null,\n            \"phone_verified_date\": null,\n            \"picture\": null,\n            \"attributes\": null,\n            \"profile\": null,\n            \"application_approved_date\": null,\n            \"application_approved\": 0,\n            \"number_of_ratings\": 0,\n            \"average_rating\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            },\n            \"transaction_balance\": 0,\n            \"suspended_until\": null,\n            \"date_unsuspending\": null,\n            \"password_reset_hash\": null,\n            \"password_reset_client_hash\": null,\n            \"password_reset_hash_date\": null,\n            \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n            \"is_suspended\": 0,\n            \"recruiter_entity_id\": null,\n            \"recruiter_entity_type\": null,\n            \"car_vin\": null,\n            \"assigned_to_vehicle_id\": 364,\n            \"parent_employee_id\": null,\n            \"custom_attributes\": null,\n            \"primary_phone_international\": \"+1 222 222 2222\",\n            \"primary_phone_national\": \"(222) 222-2222\",\n            \"transaction_balace\": 0,\n            \"car_type\": {\n                \"vehicle_id\": 364,\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            },\n            \"assigned_to_vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            }\n        },\n        \"vehicle\": {\n            \"vehicle_id\": 364,\n            \"company_id\": 100,\n            \"owner_employee_id\": 965,\n            \"type_id\": 255,\n            \"name\": null,\n            \"make\": \"Toyota\",\n            \"model\": \"Camry\",\n            \"year\": 2016,\n            \"color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration_date\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"inspection_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": 1,\n            \"date_created\": \"2021-04-27T17:53:51Z\",\n            \"date_updated\": \"2021-04-27T17:53:51Z\",\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"_type\": \"vehicle\",\n            \"summary\": \"2016 Black Toyota Camry\",\n            \"car_type\": {\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": {\n                    \"capacity\": {\n                        \"value\": 6\n                    }\n                },\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            }\n        },\n        \"driver_base\": {\n            \"base_id\": 67,\n            \"name\": \"TEST_COMPANY\"\n        },\n        \"job_status\": {\n            \"status_id\": 4,\n            \"name\": \"In Progress\",\n            \"slug\": \"in-progress\",\n            \"order\": 40\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 964,\n            \"first_name\": \"LD\",\n            \"last_name\": \"Admin\",\n            \"email\": \"info@liverydesk.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 4,\n            \"name\": \"In Progress\",\n            \"slug\": \"in-progress\",\n            \"order\": 40\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 0,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 0,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/ZhFVBejcJ\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909326,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388586,\n                \"actual_location_id\": 388589,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n                \"in_progress_date\": \"2021-04-28 17:22:05\",\n                \"completed_date\": \"2021-04-28 17:24:44\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:24:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": 133,\n                \"total_duration_seconds\": 159,\n                \"return_stop_id\": null,\n                \"recipient\": {\n                    \"name\": \"John Nextdoor\",\n                    \"designation\": \"Nextdoor Neighbor\",\n                    \"address\": \"123 West Ave\"\n                },\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388589,\n                    \"address\": \"169 Grange St\",\n                    \"address_two\": null,\n                    \"city\": \"Franklin Square\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11010\",\n                    \"country\": \"US\",\n                    \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                    \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                    \"latitude\": 40.70324,\n                    \"longitude\": -73.66761,\n                    \"date_created\": \"2021-04-28 17:24:44\",\n                    \"date_updated\": \"2021-04-28 17:24:44\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4239,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:26\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"notes\": \"These are the driver notes\"\n                        },\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4238,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:27\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"items\": [\n                                {\n                                    \"ID\": \"555\",\n                                    \"qty\": \"3\",\n                                    \"name\": \"Iced Coffee\",\n                                    \"price\": \"4\",\n                                    \"_item_id\": \"B1oTe07PL\",\n                                    \"_status\": {\n                                        \"status_id\": \"rejected\",\n                                        \"notes\": \"Nice and cold\",\n                                        \"rejection_reason_id\": \"wrong_quantity\"\n                                    }\n                                }\n                            ]\n                        },\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            {\n                \"job_stop_id\": 3909327,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 4,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": \"2021-04-28 17:24:45\",\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:24:45\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 4,\n                    \"name\": \"In Progress\",\n                    \"slug\": \"in-progress\",\n                    \"order\": 40\n                }\n            }\n        ],\n        \"actual_pickup_location\": {\n            \"location_id\": 388589,\n            \"address\": \"169 Grange St\",\n            \"address_two\": null,\n            \"city\": \"Franklin Square\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11010\",\n            \"country\": \"US\",\n            \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n            \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n            \"latitude\": 40.70324,\n            \"longitude\": -73.66761,\n            \"date_created\": \"2021-04-28 17:24:44\",\n            \"date_updated\": \"2021-04-28 17:24:44\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n            \"company_id\": null\n        },\n        \"current_stop\": {\n            \"job_stop_id\": 3909327,\n            \"company_id\": 100,\n            \"job_id\": 2174818,\n            \"location_id\": 388574,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 4,\n            \"arrival_date\": \"2021-04-29 01:14:21\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": \"2021-04-28 17:24:45\",\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:14:22\",\n            \"date_updated\": \"2021-04-28 17:24:45\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 5232,\n            \"duration_from_previous_stop_seconds\": 865,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 4,\n                \"name\": \"In Progress\",\n                \"slug\": \"in-progress\",\n                \"order\": 40\n            }\n        },\n        \"next_stop\": null,\n        \"previous_stop\": {\n            \"job_stop_id\": 3909326,\n            \"company_id\": 100,\n            \"job_id\": 2174818,\n            \"location_id\": 388586,\n            \"actual_location_id\": 388589,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": {},\n            \"status_id\": 7,\n            \"arrival_date\": \"2021-04-29 01:14:21\",\n            \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n            \"in_progress_date\": \"2021-04-28 17:22:05\",\n            \"completed_date\": \"2021-04-28 17:24:44\",\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:14:22\",\n            \"date_updated\": \"2021-04-28 17:24:44\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 5232,\n            \"duration_to_next_stop_seconds\": 865,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": 133,\n            \"total_duration_seconds\": 159,\n            \"return_stop_id\": null,\n            \"recipient\": {\n                \"name\": \"John Nextdoor\",\n                \"designation\": \"Nextdoor Neighbor\",\n                \"address\": \"123 West Ave\"\n            },\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"actual_location\": {\n                \"location_id\": 388589,\n                \"address\": \"169 Grange St\",\n                \"address_two\": null,\n                \"city\": \"Franklin Square\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11010\",\n                \"country\": \"US\",\n                \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                \"latitude\": 40.70324,\n                \"longitude\": -73.66761,\n                \"date_created\": \"2021-04-28 17:24:44\",\n                \"date_updated\": \"2021-04-28 17:24:44\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 7,\n                \"name\": \"Completed\",\n                \"slug\": \"completed\",\n                \"order\": 70\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4239,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"job_stop_id\": 3909326,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"confirmation\",\n                        \"display\": \"Confirmation\",\n                        \"has_attachment\": 1,\n                        \"has_body\": true,\n                        \"attachment_name\": \"Signature\",\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"require_notes\": {\n                                \"id\": \"require_notes\",\n                                \"display\": \"Requires Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"show_notes\": {\n                                \"id\": \"show_notes\",\n                                \"display\": \"Show Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Confirmation\",\n                    \"description\": \"Accept this confirmation\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"show_notes\": 1,\n                            \"require_notes\": 1,\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 0,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:14:23\",\n                    \"date_updated\": \"2021-04-28 17:22:26\",\n                    \"date_deleted\": null,\n                    \"type_data\": {\n                        \"notes\": \"These are the driver notes\"\n                    },\n                    \"body\": \"Do you accept?\"\n                },\n                {\n                    \"job_stop_action_id\": 4238,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"job_stop_id\": 3909326,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"order_acknowledgement\",\n                        \"display\": \"Order Acknowledgement\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\",\n                        \"item_statuses\": {\n                            \"rejected\": {\n                                \"id\": \"rejected\",\n                                \"display\": \"Rejected\"\n                            },\n                            \"accepted\": {\n                                \"id\": \"accepted\",\n                                \"display\": \"Accepted\"\n                            }\n                        },\n                        \"rejection_reasons\": {\n                            \"lost_or_damaged\": {\n                                \"id\": \"lost_or_damaged\",\n                                \"display\": \"Lost or Damaged\",\n                                \"order\": 1\n                            },\n                            \"wrong_quantity\": {\n                                \"id\": \"wrong_quantity\",\n                                \"display\": \"Wrong Quantity\",\n                                \"order\": 2\n                            },\n                            \"other\": {\n                                \"id\": \"other\",\n                                \"display\": \"Other\",\n                                \"order\": 3\n                            }\n                        },\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 2,\n                    \"button_text\": \"Order Acknowledgement\",\n                    \"description\": \"Order Acknowledgement\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 0,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:14:23\",\n                    \"date_updated\": \"2021-04-28 17:22:27\",\n                    \"date_deleted\": null,\n                    \"type_data\": {\n                        \"items\": [\n                            {\n                                \"ID\": \"555\",\n                                \"qty\": \"3\",\n                                \"name\": \"Iced Coffee\",\n                                \"price\": \"4\",\n                                \"_item_id\": \"B1oTe07PL\",\n                                \"_status\": {\n                                    \"status_id\": \"rejected\",\n                                    \"notes\": \"Nice and cold\",\n                                    \"rejection_reason_id\": \"wrong_quantity\"\n                                }\n                            }\n                        ]\n                    },\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": null\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"8662299c-d664-4848-b918-0fd12a27d075"},{"name":"Cancel Stop","id":"d44449c7-eeaa-48c0-b4a0-e36a2ddac893","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stop_id","value":"3909327","type":"text"},{"key":"cancellation_reason","value":"Not available","type":"text"}]},"url":"{{host}}/job/:job_id/stop/cancel","urlObject":{"path":["job",":job_id","stop","cancel"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174818","key":"job_id"}]}},"response":[{"id":"9e7eb1cf-dd86-4582-a834-f03274d0dbc4","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stop_id","value":"3909327","type":"text"},{"key":"cancellation_reason","value":"Not available","type":"text"}]},"url":{"raw":"{{host}}/job/:job_id/stop/cancel","host":["{{host}}"],"path":["job",":job_id","stop","cancel"],"variable":[{"key":"job_id","value":"2174818"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1335"},{"key":"ETag","value":"W/\"537-FD/TLZZs9cd8WrVECwRo9ImFjfo\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:25:47 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_stop_id\": 3909327,\n        \"company_id\": 100,\n        \"job_id\": 2174818,\n        \"location_id\": 388574,\n        \"actual_location_id\": null,\n        \"user_id\": null,\n        \"type\": \"dropoff\",\n        \"meta\": {\n            \"cancellation\": {\n                \"cancellation_reason\": \"Not available\"\n            }\n        },\n        \"status_id\": 8,\n        \"arrival_date\": \"2021-04-29 01:14:21\",\n        \"actual_arrival_date\": null,\n        \"in_progress_date\": \"2021-04-28 17:24:45\",\n        \"completed_date\": null,\n        \"cancelled_date\": \"2021-04-28 17:25:47\",\n        \"contact_phone_country\": null,\n        \"contact_phone\": null,\n        \"contact_name\": null,\n        \"notes\": null,\n        \"driver_notes\": null,\n        \"internal_notes\": null,\n        \"order\": 2,\n        \"attachments\": null,\n        \"date_created\": \"2021-04-28 17:14:22\",\n        \"date_updated\": \"2021-04-28 17:25:47\",\n        \"date_deleted\": null,\n        \"distance_to_next_stop_meters\": 0,\n        \"duration_to_next_stop_seconds\": 0,\n        \"distance_from_previous_stop_meters\": 5232,\n        \"duration_from_previous_stop_seconds\": 865,\n        \"wait_time_seconds\": null,\n        \"total_duration_seconds\": null,\n        \"return_stop_id\": null,\n        \"recipient\": null,\n        \"apartment_number\": null,\n        \"cancellation_reason\": null,\n        \"contact_phone_international\": null,\n        \"contact_phone_national\": null,\n        \"dispatch_group_order\": null,\n        \"skip_stop\": 0,\n        \"time_window_end_time\": null,\n        \"time_window_start_time\": null,\n        \"time_window_waiting_time_seconds\": null,\n        \"ignore_time_windows\": 0,\n        \"routing_data\": null,\n        \"estimated_departure_date\": null,\n        \"estimated_arrival_date\": null,\n        \"job_stop_actions\": []\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"d44449c7-eeaa-48c0-b4a0-e36a2ddac893"},{"name":"Update Stop","id":"d81a8072-1f9f-41df-a686-f3de655ea018","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stop_id","value":"3909321","type":"text"},{"key":"notes","value":"some 333 notes from passenger\n","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"driver_notes","value":"some notes from driver","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"contact_name","value":"smith","description":"<p>Optional</p>\n","type":"text"},{"key":"contact_phone","value":"2222222222","description":"<p>Optional</p>\n","type":"text"},{"key":"contact_phone_country","value":"us","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"longitude","value":"","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"latitude","value":"","description":"<p>Optional</p>\n","type":"text","disabled":true}]},"url":"{{host}}/job/:job_id/stop","urlObject":{"path":["job",":job_id","stop"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174816","key":"job_id"}]}},"response":[{"id":"d589af18-f0da-4c3a-b9a5-4c3300727556","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stop_id","value":"3909321","type":"text"},{"key":"notes","value":"some 333 notes from passenger\n","description":"Optional","type":"text","disabled":true},{"key":"driver_notes","value":"some notes from driver","description":"Optional","type":"text","disabled":true},{"key":"contact_name","value":"smith","description":"Optional","type":"text"},{"key":"contact_phone","value":"2222222222","description":"Optional","type":"text"},{"key":"contact_phone_country","value":"us","description":"Optional","type":"text","disabled":true},{"key":"longitude","value":"","description":"Optional","type":"text","disabled":true},{"key":"latitude","value":"","description":"Optional","type":"text","disabled":true}]},"url":{"raw":"{{host}}/job/:job_id/stop","host":["{{host}}"],"path":["job",":job_id","stop"],"variable":[{"key":"job_id","value":"2174816"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1253"},{"key":"ETag","value":"W/\"4e5-wJd4O89Co3GnLtaNG7yjYXCWBDI\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:28:35 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_stop_id\": 3909321,\n        \"company_id\": 100,\n        \"job_id\": 2174816,\n        \"location_id\": 388586,\n        \"actual_location_id\": null,\n        \"user_id\": null,\n        \"type\": \"pickup\",\n        \"meta\": null,\n        \"status_id\": 1,\n        \"arrival_date\": \"2021-04-28 20:54:00\",\n        \"actual_arrival_date\": null,\n        \"in_progress_date\": null,\n        \"completed_date\": null,\n        \"cancelled_date\": null,\n        \"contact_phone_country\": null,\n        \"contact_phone\": null,\n        \"contact_name\": \"smith\",\n        \"notes\": null,\n        \"driver_notes\": null,\n        \"internal_notes\": null,\n        \"order\": 1,\n        \"attachments\": null,\n        \"date_created\": \"2021-04-28 16:54:20\",\n        \"date_updated\": \"2021-04-28 17:28:34\",\n        \"date_deleted\": null,\n        \"distance_to_next_stop_meters\": 5232,\n        \"duration_to_next_stop_seconds\": 865,\n        \"distance_from_previous_stop_meters\": 0,\n        \"duration_from_previous_stop_seconds\": 0,\n        \"wait_time_seconds\": null,\n        \"total_duration_seconds\": null,\n        \"return_stop_id\": null,\n        \"recipient\": null,\n        \"apartment_number\": null,\n        \"cancellation_reason\": null,\n        \"contact_phone_international\": null,\n        \"contact_phone_national\": null,\n        \"dispatch_group_order\": null,\n        \"skip_stop\": 0,\n        \"time_window_end_time\": null,\n        \"time_window_start_time\": null,\n        \"time_window_waiting_time_seconds\": null,\n        \"ignore_time_windows\": 0,\n        \"routing_data\": \"null\",\n        \"estimated_departure_date\": null,\n        \"estimated_arrival_date\": null,\n        \"job_stop_actions\": []\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"d81a8072-1f9f-41df-a686-f3de655ea018"},{"name":"Validate Stop Zones","id":"901cb21c-fe1d-4f4b-a5f3-ec26bda48696","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stops[0][latitude]","value":"36.13021","type":"text"},{"key":"stops[0][longitude]","value":"-115.176","type":"text"},{"key":"stops[0][type]","value":"pickup","type":"text"},{"key":"stops[0][long_name]","value":" 2548 W Desert Inn Rd, Las Vegas, NV 89109, USA","type":"text","disabled":true},{"key":"stops[1][latitude]","value":"36.0511","type":"text"},{"key":"stops[1][longitude]","value":"-115.2241","type":"text"},{"key":"stops[1][type]","value":"dropoff","type":"text"},{"key":"stops[1][long_name]","value":"7600 S Jones Blvd, Las Vegas, NV 89139, USA","type":"text","disabled":true},{"key":"stops[1][arrival_date]","value":"2019-11-19T21:47:00-04:00","type":"text","disabled":true},{"key":"stops[1][location_id]","value":"387876","type":"text","disabled":true}]},"url":"{{host}}/job/validatezones","description":"<p>Validate all the stops to make sure the company services these areas. The params provided are the minimum necessary, but this endpoint can accept an array of <code>stop</code> objects to validate. If any stop is not in a valid zone, this endpoint will return an error message stating which location is invalid. If all the stops are valid, <code>true</code> will be returned.</p>\n<p>Each stop must include at least one set of the following attributes:</p>\n<ul>\n<li><code>latitude</code> and <code>longitude</code></li>\n<li><code>long_name</code></li>\n<li><code>location_id</code></li>\n</ul>\n","urlObject":{"path":["job","validatezones"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"10f848b8-30c7-433b-a88e-243552d8e00c","name":"Stops are valid","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stops[0][latitude]","value":"40.72822","type":"text"},{"key":"stops[0][longitude]","value":"-73.70667000000003","type":"text"},{"key":"stops[0][type]","value":"pickup","type":"text"},{"key":"stops[1][longitude]","value":"-73.64537630000001","type":"text"},{"key":"stops[1][latitude]","value":"40.78822","type":"text"},{"key":"stops[1][type]","value":"dropoff","type":"text"}]},"url":"{{host}}/job/validatezones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"57","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 27 Aug 2018 14:06:36 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"39-jsunUOEuA6vHonKgQGg5LpbfkN4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3ArcYFJ23vIKgpoNjGj527lHlTJxOTO65Y.ye2IYb24SYgxZuM0LJ2jvY6jG4RHGFfvcn9%2FzXfEpoQ","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\n    \"data\": true,\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\"\n    }\n}"},{"id":"9740e728-a7ad-4676-85db-a3bb1c8546c3","name":"Invalid stop","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stops[0][type]","value":"pickup","type":"text"},{"key":"stops[0][address]","value":"123 Jericho Turnpik","type":"text"},{"key":"stops[0][city]","value":"Floral Park","type":"text"},{"key":"stops[0][state]","value":"New York","type":"text"},{"key":"stops[0][postal_code]","value":"11001","type":"text"},{"key":"stops[0][latitude]","value":"40.72822","type":"text"},{"key":"stops[0][longitude]","value":"-73.70667000000003","type":"text"},{"key":"stops[0][long_name]","value":"123 Jericho Turnpike, Floral Park, NY 11001, USA","type":"text"},{"key":"stops[0][short_name]","value":"123 Jericho Turnpike, Floral Park, NY 11001, USA","type":"text"},{"key":"stops[0][country]","value":"US","type":"text"},{"key":"stops[1][longitude]","value":"-73.64537630000001","type":"text"},{"key":"stops[1][latitude]","value":"40.78822","type":"text"},{"key":"stops[1][type]","value":"dropoff","type":"text"}]},"url":"{{host}}/job/validatezones"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"146"},{"key":"ETag","value":"W/\"92-4X/V8b9qYJZD/NScwRUB326M5yA\""},{"key":"Date","value":"Fri, 14 Jun 2019 20:04:44 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"message\": \"Invalid job. The first pickup location '123 West Ave, New York, NY 11001, USA' is in an area we do not service.\"\n    }\n}"}],"_postman_id":"901cb21c-fe1d-4f4b-a5f3-ec26bda48696"}],"id":"c7b7fab3-8c63-47b3-8ded-b2108f64a319","_postman_id":"c7b7fab3-8c63-47b3-8ded-b2108f64a319","description":""},{"name":"Estimates","item":[{"name":"Get cost estimate","id":"05f98806-e623-4ce7-b6f2-75750bcd0a1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"},{"key":"x-api-key","value":"{{api_key}}"}],"url":"{{host}}/job/costestimate?stops[0][latitude]=40.72822&stops[0][longitude]=-73.70667000000003&stops[0][type]=pickup&stops[1][latitude]=40.7382953&stops[1][longitude]=-73.64537630000001&stops[1][type]=dropoff&stops[2][latitude]=40.70770399999999&stops[2][longitude]=-73.70693299999999&stops[2][type]=dropoff&stops[3][latitude]=40.690812&stops[3][longitude]=-73.812737&stops[3][type]=dropoff&stops[4][latitude]=40.7295541&stops[4][longitude]=-73.6980212&stops[4][type]=dropoff&stops[5][latitude]=40.7138587&stops[5][longitude]=-73.95531369999999&stops[5][type]=dropoff&stops[6][latitude]=40.70249800000001&stops[6][longitude]=-73.673299&stops[6][type]=dropoff","description":"<p>Get a time and cost estimate for the specified routes. This method accepts an array of stops.</p>\n","urlObject":{"path":["job","costestimate"],"host":["{{host}}"],"query":[{"key":"stops[0][latitude]","value":"40.72822"},{"key":"stops[0][longitude]","value":"-73.70667000000003"},{"key":"stops[0][type]","value":"pickup"},{"key":"stops[1][latitude]","value":"40.7382953"},{"key":"stops[1][longitude]","value":"-73.64537630000001"},{"key":"stops[1][type]","value":"dropoff"},{"key":"stops[2][latitude]","value":"40.70770399999999"},{"key":"stops[2][longitude]","value":"-73.70693299999999"},{"key":"stops[2][type]","value":"dropoff"},{"key":"stops[3][latitude]","value":"40.690812"},{"key":"stops[3][longitude]","value":"-73.812737"},{"key":"stops[3][type]","value":"dropoff"},{"key":"stops[4][latitude]","value":"40.7295541"},{"key":"stops[4][longitude]","value":"-73.6980212"},{"key":"stops[4][type]","value":"dropoff"},{"key":"stops[5][latitude]","value":"40.7138587"},{"key":"stops[5][longitude]","value":"-73.95531369999999"},{"key":"stops[5][type]","value":"dropoff"},{"key":"stops[6][latitude]","value":"40.70249800000001"},{"key":"stops[6][longitude]","value":"-73.673299"},{"key":"stops[6][type]","value":"dropoff"}],"variable":[]}},"response":[{"id":"edfee7d0-7174-4ed1-b2bf-cd25143ff0fd","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"},{"key":"x-api-key","value":"{{api_key}}"}],"url":{"raw":"{{host}}/job/costestimate?stops[0][latitude]=40.72822&stops[0][longitude]=-73.70667000000003&stops[0][type]=pickup&stops[1][latitude]=40.7382953&stops[1][longitude]=-73.64537630000001&stops[1][type]=dropoff&stops[2][latitude]=40.70770399999999&stops[2][longitude]=-73.70693299999999&stops[2][type]=dropoff&stops[3][latitude]=40.690812&stops[3][longitude]=-73.812737&stops[3][type]=dropoff&stops[4][latitude]=40.7295541&stops[4][longitude]=-73.6980212&stops[4][type]=dropoff&stops[5][latitude]=40.7138587&stops[5][longitude]=-73.95531369999999&stops[5][type]=dropoff&stops[6][latitude]=40.70249800000001&stops[6][longitude]=-73.673299&stops[6][type]=dropoff","host":["{{host}}"],"path":["job","costestimate"],"query":[{"key":"stops[0][latitude]","value":"40.72822"},{"key":"stops[0][longitude]","value":"-73.70667000000003"},{"key":"stops[0][type]","value":"pickup"},{"key":"stops[1][latitude]","value":"40.7382953"},{"key":"stops[1][longitude]","value":"-73.64537630000001"},{"key":"stops[1][type]","value":"dropoff"},{"key":"stops[2][latitude]","value":"40.70770399999999"},{"key":"stops[2][longitude]","value":"-73.70693299999999"},{"key":"stops[2][type]","value":"dropoff"},{"key":"stops[3][latitude]","value":"40.690812"},{"key":"stops[3][longitude]","value":"-73.812737"},{"key":"stops[3][type]","value":"dropoff"},{"key":"stops[4][latitude]","value":"40.7295541"},{"key":"stops[4][longitude]","value":"-73.6980212"},{"key":"stops[4][type]","value":"dropoff"},{"key":"stops[5][latitude]","value":"40.7138587"},{"key":"stops[5][longitude]","value":"-73.95531369999999"},{"key":"stops[5][type]","value":"dropoff"},{"key":"stops[6][latitude]","value":"40.70249800000001"},{"key":"stops[6][longitude]","value":"-73.673299"},{"key":"stops[6][type]","value":"dropoff"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"13991"},{"key":"ETag","value":"W/\"36a7-N6yZi0lELnFvtrr9c14vyN1xkYU\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:30:47 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"estimates\": {\n            \"389\": {\n                \"type_id\": 389,\n                \"name\": \"Van\",\n                \"company_id\": 100,\n                \"icon\": \"minivan.png\",\n                \"attributes\": {\n                    \"capacity\": {\n                        \"value\": 7\n                    }\n                },\n                \"order\": 10,\n                \"estimated_price\": 0,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"time_estimate\": null\n            }\n        },\n        \"leg_estimates\": [\n            {\n                \"pricing_id\": 39,\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"name\": \"Test Company Default Rule\",\n                \"zone_id_1\": 70,\n                \"zone_id_2\": null,\n                \"priority\": 1,\n                \"base_price\": 0,\n                \"mile_rate\": 0,\n                \"minute_rate\": 0,\n                \"service_fee\": 0,\n                \"wait_rate\": 0,\n                \"stop_rate\": 0,\n                \"cancellation_fee\": 0,\n                \"minimum_price\": 0,\n                \"vehicle_modifiers\": null,\n                \"new_vehicle_modifiers\": null,\n                \"is_default\": 1,\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"surcharges\": null,\n                \"is_flat_rate\": false,\n                \"applied_option_surcharges\": [],\n                \"distance_meters\": 29985,\n                \"duration_seconds\": 2690,\n                \"wait_time_overage\": null,\n                \"amount_of_stops\": 1,\n                \"process_initial_price\": false,\n                \"estimated_price\": 0,\n                \"variable_price_estimate_low_buffer\": 0.1,\n                \"variable_price_estimate_high_buffer\": 0.1,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"per_job_surcharges\": {},\n                \"per_leg_surcharges\": {},\n                \"leg\": {\n                    \"distance\": {\n                        \"text\": \"18.6 mi\",\n                        \"value\": 29985\n                    },\n                    \"duration\": {\n                        \"text\": \"44 minutes\",\n                        \"value\": 2690\n                    },\n                    \"end_address\": \"\",\n                    \"end_location\": {\n                        \"lat\": 40.7027275,\n                        \"lng\": -73.6732897\n                    },\n                    \"start_address\": \"\",\n                    \"start_location\": {\n                        \"lat\": 40.7138836,\n                        \"lng\": -73.9550257\n                    },\n                    \"traffic_speed_entry\": [],\n                    \"via_waypoint\": [],\n                    \"start_stop\": {\n                        \"latitude\": \"40.7138587\",\n                        \"longitude\": \"-73.95531369999999\",\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"4\",\n                        \"routing_data\": {\n                            \"id\": \"4\",\n                            \"lat\": 40.7138587,\n                            \"lng\": -73.95531369999999,\n                            \"sequence\": 5,\n                            \"estimatedArrival\": \"2021-04-28T19:35:29Z\",\n                            \"estimatedDeparture\": \"2021-04-28T19:40:29Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\"\n                            ],\n                            \"fromWaypoint\": \"3\",\n                            \"toWaypoint\": \"4\",\n                            \"distance\": 26235,\n                            \"time\": 1788,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 6,\n                        \"distance_to_next_stop_meters\": 29985,\n                        \"duration_to_next_stop_seconds\": 2690,\n                        \"distance_from_previous_stop_meters\": 26235,\n                        \"duration_from_previous_stop_seconds\": 2088\n                    },\n                    \"end_stop\": {\n                        \"latitude\": \"40.70249800000001\",\n                        \"longitude\": \"-73.673299\",\n                        \"type\": \"dropoff\",\n                        \"routing_data\": {\n                            \"id\": \"destination\",\n                            \"lat\": 40.70249800000001,\n                            \"lng\": -73.673299,\n                            \"sequence\": 6,\n                            \"estimatedArrival\": \"2021-04-28T20:20:19Z\",\n                            \"estimatedDeparture\": null,\n                            \"fulfilledConstraints\": [\n                                \"st:300\"\n                            ],\n                            \"fromWaypoint\": \"4\",\n                            \"toWaypoint\": \"destination\",\n                            \"distance\": 29985,\n                            \"time\": 2390,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 7,\n                        \"distance_to_next_stop_meters\": 0,\n                        \"duration_to_next_stop_seconds\": 0,\n                        \"distance_from_previous_stop_meters\": 29985,\n                        \"duration_from_previous_stop_seconds\": 2690\n                    }\n                }\n            },\n            {\n                \"pricing_id\": 39,\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"name\": \"Test Company Default Rule\",\n                \"zone_id_1\": 70,\n                \"zone_id_2\": null,\n                \"priority\": 1,\n                \"base_price\": 0,\n                \"mile_rate\": 0,\n                \"minute_rate\": 0,\n                \"service_fee\": 0,\n                \"wait_rate\": 0,\n                \"stop_rate\": 0,\n                \"cancellation_fee\": 0,\n                \"minimum_price\": 0,\n                \"vehicle_modifiers\": null,\n                \"new_vehicle_modifiers\": null,\n                \"is_default\": 1,\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"surcharges\": null,\n                \"is_flat_rate\": false,\n                \"applied_option_surcharges\": [],\n                \"distance_meters\": 14681,\n                \"duration_seconds\": 1517,\n                \"wait_time_overage\": null,\n                \"amount_of_stops\": 1,\n                \"process_initial_price\": false,\n                \"estimated_price\": 0,\n                \"variable_price_estimate_low_buffer\": 0.1,\n                \"variable_price_estimate_high_buffer\": 0.1,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"per_job_surcharges\": {},\n                \"per_leg_surcharges\": {},\n                \"leg\": {\n                    \"distance\": {\n                        \"text\": \"9.1 mi\",\n                        \"value\": 14681\n                    },\n                    \"duration\": {\n                        \"text\": \"25 minutes\",\n                        \"value\": 1517\n                    },\n                    \"end_address\": \"\",\n                    \"end_location\": {\n                        \"lat\": 40.6908964,\n                        \"lng\": -73.8124762\n                    },\n                    \"start_address\": \"\",\n                    \"start_location\": {\n                        \"lat\": 40.7076529,\n                        \"lng\": -73.7067725\n                    },\n                    \"traffic_speed_entry\": [],\n                    \"via_waypoint\": [],\n                    \"start_stop\": {\n                        \"latitude\": \"40.70770399999999\",\n                        \"longitude\": \"-73.70693299999999\",\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"1\",\n                        \"routing_data\": {\n                            \"id\": \"1\",\n                            \"lat\": 40.70770399999999,\n                            \"lng\": -73.70693299999999,\n                            \"sequence\": 2,\n                            \"estimatedArrival\": \"2021-04-28T18:10:01Z\",\n                            \"estimatedDeparture\": \"2021-04-28T18:15:01Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\",\n                                \"before:destination2\"\n                            ],\n                            \"fromWaypoint\": \"0\",\n                            \"toWaypoint\": \"1\",\n                            \"distance\": 8254,\n                            \"time\": 1160,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 3,\n                        \"distance_to_next_stop_meters\": 14681,\n                        \"duration_to_next_stop_seconds\": 1517,\n                        \"distance_from_previous_stop_meters\": 9715,\n                        \"duration_from_previous_stop_seconds\": 1498\n                    },\n                    \"end_stop\": {\n                        \"latitude\": \"40.690812\",\n                        \"longitude\": \"-73.812737\",\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"2\",\n                        \"routing_data\": {\n                            \"id\": \"2\",\n                            \"lat\": 40.690812,\n                            \"lng\": -73.812737,\n                            \"sequence\": 3,\n                            \"estimatedArrival\": \"2021-04-28T18:34:58Z\",\n                            \"estimatedDeparture\": \"2021-04-28T18:39:58Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\",\n                                \"before:destination3\"\n                            ],\n                            \"fromWaypoint\": \"1\",\n                            \"toWaypoint\": \"2\",\n                            \"distance\": 16045,\n                            \"time\": 1197,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 4,\n                        \"distance_to_next_stop_meters\": 18284,\n                        \"duration_to_next_stop_seconds\": 1535,\n                        \"distance_from_previous_stop_meters\": 14681,\n                        \"duration_from_previous_stop_seconds\": 1517\n                    }\n                }\n            },\n            {\n                \"pricing_id\": 39,\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"name\": \"Test Company Default Rule\",\n                \"zone_id_1\": 70,\n                \"zone_id_2\": null,\n                \"priority\": 1,\n                \"base_price\": 0,\n                \"mile_rate\": 0,\n                \"minute_rate\": 0,\n                \"service_fee\": 0,\n                \"wait_rate\": 0,\n                \"stop_rate\": 0,\n                \"cancellation_fee\": 0,\n                \"minimum_price\": 0,\n                \"vehicle_modifiers\": null,\n                \"new_vehicle_modifiers\": null,\n                \"is_default\": 1,\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"surcharges\": null,\n                \"is_flat_rate\": false,\n                \"applied_option_surcharges\": [],\n                \"distance_meters\": 6365,\n                \"duration_seconds\": 1196,\n                \"wait_time_overage\": null,\n                \"amount_of_stops\": 0,\n                \"process_initial_price\": true,\n                \"estimated_price\": 0,\n                \"variable_price_estimate_low_buffer\": 0.1,\n                \"variable_price_estimate_high_buffer\": 0.1,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"per_job_surcharges\": {},\n                \"per_leg_surcharges\": {},\n                \"leg\": {\n                    \"distance\": {\n                        \"text\": \"4.0 mi\",\n                        \"value\": 6365\n                    },\n                    \"duration\": {\n                        \"text\": \"19 minutes\",\n                        \"value\": 1196\n                    },\n                    \"end_address\": \"\",\n                    \"end_location\": {\n                        \"lat\": 40.7382088,\n                        \"lng\": -73.6457936\n                    },\n                    \"start_address\": \"\",\n                    \"start_location\": {\n                        \"lat\": 40.7281793,\n                        \"lng\": -73.7068358\n                    },\n                    \"traffic_speed_entry\": [],\n                    \"via_waypoint\": [],\n                    \"start_stop\": {\n                        \"latitude\": \"40.72822\",\n                        \"longitude\": \"-73.70667000000003\",\n                        \"type\": \"pickup\",\n                        \"order\": 1,\n                        \"distance_to_next_stop_meters\": 6365,\n                        \"duration_to_next_stop_seconds\": 1196,\n                        \"distance_from_previous_stop_meters\": 0,\n                        \"duration_from_previous_stop_seconds\": 0\n                    },\n                    \"end_stop\": {\n                        \"latitude\": \"40.7382953\",\n                        \"longitude\": \"-73.64537630000001\",\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"0\",\n                        \"routing_data\": {\n                            \"id\": \"0\",\n                            \"lat\": 40.7382953,\n                            \"lng\": -73.64537630000001,\n                            \"sequence\": 1,\n                            \"estimatedArrival\": \"2021-04-28T17:45:41Z\",\n                            \"estimatedDeparture\": \"2021-04-28T17:50:41Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\",\n                                \"before:destination1\"\n                            ],\n                            \"fromWaypoint\": \"origin\",\n                            \"toWaypoint\": \"0\",\n                            \"distance\": 6365,\n                            \"time\": 896,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 2,\n                        \"distance_from_previous_stop_meters\": 6365,\n                        \"duration_from_previous_stop_seconds\": 1196,\n                        \"distance_to_next_stop_meters\": 9715,\n                        \"duration_to_next_stop_seconds\": 1498\n                    }\n                }\n            },\n            {\n                \"pricing_id\": 39,\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"name\": \"Test Company Default Rule\",\n                \"zone_id_1\": 70,\n                \"zone_id_2\": null,\n                \"priority\": 1,\n                \"base_price\": 0,\n                \"mile_rate\": 0,\n                \"minute_rate\": 0,\n                \"service_fee\": 0,\n                \"wait_rate\": 0,\n                \"stop_rate\": 0,\n                \"cancellation_fee\": 0,\n                \"minimum_price\": 0,\n                \"vehicle_modifiers\": null,\n                \"new_vehicle_modifiers\": null,\n                \"is_default\": 1,\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"surcharges\": null,\n                \"is_flat_rate\": false,\n                \"applied_option_surcharges\": [],\n                \"distance_meters\": 18284,\n                \"duration_seconds\": 1535,\n                \"wait_time_overage\": null,\n                \"amount_of_stops\": 1,\n                \"process_initial_price\": false,\n                \"estimated_price\": 0,\n                \"variable_price_estimate_low_buffer\": 0.1,\n                \"variable_price_estimate_high_buffer\": 0.1,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"per_job_surcharges\": {},\n                \"per_leg_surcharges\": {},\n                \"leg\": {\n                    \"distance\": {\n                        \"text\": \"11.4 mi\",\n                        \"value\": 18284\n                    },\n                    \"duration\": {\n                        \"text\": \"25 minutes\",\n                        \"value\": 1535\n                    },\n                    \"end_address\": \"\",\n                    \"end_location\": {\n                        \"lat\": 40.7298345,\n                        \"lng\": -73.6981167\n                    },\n                    \"start_address\": \"\",\n                    \"start_location\": {\n                        \"lat\": 40.6908964,\n                        \"lng\": -73.8124762\n                    },\n                    \"traffic_speed_entry\": [],\n                    \"via_waypoint\": [],\n                    \"start_stop\": {\n                        \"latitude\": \"40.690812\",\n                        \"longitude\": \"-73.812737\",\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"2\",\n                        \"routing_data\": {\n                            \"id\": \"2\",\n                            \"lat\": 40.690812,\n                            \"lng\": -73.812737,\n                            \"sequence\": 3,\n                            \"estimatedArrival\": \"2021-04-28T18:34:58Z\",\n                            \"estimatedDeparture\": \"2021-04-28T18:39:58Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\",\n                                \"before:destination3\"\n                            ],\n                            \"fromWaypoint\": \"1\",\n                            \"toWaypoint\": \"2\",\n                            \"distance\": 16045,\n                            \"time\": 1197,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 4,\n                        \"distance_to_next_stop_meters\": 18284,\n                        \"duration_to_next_stop_seconds\": 1535,\n                        \"distance_from_previous_stop_meters\": 14681,\n                        \"duration_from_previous_stop_seconds\": 1517\n                    },\n                    \"end_stop\": {\n                        \"latitude\": \"40.7295541\",\n                        \"longitude\": \"-73.6980212\",\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"3\",\n                        \"routing_data\": {\n                            \"id\": \"3\",\n                            \"lat\": 40.7295541,\n                            \"lng\": -73.6980212,\n                            \"sequence\": 4,\n                            \"estimatedArrival\": \"2021-04-28T19:00:41Z\",\n                            \"estimatedDeparture\": \"2021-04-28T19:05:41Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\",\n                                \"before:destination4\"\n                            ],\n                            \"fromWaypoint\": \"2\",\n                            \"toWaypoint\": \"3\",\n                            \"distance\": 18393,\n                            \"time\": 1243,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 5,\n                        \"distance_to_next_stop_meters\": 26235,\n                        \"duration_to_next_stop_seconds\": 2088,\n                        \"distance_from_previous_stop_meters\": 18284,\n                        \"duration_from_previous_stop_seconds\": 1535\n                    }\n                }\n            },\n            {\n                \"pricing_id\": 39,\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"name\": \"Test Company Default Rule\",\n                \"zone_id_1\": 70,\n                \"zone_id_2\": null,\n                \"priority\": 1,\n                \"base_price\": 0,\n                \"mile_rate\": 0,\n                \"minute_rate\": 0,\n                \"service_fee\": 0,\n                \"wait_rate\": 0,\n                \"stop_rate\": 0,\n                \"cancellation_fee\": 0,\n                \"minimum_price\": 0,\n                \"vehicle_modifiers\": null,\n                \"new_vehicle_modifiers\": null,\n                \"is_default\": 1,\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"surcharges\": null,\n                \"is_flat_rate\": false,\n                \"applied_option_surcharges\": [],\n                \"distance_meters\": 26235,\n                \"duration_seconds\": 2088,\n                \"wait_time_overage\": null,\n                \"amount_of_stops\": 1,\n                \"process_initial_price\": false,\n                \"estimated_price\": 0,\n                \"variable_price_estimate_low_buffer\": 0.1,\n                \"variable_price_estimate_high_buffer\": 0.1,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"per_job_surcharges\": {},\n                \"per_leg_surcharges\": {},\n                \"leg\": {\n                    \"distance\": {\n                        \"text\": \"16.3 mi\",\n                        \"value\": 26235\n                    },\n                    \"duration\": {\n                        \"text\": \"34 minutes\",\n                        \"value\": 2088\n                    },\n                    \"end_address\": \"\",\n                    \"end_location\": {\n                        \"lat\": 40.7138836,\n                        \"lng\": -73.9550257\n                    },\n                    \"start_address\": \"\",\n                    \"start_location\": {\n                        \"lat\": 40.7298345,\n                        \"lng\": -73.6981167\n                    },\n                    \"traffic_speed_entry\": [],\n                    \"via_waypoint\": [],\n                    \"start_stop\": {\n                        \"latitude\": \"40.7295541\",\n                        \"longitude\": \"-73.6980212\",\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"3\",\n                        \"routing_data\": {\n                            \"id\": \"3\",\n                            \"lat\": 40.7295541,\n                            \"lng\": -73.6980212,\n                            \"sequence\": 4,\n                            \"estimatedArrival\": \"2021-04-28T19:00:41Z\",\n                            \"estimatedDeparture\": \"2021-04-28T19:05:41Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\",\n                                \"before:destination4\"\n                            ],\n                            \"fromWaypoint\": \"2\",\n                            \"toWaypoint\": \"3\",\n                            \"distance\": 18393,\n                            \"time\": 1243,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 5,\n                        \"distance_to_next_stop_meters\": 26235,\n                        \"duration_to_next_stop_seconds\": 2088,\n                        \"distance_from_previous_stop_meters\": 18284,\n                        \"duration_from_previous_stop_seconds\": 1535\n                    },\n                    \"end_stop\": {\n                        \"latitude\": \"40.7138587\",\n                        \"longitude\": \"-73.95531369999999\",\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"4\",\n                        \"routing_data\": {\n                            \"id\": \"4\",\n                            \"lat\": 40.7138587,\n                            \"lng\": -73.95531369999999,\n                            \"sequence\": 5,\n                            \"estimatedArrival\": \"2021-04-28T19:35:29Z\",\n                            \"estimatedDeparture\": \"2021-04-28T19:40:29Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\"\n                            ],\n                            \"fromWaypoint\": \"3\",\n                            \"toWaypoint\": \"4\",\n                            \"distance\": 26235,\n                            \"time\": 1788,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 6,\n                        \"distance_to_next_stop_meters\": 29985,\n                        \"duration_to_next_stop_seconds\": 2690,\n                        \"distance_from_previous_stop_meters\": 26235,\n                        \"duration_from_previous_stop_seconds\": 2088\n                    }\n                }\n            },\n            {\n                \"pricing_id\": 39,\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"name\": \"Test Company Default Rule\",\n                \"zone_id_1\": 70,\n                \"zone_id_2\": null,\n                \"priority\": 1,\n                \"base_price\": 0,\n                \"mile_rate\": 0,\n                \"minute_rate\": 0,\n                \"service_fee\": 0,\n                \"wait_rate\": 0,\n                \"stop_rate\": 0,\n                \"cancellation_fee\": 0,\n                \"minimum_price\": 0,\n                \"vehicle_modifiers\": null,\n                \"new_vehicle_modifiers\": null,\n                \"is_default\": 1,\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"surcharges\": null,\n                \"is_flat_rate\": false,\n                \"applied_option_surcharges\": [],\n                \"distance_meters\": 9715,\n                \"duration_seconds\": 1498,\n                \"wait_time_overage\": null,\n                \"amount_of_stops\": 1,\n                \"process_initial_price\": false,\n                \"estimated_price\": 0,\n                \"variable_price_estimate_low_buffer\": 0.1,\n                \"variable_price_estimate_high_buffer\": 0.1,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"per_job_surcharges\": {},\n                \"per_leg_surcharges\": {},\n                \"leg\": {\n                    \"distance\": {\n                        \"text\": \"6.0 mi\",\n                        \"value\": 9715\n                    },\n                    \"duration\": {\n                        \"text\": \"24 minutes\",\n                        \"value\": 1498\n                    },\n                    \"end_address\": \"\",\n                    \"end_location\": {\n                        \"lat\": 40.7076529,\n                        \"lng\": -73.7067725\n                    },\n                    \"start_address\": \"\",\n                    \"start_location\": {\n                        \"lat\": 40.7382088,\n                        \"lng\": -73.6457936\n                    },\n                    \"traffic_speed_entry\": [],\n                    \"via_waypoint\": [],\n                    \"start_stop\": {\n                        \"latitude\": \"40.7382953\",\n                        \"longitude\": \"-73.64537630000001\",\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"0\",\n                        \"routing_data\": {\n                            \"id\": \"0\",\n                            \"lat\": 40.7382953,\n                            \"lng\": -73.64537630000001,\n                            \"sequence\": 1,\n                            \"estimatedArrival\": \"2021-04-28T17:45:41Z\",\n                            \"estimatedDeparture\": \"2021-04-28T17:50:41Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\",\n                                \"before:destination1\"\n                            ],\n                            \"fromWaypoint\": \"origin\",\n                            \"toWaypoint\": \"0\",\n                            \"distance\": 6365,\n                            \"time\": 896,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 2,\n                        \"distance_from_previous_stop_meters\": 6365,\n                        \"duration_from_previous_stop_seconds\": 1196,\n                        \"distance_to_next_stop_meters\": 9715,\n                        \"duration_to_next_stop_seconds\": 1498\n                    },\n                    \"end_stop\": {\n                        \"latitude\": \"40.70770399999999\",\n                        \"longitude\": \"-73.70693299999999\",\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"1\",\n                        \"routing_data\": {\n                            \"id\": \"1\",\n                            \"lat\": 40.70770399999999,\n                            \"lng\": -73.70693299999999,\n                            \"sequence\": 2,\n                            \"estimatedArrival\": \"2021-04-28T18:10:01Z\",\n                            \"estimatedDeparture\": \"2021-04-28T18:15:01Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\",\n                                \"before:destination2\"\n                            ],\n                            \"fromWaypoint\": \"0\",\n                            \"toWaypoint\": \"1\",\n                            \"distance\": 8254,\n                            \"time\": 1160,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 3,\n                        \"distance_to_next_stop_meters\": 14681,\n                        \"duration_to_next_stop_seconds\": 1517,\n                        \"distance_from_previous_stop_meters\": 9715,\n                        \"duration_from_previous_stop_seconds\": 1498\n                    }\n                }\n            }\n        ],\n        \"fare_estimates\": [\n            {\n                \"estimated_price\": 0,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"order\": 10,\n                \"car_type\": {\n                    \"type_id\": 389,\n                    \"old_type_id\": null,\n                    \"company_id\": 100,\n                    \"name\": \"Van\",\n                    \"order\": 10,\n                    \"icon\": \"minivan.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 7\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27 17:53:50\",\n                    \"date_updated\": \"2021-04-27 17:53:50\",\n                    \"date_deleted\": null\n                }\n            }\n        ]\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"05f98806-e623-4ce7-b6f2-75750bcd0a1b"},{"name":"Get cost estimate - JSON payload","id":"52cf54ac-6c48-4429-ae14-fe0ed66921fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"},{"key":"x-api-key","value":"{{api_key}}"}],"url":"{{host}}/job/costestimate?stops=[{\"latitude\":40.72822,\"longitude\":-73.70667000000003,\"type\":\"pickup\"},{\"latitude\":40.7382953,\"longitude\":-73.64537630000001,\"type\":\"dropoff\"},{\"latitude\":40.70770399999999,\"longitude\":-73.70693299999999,\"type\":\"dropoff\"}]","description":"<p>Get a time and cost estimate for the specified routes. This method accepts an array of stops.</p>\n","urlObject":{"path":["job","costestimate"],"host":["{{host}}"],"query":[{"key":"stops","value":"[{\"latitude\":40.72822,\"longitude\":-73.70667000000003,\"type\":\"pickup\"},{\"latitude\":40.7382953,\"longitude\":-73.64537630000001,\"type\":\"dropoff\"},{\"latitude\":40.70770399999999,\"longitude\":-73.70693299999999,\"type\":\"dropoff\"}]"}],"variable":[]}},"response":[{"id":"aae1527b-4d2b-4d57-8afb-e4eef5c7e438","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"},{"key":"x-api-key","value":"{{api_key}}"}],"url":{"raw":"{{host}}/job/costestimate?stops=[{\"latitude\":40.72822,\"longitude\":-73.70667000000003,\"type\":\"pickup\"},{\"latitude\":40.7382953,\"longitude\":-73.64537630000001,\"type\":\"dropoff\"},{\"latitude\":40.70770399999999,\"longitude\":-73.70693299999999,\"type\":\"dropoff\"}]","host":["{{host}}"],"path":["job","costestimate"],"query":[{"key":"stops","value":"[{\"latitude\":40.72822,\"longitude\":-73.70667000000003,\"type\":\"pickup\"},{\"latitude\":40.7382953,\"longitude\":-73.64537630000001,\"type\":\"dropoff\"},{\"latitude\":40.70770399999999,\"longitude\":-73.70693299999999,\"type\":\"dropoff\"}]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4834"},{"key":"ETag","value":"W/\"12e2-JWsoBkgpFdUbibx+shg3wzFIxHs\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:31:13 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"estimates\": {\n            \"389\": {\n                \"type_id\": 389,\n                \"name\": \"Van\",\n                \"company_id\": 100,\n                \"icon\": \"minivan.png\",\n                \"attributes\": {\n                    \"capacity\": {\n                        \"value\": 7\n                    }\n                },\n                \"order\": 10,\n                \"estimated_price\": 0,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"time_estimate\": null\n            }\n        },\n        \"leg_estimates\": [\n            {\n                \"pricing_id\": 39,\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"name\": \"Test Company Default Rule\",\n                \"zone_id_1\": 70,\n                \"zone_id_2\": null,\n                \"priority\": 1,\n                \"base_price\": 0,\n                \"mile_rate\": 0,\n                \"minute_rate\": 0,\n                \"service_fee\": 0,\n                \"wait_rate\": 0,\n                \"stop_rate\": 0,\n                \"cancellation_fee\": 0,\n                \"minimum_price\": 0,\n                \"vehicle_modifiers\": null,\n                \"new_vehicle_modifiers\": null,\n                \"is_default\": 1,\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"surcharges\": null,\n                \"is_flat_rate\": false,\n                \"applied_option_surcharges\": [],\n                \"distance_meters\": 9715,\n                \"duration_seconds\": 1498,\n                \"wait_time_overage\": null,\n                \"amount_of_stops\": 1,\n                \"process_initial_price\": false,\n                \"estimated_price\": 0,\n                \"variable_price_estimate_low_buffer\": 0.1,\n                \"variable_price_estimate_high_buffer\": 0.1,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"per_job_surcharges\": {},\n                \"per_leg_surcharges\": {},\n                \"leg\": {\n                    \"distance\": {\n                        \"text\": \"6.0 mi\",\n                        \"value\": 9715\n                    },\n                    \"duration\": {\n                        \"text\": \"24 minutes\",\n                        \"value\": 1498\n                    },\n                    \"end_address\": \"\",\n                    \"end_location\": {\n                        \"lat\": 40.7076529,\n                        \"lng\": -73.7067725\n                    },\n                    \"start_address\": \"\",\n                    \"start_location\": {\n                        \"lat\": 40.7382088,\n                        \"lng\": -73.6457936\n                    },\n                    \"traffic_speed_entry\": [],\n                    \"via_waypoint\": [],\n                    \"start_stop\": {\n                        \"latitude\": 40.7382953,\n                        \"longitude\": -73.64537630000001,\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"0\",\n                        \"routing_data\": {\n                            \"id\": \"0\",\n                            \"lat\": 40.7382953,\n                            \"lng\": -73.64537630000001,\n                            \"sequence\": 1,\n                            \"estimatedArrival\": \"2021-04-28T17:46:07Z\",\n                            \"estimatedDeparture\": \"2021-04-28T17:51:07Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\"\n                            ],\n                            \"fromWaypoint\": \"origin\",\n                            \"toWaypoint\": \"0\",\n                            \"distance\": 6365,\n                            \"time\": 896,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 2,\n                        \"distance_from_previous_stop_meters\": 6365,\n                        \"duration_from_previous_stop_seconds\": 1196,\n                        \"distance_to_next_stop_meters\": 9715,\n                        \"duration_to_next_stop_seconds\": 1498\n                    },\n                    \"end_stop\": {\n                        \"latitude\": 40.70770399999999,\n                        \"longitude\": -73.70693299999999,\n                        \"type\": \"dropoff\",\n                        \"routing_data\": {\n                            \"id\": \"destination\",\n                            \"lat\": 40.70770399999999,\n                            \"lng\": -73.70693299999999,\n                            \"sequence\": 2,\n                            \"estimatedArrival\": \"2021-04-28T18:10:27Z\",\n                            \"estimatedDeparture\": null,\n                            \"fulfilledConstraints\": [\n                                \"st:300\"\n                            ],\n                            \"fromWaypoint\": \"0\",\n                            \"toWaypoint\": \"destination\",\n                            \"distance\": 8254,\n                            \"time\": 1160,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 3,\n                        \"distance_to_next_stop_meters\": 0,\n                        \"duration_to_next_stop_seconds\": 0,\n                        \"distance_from_previous_stop_meters\": 9715,\n                        \"duration_from_previous_stop_seconds\": 1498\n                    }\n                }\n            },\n            {\n                \"pricing_id\": 39,\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"name\": \"Test Company Default Rule\",\n                \"zone_id_1\": 70,\n                \"zone_id_2\": null,\n                \"priority\": 1,\n                \"base_price\": 0,\n                \"mile_rate\": 0,\n                \"minute_rate\": 0,\n                \"service_fee\": 0,\n                \"wait_rate\": 0,\n                \"stop_rate\": 0,\n                \"cancellation_fee\": 0,\n                \"minimum_price\": 0,\n                \"vehicle_modifiers\": null,\n                \"new_vehicle_modifiers\": null,\n                \"is_default\": 1,\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-27 17:53:51\",\n                \"surcharges\": null,\n                \"is_flat_rate\": false,\n                \"applied_option_surcharges\": [],\n                \"distance_meters\": 6365,\n                \"duration_seconds\": 1196,\n                \"wait_time_overage\": null,\n                \"amount_of_stops\": 0,\n                \"process_initial_price\": true,\n                \"estimated_price\": 0,\n                \"variable_price_estimate_low_buffer\": 0.1,\n                \"variable_price_estimate_high_buffer\": 0.1,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"per_job_surcharges\": {},\n                \"per_leg_surcharges\": {},\n                \"leg\": {\n                    \"distance\": {\n                        \"text\": \"4.0 mi\",\n                        \"value\": 6365\n                    },\n                    \"duration\": {\n                        \"text\": \"19 minutes\",\n                        \"value\": 1196\n                    },\n                    \"end_address\": \"\",\n                    \"end_location\": {\n                        \"lat\": 40.7382088,\n                        \"lng\": -73.6457936\n                    },\n                    \"start_address\": \"\",\n                    \"start_location\": {\n                        \"lat\": 40.7281793,\n                        \"lng\": -73.7068358\n                    },\n                    \"traffic_speed_entry\": [],\n                    \"via_waypoint\": [],\n                    \"start_stop\": {\n                        \"latitude\": 40.72822,\n                        \"longitude\": -73.70667000000003,\n                        \"type\": \"pickup\",\n                        \"order\": 1,\n                        \"distance_to_next_stop_meters\": 6365,\n                        \"duration_to_next_stop_seconds\": 1196,\n                        \"distance_from_previous_stop_meters\": 0,\n                        \"duration_from_previous_stop_seconds\": 0\n                    },\n                    \"end_stop\": {\n                        \"latitude\": 40.7382953,\n                        \"longitude\": -73.64537630000001,\n                        \"type\": \"dropoff\",\n                        \"original_index\": \"0\",\n                        \"routing_data\": {\n                            \"id\": \"0\",\n                            \"lat\": 40.7382953,\n                            \"lng\": -73.64537630000001,\n                            \"sequence\": 1,\n                            \"estimatedArrival\": \"2021-04-28T17:46:07Z\",\n                            \"estimatedDeparture\": \"2021-04-28T17:51:07Z\",\n                            \"fulfilledConstraints\": [\n                                \"st:300\"\n                            ],\n                            \"fromWaypoint\": \"origin\",\n                            \"toWaypoint\": \"0\",\n                            \"distance\": 6365,\n                            \"time\": 896,\n                            \"rest\": 0,\n                            \"waiting\": 0\n                        },\n                        \"order\": 2,\n                        \"distance_from_previous_stop_meters\": 6365,\n                        \"duration_from_previous_stop_seconds\": 1196,\n                        \"distance_to_next_stop_meters\": 9715,\n                        \"duration_to_next_stop_seconds\": 1498\n                    }\n                }\n            }\n        ],\n        \"fare_estimates\": [\n            {\n                \"estimated_price\": 0,\n                \"estimated_price_low\": 0,\n                \"estimated_price_high\": 0,\n                \"order\": 10,\n                \"car_type\": {\n                    \"type_id\": 389,\n                    \"old_type_id\": null,\n                    \"company_id\": 100,\n                    \"name\": \"Van\",\n                    \"order\": 10,\n                    \"icon\": \"minivan.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 7\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27 17:53:50\",\n                    \"date_updated\": \"2021-04-27 17:53:50\",\n                    \"date_deleted\": null\n                }\n            }\n        ]\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"52cf54ac-6c48-4429-ae14-fe0ed66921fd"},{"name":"Get time estimate","id":"4abbce83-15fd-450f-b8d5-754ec9c2b704","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/timeestimate?latitude=40.7031509&longitude=-73.6695534&car_type_ids=100","description":"<p>Get the ETA of a driver to specified latitude and longitude. Optionaly accepts <code>car_type_ids</code> to find the ETA for a specific vehicle type to specificed lat/lng.</p>\n","urlObject":{"path":["job","timeestimate"],"host":["{{host}}"],"query":[{"key":"latitude","value":"40.7031509"},{"key":"longitude","value":"-73.6695534"},{"key":"car_type_ids","value":"100"},{"disabled":true,"key":"car_type_ids","value":"3"}],"variable":[]}},"response":[{"id":"7fa3579c-1ef1-41c2-9432-2a859dbbbc75","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/job/timeestimate?latitude=40.7031509&longitude=-73.6695534&car_type_ids=100","host":["{{host}}"],"path":["job","timeestimate"],"query":[{"key":"latitude","value":"40.7031509"},{"key":"longitude","value":"-73.6695534"},{"key":"car_type_ids","value":"100"},{"key":"car_type_ids","value":"3","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"140"},{"key":"ETag","value":"W/\"8c-wRloPLXctIe26GayfvbxqWj8qg0\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:32:01 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"estimated_time\": 53.52,\n        \"buffer\": 0.35,\n        \"measurement\": \"minutes\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"4abbce83-15fd-450f-b8d5-754ec9c2b704"},{"name":"Get arrival estimates","id":"574896dd-3bca-4c6b-b69e-bde62751fdf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}"}],"url":"{{host}}/job/:job_id/arrival-estimates?car_type_ids=100","urlObject":{"path":["job",":job_id","arrival-estimates"],"host":["{{host}}"],"query":[{"key":"car_type_ids","value":"100"}],"variable":[{"type":"any","value":"562584","key":"job_id"}]}},"response":[{"id":"893f310e-e573-4a59-a13a-a54d847af4df","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}","disabled":true},{"key":"x-api-key","value":"{{api_key}}"}],"url":{"raw":"{{host}}/job/:job_id/arrival-estimates?car_type_ids=100","host":["{{host}}"],"path":["job",":job_id","arrival-estimates"],"query":[{"key":"car_type_ids","value":"100"}],"variable":[{"key":"job_id","value":"562584"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"6110"},{"key":"ETag","value":"W/\"17de-aXfPt9jFyacrc9aTnApj5HNNP5o\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:32:21 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"job_stop_id\": 1179888,\n            \"company_id\": 1,\n            \"job_id\": 562584,\n            \"location_id\": 386405,\n            \"actual_location_id\": 386460,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": null,\n            \"status_id\": 7,\n            \"arrival_date\": \"2017-07-28 15:50:00\",\n            \"actual_arrival_date\": \"2017-07-28 21:29:22\",\n            \"in_progress_date\": \"2017-07-28 19:52:04\",\n            \"completed_date\": \"2017-07-28 21:29:41\",\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 0,\n            \"attachments\": [\n                {\n                    \"stored_name\": \"bWmt1D-fQ.jpg\",\n                    \"type\": \"image/jpeg\",\n                    \"original_filename\": \"JPEG_20170728_172926_973850833.jpg\",\n                    \"remote_path\": \"liverydesk-public/job/attachment\",\n                    \"url\": \"https://s3.amazonaws.com/liverydesk-public/job/attachment/bWmt1D-fQ.jpg\"\n                }\n            ],\n            \"date_created\": \"2017-07-28 20:57:20\",\n            \"date_updated\": \"2017-07-28 21:29:41\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": null,\n            \"duration_to_next_stop_seconds\": null,\n            \"distance_from_previous_stop_meters\": null,\n            \"duration_from_previous_stop_seconds\": null,\n            \"wait_time_seconds\": 19,\n            \"total_duration_seconds\": 5857,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": null,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 386405,\n                \"address\": \"169 Grange Street\",\n                \"address_two\": null,\n                \"city\": \"Franklin Square\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11010\",\n                \"country\": \"US\",\n                \"long_name\": \"169 Grange St, Franklin Square, NY 11010, USA\",\n                \"short_name\": \"169 Grange St, Franklin Square, NY 11010, USA\",\n                \"latitude\": 40.70327,\n                \"longitude\": -73.66735,\n                \"date_created\": \"2017-03-08 23:28:42\",\n                \"date_updated\": \"2020-02-05 17:06:26\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": null,\n                \"hash\": \"0b9239aac30bca30b5594ed31fc65b2e\",\n                \"company_id\": null\n            },\n            \"actual_location\": {\n                \"location_id\": 386460,\n                \"address\": null,\n                \"address_two\": null,\n                \"city\": null,\n                \"state\": null,\n                \"postal_code\": null,\n                \"country\": null,\n                \"long_name\": null,\n                \"short_name\": null,\n                \"latitude\": 40.70324,\n                \"longitude\": -73.66766,\n                \"date_created\": \"2017-07-28 21:29:41\",\n                \"date_updated\": \"2020-02-05 17:06:26\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": null,\n                \"hash\": \"689b6471096da6dbb2e520457209647b\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 7,\n                \"name\": \"Completed\",\n                \"slug\": \"completed\",\n                \"order\": 70\n            }\n        },\n        {\n            \"job_stop_id\": 1179887,\n            \"company_id\": 1,\n            \"job_id\": 562584,\n            \"location_id\": 386422,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": {\n                \"cancellation_reason\": \"Item too big/fragile\"\n            },\n            \"status_id\": 8,\n            \"arrival_date\": \"2017-07-28 15:50:00\",\n            \"actual_arrival_date\": \"2017-07-31 23:14:24\",\n            \"in_progress_date\": \"2017-07-28 21:29:41\",\n            \"completed_date\": null,\n            \"cancelled_date\": \"2017-08-01 01:55:25\",\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2017-07-28 20:57:20\",\n            \"date_updated\": \"2017-08-01 01:55:25\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": null,\n            \"duration_to_next_stop_seconds\": null,\n            \"distance_from_previous_stop_meters\": null,\n            \"duration_from_previous_stop_seconds\": null,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": null,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 386422,\n                \"address\": \"449 Jericho Turnpike\",\n                \"address_two\": null,\n                \"city\": \"Mineola\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11501\",\n                \"country\": \"US\",\n                \"long_name\": \"449 Jericho Turnpike, Mineola, NY 11501, USA\",\n                \"short_name\": \"449 Jericho Turnpike, Mineola, NY 11501, USA\",\n                \"latitude\": 40.74485,\n                \"longitude\": -73.65318,\n                \"date_created\": \"2017-03-29 23:34:19\",\n                \"date_updated\": \"2020-02-05 17:06:26\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": null,\n                \"hash\": \"e40de17b58c743febbda2414a3240484\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 8,\n                \"name\": \"Cancelled\",\n                \"slug\": \"cancelled\",\n                \"order\": 80\n            }\n        },\n        {\n            \"job_stop_id\": 1179889,\n            \"company_id\": 1,\n            \"job_id\": 562584,\n            \"location_id\": 386386,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2017-07-28 15:50:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2017-07-28 20:57:20\",\n            \"date_updated\": \"2017-07-28 20:57:20\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": null,\n            \"duration_to_next_stop_seconds\": null,\n            \"distance_from_previous_stop_meters\": null,\n            \"duration_from_previous_stop_seconds\": null,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": null,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 386386,\n                \"address\": \"1238 Hempstead Turnpike\",\n                \"address_two\": null,\n                \"city\": \"Franklin Square\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11010\",\n                \"country\": \"US\",\n                \"long_name\": \"1238 Hempstead Turnpike, Franklin Square, NY 11010, USA\",\n                \"short_name\": \"1238 Hempstead Turnpike, Franklin Square, NY 11010\",\n                \"latitude\": 40.70871,\n                \"longitude\": -73.68561,\n                \"date_created\": \"2017-01-10 21:58:09\",\n                \"date_updated\": \"2020-02-05 17:06:26\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": null,\n                \"hash\": \"ba5a5c47e34365d396f3e2aaed14bb7f\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            }\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 3\n    }\n}"}],"_postman_id":"574896dd-3bca-4c6b-b69e-bde62751fdf4"}],"id":"c4813624-e584-44be-b2a8-cb54632f6acb","_postman_id":"c4813624-e584-44be-b2a8-cb54632f6acb","description":""},{"name":"Guest Methods","item":[{"name":"Get Job by hash","id":"6600da21-d532-4d36-82d8-8101a34a70dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","description":"<p>Required</p>\n","type":"text"}],"url":"{{host}}/job?hash=ZhFVBejcJ","description":"<p>Get's a Job by it's <code>hash</code>. The <code>hash</code> on a job is a GUID. </p>\n","urlObject":{"path":["job"],"host":["{{host}}"],"query":[{"key":"hash","value":"ZhFVBejcJ"}],"variable":[]}},"response":[{"id":"4c4734e7-72e4-4091-b5ca-85df467641e9","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","description":"Required","type":"text"}],"url":{"raw":"{{host}}/job?hash=ZhFVBejcJ","host":["{{host}}"],"path":["job"],"query":[{"key":"hash","value":"ZhFVBejcJ"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"22641"},{"key":"ETag","value":"W/\"5871-KbTBGT0V94gUa4poGTy3f3razMk\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:33:36 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174818,\n        \"job_number\": 8,\n        \"origin_job_number\": null,\n        \"hash\": \"ZhFVBejcJ\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": 965,\n        \"pickup_location_id\": 388586,\n        \"actual_pickup_location_id\": 388589,\n        \"dropoff_location_id\": 388574,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388586,\n            \"address\": \"385 Metropolitan Ave\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11211\",\n            \"country\": \"US\",\n            \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"latitude\": 40.71407,\n            \"longitude\": -73.95536,\n            \"date_created\": \"2021-04-27 21:32:35\",\n            \"date_updated\": \"2021-04-27 21:32:35\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388574,\n            \"address\": \"33 Bond St\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11201\",\n            \"country\": \"US\",\n            \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"latitude\": 40.68864,\n            \"longitude\": -73.9835,\n            \"date_created\": \"2021-03-09 20:40:53\",\n            \"date_updated\": \"2021-03-09 20:40:53\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"f30c5007222a4985a820a6397789a038\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2021-04-28 17:14:22\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 4,\n        \"in_progress_date\": \"2021-04-28 17:22:06\",\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"driver notes\",\n        \"internal_notes\": \"\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": null,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 0,\n        \"price_override_flag\": 0,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-28 17:14:22\",\n        \"date_updated\": \"2021-04-28 17:22:06\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": null,\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": 364,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"driver\": {\n            \"employee_id\": 965,\n            \"driver_number\": 1,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Company\",\n            \"username\": \"demodriver@test_company\",\n            \"email\": \"testcompany@testcompany.com\",\n            \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n            \"password_hint\": \"pa*****4\",\n            \"hash\": \"rjgtIGdgx\",\n            \"company_id\": 100,\n            \"location_id\": 388582,\n            \"primary_phone_country\": \"US\",\n            \"primary_phone\": \"2222222222\",\n            \"secondary_phone_country\": null,\n            \"secondary_phone\": null,\n            \"is_driver\": 1,\n            \"role_name\": \"driver\",\n            \"is_active\": 1,\n            \"is_deleted\": 0,\n            \"social_security_number\": null,\n            \"date_of_birth\": null,\n            \"base\": null,\n            \"base_id\": 67,\n            \"old_base_id\": null,\n            \"base_license_number\": null,\n            \"base_fee\": null,\n            \"base_fee_frequency\": null,\n            \"base_fee_last_processed\": null,\n            \"enable_recurring_base_fee\": 0,\n            \"base_fee_start_date\": null,\n            \"hack_license_number\": null,\n            \"hack_license_expiration\": null,\n            \"driver_license_number\": \"Change this\",\n            \"driver_license_expiration\": \"2021-05-27\",\n            \"driver_license_class\": \"D\",\n            \"is_car_owner\": 0,\n            \"dispatch_app_version\": null,\n            \"device_id\": null,\n            \"date_created\": \"2021-04-27 17:53:51\",\n            \"date_updated\": \"2021-04-28 16:48:55\",\n            \"car_type_id\": 255,\n            \"new_car_type_id\": null,\n            \"car_make\": \"Toyota\",\n            \"car_model\": \"Camry\",\n            \"car_year\": 2016,\n            \"car_color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"on_duty\": 0,\n            \"on_duty_date\": null,\n            \"phone_verified\": null,\n            \"phone_verification_code\": null,\n            \"phone_verified_date\": null,\n            \"picture\": null,\n            \"attributes\": null,\n            \"profile\": null,\n            \"application_approved_date\": null,\n            \"application_approved\": 0,\n            \"number_of_ratings\": 0,\n            \"average_rating\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            },\n            \"transaction_balance\": 0,\n            \"suspended_until\": null,\n            \"date_unsuspending\": null,\n            \"password_reset_hash\": null,\n            \"password_reset_client_hash\": null,\n            \"password_reset_hash_date\": null,\n            \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n            \"is_suspended\": 0,\n            \"recruiter_entity_id\": null,\n            \"recruiter_entity_type\": null,\n            \"car_vin\": null,\n            \"assigned_to_vehicle_id\": 364,\n            \"parent_employee_id\": null,\n            \"custom_attributes\": null,\n            \"primary_phone_international\": \"+1 222 222 2222\",\n            \"primary_phone_national\": \"(222) 222-2222\",\n            \"transaction_balace\": 0,\n            \"car_type\": {\n                \"vehicle_id\": 364,\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            },\n            \"assigned_to_vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            }\n        },\n        \"vehicle\": {\n            \"vehicle_id\": 364,\n            \"company_id\": 100,\n            \"owner_employee_id\": 965,\n            \"type_id\": 255,\n            \"name\": null,\n            \"make\": \"Toyota\",\n            \"model\": \"Camry\",\n            \"year\": 2016,\n            \"color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration_date\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"inspection_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": 1,\n            \"date_created\": \"2021-04-27T17:53:51Z\",\n            \"date_updated\": \"2021-04-27T17:53:51Z\",\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"_type\": \"vehicle\",\n            \"summary\": \"2016 Black Toyota Camry\",\n            \"car_type\": {\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": {\n                    \"capacity\": {\n                        \"value\": 6\n                    }\n                },\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            }\n        },\n        \"driver_base\": {\n            \"base_id\": 67,\n            \"name\": \"TEST_COMPANY\"\n        },\n        \"job_status\": {\n            \"status_id\": 4,\n            \"name\": \"In Progress\",\n            \"slug\": \"in-progress\",\n            \"order\": 40\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 964,\n            \"first_name\": \"LD\",\n            \"last_name\": \"Admin\",\n            \"email\": \"info@liverydesk.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"driver_location\": {\n            \"employee_id\": null,\n            \"latitude\": null,\n            \"longitude\": null,\n            \"accuracy\": null,\n            \"job_id\": null,\n            \"distance_away\": null,\n            \"date_created\": null,\n            \"speed_meters\": null\n        },\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 4,\n            \"name\": \"In Progress\",\n            \"slug\": \"in-progress\",\n            \"order\": 40\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 0,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 0,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/ZhFVBejcJ\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909326,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388586,\n                \"actual_location_id\": 388589,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n                \"in_progress_date\": \"2021-04-28 17:22:05\",\n                \"completed_date\": \"2021-04-28 17:24:44\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:24:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": 133,\n                \"total_duration_seconds\": 159,\n                \"return_stop_id\": null,\n                \"recipient\": {\n                    \"name\": \"John Nextdoor\",\n                    \"designation\": \"Nextdoor Neighbor\",\n                    \"address\": \"123 West Ave\"\n                },\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388589,\n                    \"address\": \"169 Grange St\",\n                    \"address_two\": null,\n                    \"city\": \"Franklin Square\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11010\",\n                    \"country\": \"US\",\n                    \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                    \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                    \"latitude\": 40.70324,\n                    \"longitude\": -73.66761,\n                    \"date_created\": \"2021-04-28 17:24:44\",\n                    \"date_updated\": \"2021-04-28 17:24:44\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4239,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:26\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"notes\": \"These are the driver notes\"\n                        },\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4238,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:27\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"items\": [\n                                {\n                                    \"ID\": \"555\",\n                                    \"qty\": \"3\",\n                                    \"name\": \"Iced Coffee\",\n                                    \"price\": \"4\",\n                                    \"_item_id\": \"B1oTe07PL\",\n                                    \"_status\": {\n                                        \"status_id\": \"rejected\",\n                                        \"notes\": \"Nice and cold\",\n                                        \"rejection_reason_id\": \"wrong_quantity\"\n                                    }\n                                }\n                            ]\n                        },\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            {\n                \"job_stop_id\": 3909327,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": {\n                    \"cancellation\": {\n                        \"cancellation_reason\": \"Not available\"\n                    }\n                },\n                \"status_id\": 8,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": \"2021-04-28 17:24:45\",\n                \"completed_date\": null,\n                \"cancelled_date\": \"2021-04-28 17:25:47\",\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:25:47\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 8,\n                    \"name\": \"Cancelled\",\n                    \"slug\": \"cancelled\",\n                    \"order\": 80\n                }\n            }\n        ],\n        \"actual_pickup_location\": {\n            \"location_id\": 388589,\n            \"address\": \"169 Grange St\",\n            \"address_two\": null,\n            \"city\": \"Franklin Square\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11010\",\n            \"country\": \"US\",\n            \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n            \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n            \"latitude\": 40.70324,\n            \"longitude\": -73.66761,\n            \"date_created\": \"2021-04-28 17:24:44\",\n            \"date_updated\": \"2021-04-28 17:24:44\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n            \"company_id\": null\n        },\n        \"current_stop\": null,\n        \"next_stop\": null,\n        \"previous_stop\": {\n            \"job_stop_id\": 3909326,\n            \"company_id\": 100,\n            \"job_id\": 2174818,\n            \"location_id\": 388586,\n            \"actual_location_id\": 388589,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": {},\n            \"status_id\": 7,\n            \"arrival_date\": \"2021-04-29 01:14:21\",\n            \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n            \"in_progress_date\": \"2021-04-28 17:22:05\",\n            \"completed_date\": \"2021-04-28 17:24:44\",\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:14:22\",\n            \"date_updated\": \"2021-04-28 17:24:44\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 5232,\n            \"duration_to_next_stop_seconds\": 865,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": 133,\n            \"total_duration_seconds\": 159,\n            \"return_stop_id\": null,\n            \"recipient\": {\n                \"name\": \"John Nextdoor\",\n                \"designation\": \"Nextdoor Neighbor\",\n                \"address\": \"123 West Ave\"\n            },\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"actual_location\": {\n                \"location_id\": 388589,\n                \"address\": \"169 Grange St\",\n                \"address_two\": null,\n                \"city\": \"Franklin Square\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11010\",\n                \"country\": \"US\",\n                \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                \"latitude\": 40.70324,\n                \"longitude\": -73.66761,\n                \"date_created\": \"2021-04-28 17:24:44\",\n                \"date_updated\": \"2021-04-28 17:24:44\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 7,\n                \"name\": \"Completed\",\n                \"slug\": \"completed\",\n                \"order\": 70\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4239,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"job_stop_id\": 3909326,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"confirmation\",\n                        \"display\": \"Confirmation\",\n                        \"has_attachment\": 1,\n                        \"has_body\": true,\n                        \"attachment_name\": \"Signature\",\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"require_notes\": {\n                                \"id\": \"require_notes\",\n                                \"display\": \"Requires Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"show_notes\": {\n                                \"id\": \"show_notes\",\n                                \"display\": \"Show Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Confirmation\",\n                    \"description\": \"Accept this confirmation\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"show_notes\": 1,\n                            \"require_notes\": 1,\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 0,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:14:23\",\n                    \"date_updated\": \"2021-04-28 17:22:26\",\n                    \"date_deleted\": null,\n                    \"type_data\": {\n                        \"notes\": \"These are the driver notes\"\n                    },\n                    \"body\": \"Do you accept?\"\n                },\n                {\n                    \"job_stop_action_id\": 4238,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"job_stop_id\": 3909326,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"order_acknowledgement\",\n                        \"display\": \"Order Acknowledgement\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\",\n                        \"item_statuses\": {\n                            \"rejected\": {\n                                \"id\": \"rejected\",\n                                \"display\": \"Rejected\"\n                            },\n                            \"accepted\": {\n                                \"id\": \"accepted\",\n                                \"display\": \"Accepted\"\n                            }\n                        },\n                        \"rejection_reasons\": {\n                            \"lost_or_damaged\": {\n                                \"id\": \"lost_or_damaged\",\n                                \"display\": \"Lost or Damaged\",\n                                \"order\": 1\n                            },\n                            \"wrong_quantity\": {\n                                \"id\": \"wrong_quantity\",\n                                \"display\": \"Wrong Quantity\",\n                                \"order\": 2\n                            },\n                            \"other\": {\n                                \"id\": \"other\",\n                                \"display\": \"Other\",\n                                \"order\": 3\n                            }\n                        },\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 2,\n                    \"button_text\": \"Order Acknowledgement\",\n                    \"description\": \"Order Acknowledgement\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 0,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:14:23\",\n                    \"date_updated\": \"2021-04-28 17:22:27\",\n                    \"date_deleted\": null,\n                    \"type_data\": {\n                        \"items\": [\n                            {\n                                \"ID\": \"555\",\n                                \"qty\": \"3\",\n                                \"name\": \"Iced Coffee\",\n                                \"price\": \"4\",\n                                \"_item_id\": \"B1oTe07PL\",\n                                \"_status\": {\n                                    \"status_id\": \"rejected\",\n                                    \"notes\": \"Nice and cold\",\n                                    \"rejection_reason_id\": \"wrong_quantity\"\n                                }\n                            }\n                        ]\n                    },\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": null\n        },\n        \"location_history\": {\n            \"distance_meters\": 0,\n            \"duration_seconds\": 0\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"6600da21-d532-4d36-82d8-8101a34a70dd"},{"name":"Cancel Job by hash","id":"4a317417-9014-4f03-afe1-01a4a741466c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"ZhFVBejcJ","type":"text"}]},"url":"{{host}}/job/cancel","description":"<p>Cancel a job by passing in the job hash. This endpoint is used for Guest bookings.</p>\n","urlObject":{"path":["job","cancel"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c8055fd0-0809-4a22-b4ab-2228b15527ac","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"hash","value":"ZhFVBejcJ","type":"text"}]},"url":"{{host}}/job/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"24356"},{"key":"ETag","value":"W/\"5f24-ziJ+BKq7iLrXilA/5zny9QCUSA4\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:34:03 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174818,\n        \"job_number\": 8,\n        \"origin_job_number\": null,\n        \"hash\": \"ZhFVBejcJ\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": 965,\n        \"pickup_location_id\": 388586,\n        \"actual_pickup_location_id\": 388589,\n        \"dropoff_location_id\": 388574,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388586,\n            \"address\": \"385 Metropolitan Ave\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11211\",\n            \"country\": \"US\",\n            \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"latitude\": 40.71407,\n            \"longitude\": -73.95536,\n            \"date_created\": \"2021-04-27 21:32:35\",\n            \"date_updated\": \"2021-04-27 21:32:35\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388574,\n            \"address\": \"33 Bond St\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11201\",\n            \"country\": \"US\",\n            \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"latitude\": 40.68864,\n            \"longitude\": -73.9835,\n            \"date_created\": \"2021-03-09 20:40:53\",\n            \"date_updated\": \"2021-03-09 20:40:53\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"f30c5007222a4985a820a6397789a038\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2021-04-28 17:14:22\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 8,\n        \"in_progress_date\": \"2021-04-28 17:22:06\",\n        \"infront_date\": null,\n        \"cancelled_date\": \"2021-04-28 17:34:02\",\n        \"driver_notes\": \"driver notes\",\n        \"internal_notes\": \"\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": null,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 0,\n        \"price_override_flag\": 0,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-28 17:14:22\",\n        \"date_updated\": \"2021-04-28 17:34:02\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": {\n            \"cancellation\": {\n                \"cancelled_by_entity_id\": null,\n                \"cancelled_by_entity_type\": \"user\",\n                \"dispatcher_input_cancellation_reason\": null\n            }\n        },\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": null,\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": 364,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"driver\": {\n            \"employee_id\": 965,\n            \"driver_number\": 1,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Company\",\n            \"username\": \"demodriver@test_company\",\n            \"email\": \"testcompany@testcompany.com\",\n            \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n            \"password_hint\": \"pa*****4\",\n            \"hash\": \"rjgtIGdgx\",\n            \"company_id\": 100,\n            \"location_id\": 388582,\n            \"primary_phone_country\": \"US\",\n            \"primary_phone\": \"2222222222\",\n            \"secondary_phone_country\": null,\n            \"secondary_phone\": null,\n            \"is_driver\": 1,\n            \"role_name\": \"driver\",\n            \"is_active\": 1,\n            \"is_deleted\": 0,\n            \"social_security_number\": null,\n            \"date_of_birth\": null,\n            \"base\": null,\n            \"base_id\": 67,\n            \"old_base_id\": null,\n            \"base_license_number\": null,\n            \"base_fee\": null,\n            \"base_fee_frequency\": null,\n            \"base_fee_last_processed\": null,\n            \"enable_recurring_base_fee\": 0,\n            \"base_fee_start_date\": null,\n            \"hack_license_number\": null,\n            \"hack_license_expiration\": null,\n            \"driver_license_number\": \"Change this\",\n            \"driver_license_expiration\": \"2021-05-27\",\n            \"driver_license_class\": \"D\",\n            \"is_car_owner\": 0,\n            \"dispatch_app_version\": null,\n            \"device_id\": null,\n            \"date_created\": \"2021-04-27 17:53:51\",\n            \"date_updated\": \"2021-04-28 16:48:55\",\n            \"car_type_id\": 255,\n            \"new_car_type_id\": null,\n            \"car_make\": \"Toyota\",\n            \"car_model\": \"Camry\",\n            \"car_year\": 2016,\n            \"car_color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"on_duty\": 0,\n            \"on_duty_date\": null,\n            \"phone_verified\": null,\n            \"phone_verification_code\": null,\n            \"phone_verified_date\": null,\n            \"picture\": null,\n            \"attributes\": null,\n            \"profile\": null,\n            \"application_approved_date\": null,\n            \"application_approved\": 0,\n            \"number_of_ratings\": 0,\n            \"average_rating\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            },\n            \"transaction_balance\": 0,\n            \"suspended_until\": null,\n            \"date_unsuspending\": null,\n            \"password_reset_hash\": null,\n            \"password_reset_client_hash\": null,\n            \"password_reset_hash_date\": null,\n            \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n            \"is_suspended\": 0,\n            \"recruiter_entity_id\": null,\n            \"recruiter_entity_type\": null,\n            \"car_vin\": null,\n            \"assigned_to_vehicle_id\": 364,\n            \"parent_employee_id\": null,\n            \"custom_attributes\": null,\n            \"primary_phone_international\": \"+1 222 222 2222\",\n            \"primary_phone_national\": \"(222) 222-2222\",\n            \"transaction_balace\": 0,\n            \"car_type\": {\n                \"vehicle_id\": 364,\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            },\n            \"assigned_to_vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            }\n        },\n        \"vehicle\": {\n            \"vehicle_id\": 364,\n            \"company_id\": 100,\n            \"owner_employee_id\": 965,\n            \"type_id\": 255,\n            \"name\": null,\n            \"make\": \"Toyota\",\n            \"model\": \"Camry\",\n            \"year\": 2016,\n            \"color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration_date\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"inspection_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": 1,\n            \"date_created\": \"2021-04-27T17:53:51Z\",\n            \"date_updated\": \"2021-04-27T17:53:51Z\",\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"_type\": \"vehicle\",\n            \"summary\": \"2016 Black Toyota Camry\",\n            \"car_type\": {\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": {\n                    \"capacity\": {\n                        \"value\": 6\n                    }\n                },\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            }\n        },\n        \"driver_base\": {\n            \"base_id\": 67,\n            \"name\": \"TEST_COMPANY\"\n        },\n        \"job_status\": {\n            \"status_id\": 8,\n            \"name\": \"Cancelled\",\n            \"slug\": \"cancelled\",\n            \"order\": 80\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 964,\n            \"first_name\": \"LD\",\n            \"last_name\": \"Admin\",\n            \"email\": \"info@liverydesk.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 8,\n            \"name\": \"Cancelled\",\n            \"slug\": \"cancelled\",\n            \"order\": 80\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 0,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 0,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/ZhFVBejcJ\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909326,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388586,\n                \"actual_location_id\": 388589,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n                \"in_progress_date\": \"2021-04-28 17:22:05\",\n                \"completed_date\": \"2021-04-28 17:24:44\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:24:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": 133,\n                \"total_duration_seconds\": 159,\n                \"return_stop_id\": null,\n                \"recipient\": {\n                    \"name\": \"John Nextdoor\",\n                    \"designation\": \"Nextdoor Neighbor\",\n                    \"address\": \"123 West Ave\"\n                },\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388589,\n                    \"address\": \"169 Grange St\",\n                    \"address_two\": null,\n                    \"city\": \"Franklin Square\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11010\",\n                    \"country\": \"US\",\n                    \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                    \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                    \"latitude\": 40.70324,\n                    \"longitude\": -73.66761,\n                    \"date_created\": \"2021-04-28 17:24:44\",\n                    \"date_updated\": \"2021-04-28 17:24:44\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4239,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:26\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"notes\": \"These are the driver notes\"\n                        },\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4238,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:27\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"items\": [\n                                {\n                                    \"ID\": \"555\",\n                                    \"qty\": \"3\",\n                                    \"name\": \"Iced Coffee\",\n                                    \"price\": \"4\",\n                                    \"_item_id\": \"B1oTe07PL\",\n                                    \"_status\": {\n                                        \"status_id\": \"rejected\",\n                                        \"notes\": \"Nice and cold\",\n                                        \"rejection_reason_id\": \"wrong_quantity\"\n                                    }\n                                }\n                            ]\n                        },\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            {\n                \"job_stop_id\": 3909327,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": {\n                    \"cancellation\": {\n                        \"cancellation_reason\": \"Not available\"\n                    }\n                },\n                \"status_id\": 8,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": \"2021-04-28 17:24:45\",\n                \"completed_date\": null,\n                \"cancelled_date\": \"2021-04-28 17:25:47\",\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:25:47\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 8,\n                    \"name\": \"Cancelled\",\n                    \"slug\": \"cancelled\",\n                    \"order\": 80\n                }\n            }\n        ],\n        \"actual_pickup_location\": {\n            \"location_id\": 388589,\n            \"address\": \"169 Grange St\",\n            \"address_two\": null,\n            \"city\": \"Franklin Square\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11010\",\n            \"country\": \"US\",\n            \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n            \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n            \"latitude\": 40.70324,\n            \"longitude\": -73.66761,\n            \"date_created\": \"2021-04-28 17:24:44\",\n            \"date_updated\": \"2021-04-28 17:24:44\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n            \"company_id\": null\n        },\n        \"current_stop\": {\n            \"job_stop_id\": 3909326,\n            \"company_id\": 100,\n            \"job_id\": 2174818,\n            \"location_id\": 388586,\n            \"actual_location_id\": 388589,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": {},\n            \"status_id\": 7,\n            \"arrival_date\": \"2021-04-29 01:14:21\",\n            \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n            \"in_progress_date\": \"2021-04-28 17:22:05\",\n            \"completed_date\": \"2021-04-28 17:24:44\",\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:14:22\",\n            \"date_updated\": \"2021-04-28 17:24:44\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 5232,\n            \"duration_to_next_stop_seconds\": 865,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": 133,\n            \"total_duration_seconds\": 159,\n            \"return_stop_id\": null,\n            \"recipient\": {\n                \"name\": \"John Nextdoor\",\n                \"designation\": \"Nextdoor Neighbor\",\n                \"address\": \"123 West Ave\"\n            },\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"actual_location\": {\n                \"location_id\": 388589,\n                \"address\": \"169 Grange St\",\n                \"address_two\": null,\n                \"city\": \"Franklin Square\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11010\",\n                \"country\": \"US\",\n                \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                \"latitude\": 40.70324,\n                \"longitude\": -73.66761,\n                \"date_created\": \"2021-04-28 17:24:44\",\n                \"date_updated\": \"2021-04-28 17:24:44\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 7,\n                \"name\": \"Completed\",\n                \"slug\": \"completed\",\n                \"order\": 70\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4239,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"job_stop_id\": 3909326,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"confirmation\",\n                        \"display\": \"Confirmation\",\n                        \"has_attachment\": 1,\n                        \"has_body\": true,\n                        \"attachment_name\": \"Signature\",\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"require_notes\": {\n                                \"id\": \"require_notes\",\n                                \"display\": \"Requires Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"show_notes\": {\n                                \"id\": \"show_notes\",\n                                \"display\": \"Show Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Confirmation\",\n                    \"description\": \"Accept this confirmation\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"show_notes\": 1,\n                            \"require_notes\": 1,\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 0,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:14:23\",\n                    \"date_updated\": \"2021-04-28 17:22:26\",\n                    \"date_deleted\": null,\n                    \"type_data\": {\n                        \"notes\": \"These are the driver notes\"\n                    },\n                    \"body\": \"Do you accept?\"\n                },\n                {\n                    \"job_stop_action_id\": 4238,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"job_stop_id\": 3909326,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"order_acknowledgement\",\n                        \"display\": \"Order Acknowledgement\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\",\n                        \"item_statuses\": {\n                            \"rejected\": {\n                                \"id\": \"rejected\",\n                                \"display\": \"Rejected\"\n                            },\n                            \"accepted\": {\n                                \"id\": \"accepted\",\n                                \"display\": \"Accepted\"\n                            }\n                        },\n                        \"rejection_reasons\": {\n                            \"lost_or_damaged\": {\n                                \"id\": \"lost_or_damaged\",\n                                \"display\": \"Lost or Damaged\",\n                                \"order\": 1\n                            },\n                            \"wrong_quantity\": {\n                                \"id\": \"wrong_quantity\",\n                                \"display\": \"Wrong Quantity\",\n                                \"order\": 2\n                            },\n                            \"other\": {\n                                \"id\": \"other\",\n                                \"display\": \"Other\",\n                                \"order\": 3\n                            }\n                        },\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 2,\n                    \"button_text\": \"Order Acknowledgement\",\n                    \"description\": \"Order Acknowledgement\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 0,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:14:23\",\n                    \"date_updated\": \"2021-04-28 17:22:27\",\n                    \"date_deleted\": null,\n                    \"type_data\": {\n                        \"items\": [\n                            {\n                                \"ID\": \"555\",\n                                \"qty\": \"3\",\n                                \"name\": \"Iced Coffee\",\n                                \"price\": \"4\",\n                                \"_item_id\": \"B1oTe07PL\",\n                                \"_status\": {\n                                    \"status_id\": \"rejected\",\n                                    \"notes\": \"Nice and cold\",\n                                    \"rejection_reason_id\": \"wrong_quantity\"\n                                }\n                            }\n                        ]\n                    },\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": null\n        },\n        \"next_stop\": {\n            \"job_stop_id\": 3909327,\n            \"company_id\": 100,\n            \"job_id\": 2174818,\n            \"location_id\": 388574,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": {\n                \"cancellation\": {\n                    \"cancellation_reason\": \"Not available\"\n                }\n            },\n            \"status_id\": 8,\n            \"arrival_date\": \"2021-04-29 01:14:21\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": \"2021-04-28 17:24:45\",\n            \"completed_date\": null,\n            \"cancelled_date\": \"2021-04-28 17:25:47\",\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:14:22\",\n            \"date_updated\": \"2021-04-28 17:25:47\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 5232,\n            \"duration_from_previous_stop_seconds\": 865,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 8,\n                \"name\": \"Cancelled\",\n                \"slug\": \"cancelled\",\n                \"order\": 80\n            }\n        },\n        \"previous_stop\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"4a317417-9014-4f03-afe1-01a4a741466c"}],"id":"0558079f-5e42-43a7-9eac-fbbb27e04101","description":"<p>These endpoints are accessible without an Access Token but are restricted by API key. </p>\n","_postman_id":"0558079f-5e42-43a7-9eac-fbbb27e04101"},{"name":"Troubleshooting","item":[{"name":"Get Troubleshooting enums","id":"567cc058-c08a-4299-b083-0c44daf6626c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/troubleshooting","urlObject":{"path":["job","troubleshooting"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"92b969c4-40f0-48e1-8d1c-c9ef76b68422","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/troubleshooting"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2215"},{"key":"ETag","value":"W/\"8a7-cZLm+9wanb9SOXUIve+RUO9IR1c\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:34:30 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"options\": {\n            \"cant_do_this_job\": {\n                \"id\": \"cant_do_this_job\",\n                \"name\": \"Driver cant do this job\",\n                \"description\": \"Driver is unable to do this job, job will be returned to pending\",\n                \"company_types\": [\n                    \"taxi\",\n                    \"courier\"\n                ],\n                \"stop_statuses\": [\n                    4\n                ],\n                \"stop_types\": [\n                    \"pickup\"\n                ]\n            },\n            \"customer_cancelled\": {\n                \"id\": \"customer_cancelled\",\n                \"name\": \"Customer cancelled job\",\n                \"description\": \"The customer contacted the driver to cancel request\",\n                \"company_types\": [\n                    \"taxi\",\n                    \"courier\"\n                ],\n                \"stop_statuses\": [\n                    4,\n                    5\n                ],\n                \"stop_types\": [\n                    \"pickup\"\n                ]\n            },\n            \"customer_not_reachable\": {\n                \"id\": \"customer_not_reachable\",\n                \"name\": \"Customer not reachable\",\n                \"description\": \"Driver is unable to reach the customer, the job will be cancelled\",\n                \"company_types\": [\n                    \"taxi\",\n                    \"courier\"\n                ],\n                \"stop_statuses\": [\n                    4,\n                    5\n                ],\n                \"stop_types\": [\n                    \"pickup\"\n                ]\n            },\n            \"wrong_address\": {\n                \"id\": \"wrong_address\",\n                \"name\": \"Wrong Address, edit location\",\n                \"description\": \"The address is incorrect, the driver will be able to edit a stop location\",\n                \"company_types\": [\n                    \"taxi\",\n                    \"courier\"\n                ],\n                \"stop_statuses\": [\n                    4,\n                    5\n                ],\n                \"stop_types\": [\n                    \"pickup\",\n                    \"dropoff\"\n                ]\n            },\n            \"take_a_video\": {\n                \"id\": \"take_a_video\",\n                \"name\": \"Take a video\",\n                \"description\": \"The customer was not reachable, take a video leaving the item in a specific location, job will be completed\",\n                \"company_types\": [\n                    \"courier\"\n                ],\n                \"stop_statuses\": [\n                    4,\n                    5\n                ],\n                \"stop_types\": [\n                    \"dropoff\"\n                ]\n            },\n            \"return_to_pickup\": {\n                \"id\": \"return_to_pickup\",\n                \"name\": \"Nobody reachable\",\n                \"description\": \"Nobody reachable, the driver will return to the original pickup location to return item\",\n                \"company_types\": [\n                    \"courier\"\n                ],\n                \"stop_statuses\": [\n                    4,\n                    5\n                ],\n                \"stop_types\": [\n                    \"dropoff\"\n                ]\n            },\n            \"leave_with_neighbor\": {\n                \"id\": \"leave_with_neighbor\",\n                \"name\": \"Leave with neighbor\",\n                \"description\": \"Customer not reachable, driver can leave the item with someone else and have them sign for it, job will be completed\",\n                \"company_types\": [\n                    \"courier\"\n                ],\n                \"stop_statuses\": [\n                    4,\n                    5\n                ],\n                \"stop_types\": [\n                    \"dropoff\"\n                ]\n            }\n        },\n        \"options_obj\": {\n            \"pickup\": {\n                \"4\": [\n                    \"cant_do_this_job\",\n                    \"customer_cancelled\",\n                    \"customer_not_reachable\",\n                    \"wrong_address\"\n                ],\n                \"5\": [\n                    \"customer_cancelled\",\n                    \"customer_not_reachable\",\n                    \"wrong_address\"\n                ]\n            },\n            \"dropoff\": {\n                \"4\": [\n                    \"wrong_address\",\n                    \"take_a_video\",\n                    \"return_to_pickup\",\n                    \"leave_with_neighbor\"\n                ],\n                \"5\": [\n                    \"wrong_address\",\n                    \"take_a_video\",\n                    \"return_to_pickup\",\n                    \"leave_with_neighbor\"\n                ]\n            }\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"567cc058-c08a-4299-b083-0c44daf6626c"}],"id":"d130dd33-a213-40b6-b69d-f70d918bf56e","_postman_id":"d130dd33-a213-40b6-b69d-f70d918bf56e","description":""},{"name":"Attachments","item":[{"name":"Add Attachments","id":"17b33705-3381-42ea-9492-51b9050933b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"attachments","type":"file","src":"/Users/nickcassell/Downloads/SignatureAttachmentExample.png"},{"key":"attachments","type":"file","src":"/Users/nickcassell/Downloads/SignatureAttachmentExample.png"},{"key":"job_id","value":"2174817","type":"text"},{"key":"attachments_meta[0][title]","value":"title1","type":"text"},{"key":"attachments_meta[1][title]","value":"title2","type":"text"}]},"url":"{{host}}/job/attachment","urlObject":{"path":["job","attachment"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b91753ec-ca50-4e98-be26-7583aafaa81e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"attachments","type":"file","src":["/Users/nickcassell/Downloads/SignatureAttachmentExample.png"]},{"key":"attachments","type":"file","src":["/Users/nickcassell/Downloads/SignatureAttachmentExample.png"]},{"key":"job_id","value":"2174817","type":"text"},{"key":"attachments_meta[0][title]","value":"title1","type":"text"},{"key":"attachments_meta[1][title]","value":"title2","type":"text"}]},"url":"{{host}}/job/attachment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1345"},{"key":"ETag","value":"W/\"541-y0GAlr4q1UJMhdHp/sSjr7va1CI\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:35:13 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"fieldname\": \"attachments\",\n            \"originalname\": \"SignatureAttachmentExample.png\",\n            \"encoding\": \"7bit\",\n            \"mimetype\": \"image/png\",\n            \"destination\": \"./tmp\",\n            \"filename\": \"7980ff9d6b40514ca0599310197a5181\",\n            \"path\": \"tmp/7980ff9d6b40514ca0599310197a5181\",\n            \"size\": 5675,\n            \"name\": \"SignatureAttachmentExample.png\",\n            \"extension\": \"png\",\n            \"stored_name\": \"signatureattachmentexample_-nxJXNZne.png\",\n            \"type\": \"image/png\",\n            \"original_filename\": \"SignatureAttachmentExample.png\",\n            \"remote_path\": \"liverydesk-public-dev/job/2174817/attachment\",\n            \"title\": \"title1\",\n            \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174817/attachment/signatureattachmentexample_-nxJXNZne.png\"\n        },\n        {\n            \"fieldname\": \"attachments\",\n            \"originalname\": \"SignatureAttachmentExample.png\",\n            \"encoding\": \"7bit\",\n            \"mimetype\": \"image/png\",\n            \"destination\": \"./tmp\",\n            \"filename\": \"fa250ae162ee20290b0a7005fec7286d\",\n            \"path\": \"tmp/fa250ae162ee20290b0a7005fec7286d\",\n            \"size\": 5675,\n            \"name\": \"SignatureAttachmentExample.png\",\n            \"extension\": \"png\",\n            \"stored_name\": \"signatureattachmentexample_fTqGGQ_Bvl.png\",\n            \"type\": \"image/png\",\n            \"original_filename\": \"SignatureAttachmentExample.png\",\n            \"remote_path\": \"liverydesk-public-dev/job/2174817/attachment\",\n            \"title\": \"title2\",\n            \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174817/attachment/signatureattachmentexample_fTqGGQ_Bvl.png\"\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 2\n    }\n}"}],"_postman_id":"17b33705-3381-42ea-9492-51b9050933b1"},{"name":"Delete Attachments","id":"d30af5a3-7dc9-4095-97fb-77866b7d1ed2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_id","value":"2174817","type":"text"},{"key":"stored_name","value":"signatureattachmentexample_-nxJXNZne.png","type":"text"}]},"url":"{{host}}/job/attachment","urlObject":{"path":["job","attachment"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"fa0d1108-77bc-4811-a956-2a8ee4e0fa4a","name":"Success","originalRequest":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_id","value":"2174817","type":"text"},{"key":"stored_name","value":"signatureattachmentexample_-nxJXNZne.png","type":"text"}]},"url":"{{host}}/job/attachment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"88"},{"key":"ETag","value":"W/\"58-tgLPAlUNZDSur1GxVyc0Nyug8lU\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:35:56 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {},\n    \"meta\": {\n        \"code\": 204,\n        \"code_description\": \"No Content\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"d30af5a3-7dc9-4095-97fb-77866b7d1ed2"}],"id":"bfca6c54-9129-461e-bf66-0b259ea5a503","_postman_id":"bfca6c54-9129-461e-bf66-0b259ea5a503","description":""},{"name":"Create job (Authenticated)","id":"5dbe606c-e128-417f-b5af-43c484317f71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"phone","value":"2222222222","description":"<p>required</p>\n","type":"text"},{"key":"phone_country","value":"US","description":"<p>2-character ISO 3166-1 region code (e.g. 'SE' for Sweden, 'US' for United States)</p>\n","type":"text"},{"key":"contact_name","value":"Contact Name","description":"<p>optional, name of the person booking the job</p>\n","type":"text","disabled":true},{"key":"pickup_date","value":"2021-04-26T08:59:13+0000","description":"<p>Full ISO date format including timezone offset of when this job needs to be fulfilled. A date in the future will flag this job as a reservation</p>\n","type":"text","disabled":true},{"key":"car_type","value":"100","description":"<p>Array of car types the user has requested</p>\n","type":"text"},{"key":"internal_notes","value":"Doorbell doesnt work","description":"<p>optional, notes that do not get shown to the customer</p>\n","type":"text"},{"key":"stops[0][address]","value":"123 West Ave","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[0][city]","value":"New York","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[0][state]","value":"New York","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[0][postal_code]","value":"","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[0][latitude]","value":"40.72822","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][longitude]","value":"-73.70667000000003","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][long_name]","value":"!23 West Ave New York, NY","description":"<p>required</p>\n","type":"text"},{"key":"stops[0][short_name]","value":"!23 West Ave NY","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][country]","value":"US","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][type]","value":"pickup","description":"<p>required, <code>pickup</code> or<code>dropoff</code></p>\n","type":"text"},{"key":"stops[0][notes]","value":"stop notes","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[0][arrival_date]","value":"2020-01-28T17:51:00-04:00","description":"<p>Full ISO date format including timezone offset of when this job needs to be fulfilled. A date in the future will flag this job as a reservation</p>\n","type":"text"},{"key":"stops[0][location_id]","value":"1234","description":"<p>Optional location_id for this stop as returned from /location/details when using autocomplete</p>\n","type":"text","disabled":true},{"key":"stops[0][apartment_number]","value":"123A","description":"<p>Optional, will override whatever google recognizes as apartment number for this stop</p>\n","type":"text","disabled":true},{"key":"stops[1][address]","value":"330 Old Country Road","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[1][city]","value":"Mineola","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[1][state]","value":"New York","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[1][postal_code]","value":"11501","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[1][latitude]","value":"40.7382953","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][longitude]","value":"-73.64537630000001","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][long_name]","value":"222 West Ave New York, NY","description":"<p>required</p>\n","type":"text"},{"key":"stops[1][short_name]","value":"222 West Ave ","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][country]","value":"US","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][type]","value":"dropoff","description":"<p><code>pickup</code> or <code>dropoff</code></p>\n","type":"text"},{"key":"stops[1][contact_name]","value":"Contact Name","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[1][contact_phone]","value":"3333333333","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[1][arrival_date]","value":"2021-04-28T17:51:00-04:00","description":"<p>required</p>\n","type":"text"},{"key":"stops[1][location_id]","value":"1234","description":"<p>Optional location_id for this stop as returned from /location/details when using autocomplete</p>\n","type":"text","disabled":true},{"key":"items[0][id]","value":"123","description":"<p>Optional, Items structure is defined in the company settings as an 'job_item_structure'. For example: {\"id\":1,\"qty\":1,\"name\":0}. The key is the key in the item structure and the value is if its required or not. For this structure id would be required, qty would be required and name would be optional for each item object in the array</p>\n","type":"text","disabled":true},{"key":"items[0][qty]","value":"123","description":"<p>Optional, Items structure is defined in the company settings as an 'job_item_structure'. For example: {\"id\":1,\"qty\":1,\"name\":0}. The key is the key in the item structure and the value is if its required or not. For this structure id would be required, qty would be required and name would be optional for each item object in the array</p>\n","type":"text","disabled":true},{"key":"items[0][name]","value":"123","description":"<p>Optional, Items structure is defined in the company settings as an 'job_item_structure'. For example: {\"id\":1,\"qty\":1,\"name\":0}. The key is the key in the item structure and the value is if its required or not. For this structure id would be required, qty would be required and name would be optional for each item object in the array</p>\n","type":"text","disabled":true},{"key":"payment_method","value":"cash","description":"<p>Optional - <code>credit</code>, <code>account</code>, <code>cash</code>, <code>thirdparty</code>, <code>prepaid</code></p>\n","type":"text"},{"key":"driver_notes","value":"","description":"<p>Notes that the driver will see</p>\n","type":"text"},{"key":"external_data","value":"{\"somekey\":\"someval\",\"otherkey\":\"otherval\",\"nested\":{\"nestedkey\":\"nestedval\"}}","description":"<p>Used to store any third party data in JSON format. This data is not queryable and is not used by the software in anyway</p>\n","type":"text"},{"key":"attachments","description":"<p>Upload attachments to the job</p>\n","type":"file","value":null,"disabled":true},{"key":"attachments_meta[0][title]","value":"title","description":"<p>Add meta data for each attachment. Must be in the same order as <code>attachments</code></p>\n","type":"text","disabled":true},{"key":"attachments_meta[0][description]","value":"description","type":"text","disabled":true},{"key":"external_source","value":"external_platform","description":"<p>Optional. Field to define the name of an external platform that this job was created in. Can only contain lowercase a-z, 0-9 and '_' characters and a maximum of 255 characters. All invalid characters will be removed</p>\n","type":"text","disabled":true},{"key":"external_id","value":"124ABD","description":"<p>Optional. Unique identifier that matches the id of the job in the platform it was created in. If this field and external source is set jobs will not be created if this id already exists in our system. Can only contain lowercase a-z, 0-9 and '_' characters and a maximum of 255 characters. All invalid characters will be removed</p>\n","type":"text","disabled":true},{"key":"payment_confirmation","value":"","description":"<p>Optional. Must be sent if job is a credit payment_method and the payment was authenticated using a 3D secure flow.\nThis can be found on the payment_object.id returned from the Payment/ Get Payment Object endpoint</p>\n","type":"text","disabled":true},{"key":"payment_processor","value":"stripe_3ds2","description":"<p>Optional. Must be sent if job is a credit payment_method and the payment was authenticated using a 3D secure flow</p>\n","type":"text","disabled":true},{"key":"actual_price","value":"25.00","description":"<p>Optional. Used to set the price on a Job that will not be overridden by pricing configurations in the system</p>\n","type":"text"}]},"url":"{{host}}/job","description":"<p>Jobs are a collection of <code>stops</code> of multiple types. To create a job, an array of stops needs to be supplied. The minimum properties of a stop are <code>latitude</code>, <code>longitude</code> OR <code>long_name</code> and a <code>type</code>. The stop <code>type</code> can be either <code>pickup</code> or <code>dropoff</code>. If additional address details are missing like <code>address</code>, <code>city</code>, <code>state</code> etc, a reverse geo lookup will be made on the <code>latitude</code> and <code>longitude</code> to get the missing details. If <code>long_name</code> is supplied, we will do a geo lookup to get the <code>latitude</code> and <code>longitude</code>. The location of a stop can also be set by passing a <code>location_id</code> if this is a known location in the system already.</p>\n<p>Jobs are created on behalf of the user determined by the access token supplied. If no access token is supplied when creating a job, the job will NOT be tied to a user. </p>\n<p>If a job is being created on behalf of a user, we must take into account the <code>payment_method</code>. If the system is configured to accept cash payments, no payment method needs to be specified. If the user is paying via credit card or another electronic method, the <code>payment_method</code> needs to dictate that. eg. <code>payment_method = 'credit'</code>. If a specific payment method is specified, the payment source also needs to be specified using the <code>payment_source_reference</code> parameter. When a user adds a payment method to their account, these properties will be available on the user object.</p>\n","urlObject":{"path":["job"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"dd7f8ee0-f733-4563-9cac-7ec67911c6e9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"phone","value":"2222222222","description":"required","type":"text"},{"key":"phone_country","value":"US","description":"2-character ISO 3166-1 region code (e.g. 'SE' for Sweden, 'US' for United States)","type":"text"},{"key":"contact_name","value":"Contact Name","description":"optional, name of the person booking the job","type":"text","disabled":true},{"key":"pickup_date","value":"2021-04-26T08:59:13+0000","description":"Full ISO date format including timezone offset of when this job needs to be fulfilled. A date in the future will flag this job as a reservation","type":"text","disabled":true},{"key":"car_type","value":"100","description":"Array of car types the user has requested","type":"text"},{"key":"internal_notes","value":"Doorbell doesnt work","description":"optional, notes that do not get shown to the customer","type":"text"},{"key":"stops[0][address]","value":"123 West Ave","description":"optional","type":"text","disabled":true},{"key":"stops[0][city]","value":"New York","description":"optional","type":"text","disabled":true},{"key":"stops[0][state]","value":"New York","description":"optional","type":"text","disabled":true},{"key":"stops[0][postal_code]","value":"","description":"optional","type":"text","disabled":true},{"key":"stops[0][latitude]","value":"40.72822","description":"required","type":"text","disabled":true},{"key":"stops[0][longitude]","value":"-73.70667000000003","description":"required","type":"text","disabled":true},{"key":"stops[0][long_name]","value":"!23 West Ave New York, NY","description":"required","type":"text"},{"key":"stops[0][short_name]","value":"!23 West Ave NY","description":"required","type":"text","disabled":true},{"key":"stops[0][country]","value":"US","description":"required","type":"text","disabled":true},{"key":"stops[0][type]","value":"pickup","description":"required, `pickup` or`dropoff`","type":"text"},{"key":"stops[0][notes]","value":"stop notes","description":"optional","type":"text","disabled":true},{"key":"stops[0][arrival_date]","value":"2020-01-28T17:51:00-04:00","description":"Full ISO date format including timezone offset of when this job needs to be fulfilled. A date in the future will flag this job as a reservation","type":"text"},{"key":"stops[0][location_id]","value":"1234","description":"Optional location_id for this stop as returned from /location/details when using autocomplete","type":"text","disabled":true},{"key":"stops[0][apartment_number]","value":"123A","description":"Optional, will override whatever google recognizes as apartment number for this stop","type":"text","disabled":true},{"key":"stops[1][address]","value":"330 Old Country Road","description":"optional","type":"text","disabled":true},{"key":"stops[1][city]","value":"Mineola","description":"optional","type":"text","disabled":true},{"key":"stops[1][state]","value":"New York","description":"optional","type":"text","disabled":true},{"key":"stops[1][postal_code]","value":"11501","description":"optional","type":"text","disabled":true},{"key":"stops[1][latitude]","value":"40.7382953","description":"required","type":"text","disabled":true},{"key":"stops[1][longitude]","value":"-73.64537630000001","description":"required","type":"text","disabled":true},{"key":"stops[1][long_name]","value":"222 West Ave New York, NY","description":"required","type":"text"},{"key":"stops[1][short_name]","value":"222 West Ave ","description":"required","type":"text","disabled":true},{"key":"stops[1][country]","value":"US","description":"required","type":"text","disabled":true},{"key":"stops[1][type]","value":"dropoff","description":"`pickup` or `dropoff`","type":"text"},{"key":"stops[1][contact_name]","value":"Contact Name","description":"optional","type":"text","disabled":true},{"key":"stops[1][contact_phone]","value":"3333333333","description":"optional","type":"text","disabled":true},{"key":"stops[1][arrival_date]","value":"2021-04-28T17:51:00-04:00","description":"required","type":"text"},{"key":"stops[1][location_id]","value":"1234","description":"Optional location_id for this stop as returned from /location/details when using autocomplete","type":"text","disabled":true},{"key":"items[0][id]","value":"123","description":"Optional, Items structure is defined in the company settings as an 'job_item_structure'. For example: {\"id\":1,\"qty\":1,\"name\":0}. The key is the key in the item structure and the value is if its required or not. For this structure id would be required, qty would be required and name would be optional for each item object in the array","type":"text","disabled":true},{"key":"items[0][qty]","value":"123","description":"Optional, Items structure is defined in the company settings as an 'job_item_structure'. For example: {\"id\":1,\"qty\":1,\"name\":0}. The key is the key in the item structure and the value is if its required or not. For this structure id would be required, qty would be required and name would be optional for each item object in the array","type":"text","disabled":true},{"key":"items[0][name]","value":"123","description":"Optional, Items structure is defined in the company settings as an 'job_item_structure'. For example: {\"id\":1,\"qty\":1,\"name\":0}. The key is the key in the item structure and the value is if its required or not. For this structure id would be required, qty would be required and name would be optional for each item object in the array","type":"text","disabled":true},{"key":"payment_method","value":"cash","description":"Optional - `credit`, `account`, `cash`, `thirdparty`, `prepaid`","type":"text"},{"key":"driver_notes","value":"","description":"Notes that the driver will see","type":"text"},{"key":"external_data","value":"{\"somekey\":\"someval\",\"otherkey\":\"otherval\",\"nested\":{\"nestedkey\":\"nestedval\"}}","description":"Used to store any third party data in JSON format. This data is not queryable and is not used by the software in anyway","type":"text"},{"key":"attachments","description":"Upload attachments to the job","type":"file","src":[],"disabled":true},{"key":"attachments_meta[0][title]","value":"title","description":"Add meta data for each attachment. Must be in the same order as `attachments`","type":"text","disabled":true},{"key":"attachments_meta[0][description]","value":"description","type":"text","disabled":true},{"key":"external_source","value":"external_platform","description":"Optional. Field to define the name of an external platform that this job was created in. Can only contain lowercase a-z, 0-9 and '_' characters and a maximum of 255 characters. All invalid characters will be removed","type":"text","disabled":true},{"key":"external_id","value":"124ABD","description":"Optional. Unique identifier that matches the id of the job in the platform it was created in. If this field and external source is set jobs will not be created if this id already exists in our system. Can only contain lowercase a-z, 0-9 and '_' characters and a maximum of 255 characters. All invalid characters will be removed","type":"text","disabled":true},{"key":"payment_confirmation","value":"","description":"Optional. Must be sent if job is a credit payment_method and the payment was authenticated using a 3D secure flow.\nThis can be found on the payment_object.id returned from the Payment/ Get Payment Object endpoint","type":"text","disabled":true},{"key":"payment_processor","value":"stripe_3ds2","description":"Optional. Must be sent if job is a credit payment_method and the payment was authenticated using a 3D secure flow","type":"text","disabled":true},{"key":"actual_price","value":"25.00","description":"Optional. Used to set the price on a Job that will not be overridden by pricing configurations in the system","type":"text"}]},"url":"{{host}}/job"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"19270"},{"key":"ETag","value":"W/\"4b46-jZ5LV1mbgUzwB0wYSIQUYtbEQYQ\""},{"key":"Date","value":"Thu, 29 Apr 2021 15:04:17 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174823,\n        \"job_number\": 13,\n        \"origin_job_number\": null,\n        \"hash\": \"rm2vRWXGr\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": null,\n        \"pickup_location_id\": 388593,\n        \"actual_pickup_location_id\": null,\n        \"dropoff_location_id\": 388592,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388593,\n            \"address\": \"23 West Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n            \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n            \"latitude\": 40.58173,\n            \"longitude\": -73.9678,\n            \"date_created\": \"2021-04-28 17:39:54\",\n            \"date_updated\": \"2021-04-28 17:39:54\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388592,\n            \"address\": \"222 West Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n            \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n            \"latitude\": 40.58165,\n            \"longitude\": -73.96903,\n            \"date_created\": \"2021-04-28 17:39:16\",\n            \"date_updated\": \"2021-04-28 17:39:16\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2020-01-28 21:51:00\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 1,\n        \"in_progress_date\": null,\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"\",\n        \"internal_notes\": \"Doorbell doesnt work\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": 964,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 25,\n        \"price_override_flag\": 1,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-29 15:04:15\",\n        \"date_updated\": \"2021-04-29 15:04:15\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": {\n            \"somekey\": \"someval\",\n            \"otherkey\": \"otherval\",\n            \"nested\": {\n                \"nestedkey\": \"nestedval\"\n            }\n        },\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": null,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"summary\": \"null null null null\"\n        },\n        \"driver_assigned_to_vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null\n        },\n        \"vehicle_car_type\": {\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"driver_base\": {\n            \"base_id\": null,\n            \"name\": null\n        },\n        \"driver_car_type\": {\n            \"vehicle_id\": null,\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"job_status\": {\n            \"status_id\": 1,\n            \"name\": \"Pending\",\n            \"slug\": \"pending\",\n            \"order\": 10\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 964,\n            \"first_name\": \"LD\",\n            \"last_name\": \"Admin\",\n            \"email\": \"info@liverydesk.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 1,\n            \"name\": \"Pending\",\n            \"slug\": \"pending\",\n            \"order\": 10\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 25,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 25,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 25,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/rm2vRWXGr\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909338,\n                \"company_id\": 100,\n                \"job_id\": 2174823,\n                \"location_id\": 388593,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2020-01-29 02:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-29 15:04:16\",\n                \"date_updated\": \"2021-04-29 15:04:17\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 234,\n                \"duration_to_next_stop_seconds\": 374,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388593,\n                    \"address\": \"23 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58173,\n                    \"longitude\": -73.9678,\n                    \"date_created\": \"2021-04-28 17:39:54\",\n                    \"date_updated\": \"2021-04-28 17:39:54\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4250,\n                        \"company_id\": 100,\n                        \"job_id\": 2174823,\n                        \"job_stop_id\": 3909338,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-29 15:04:16\",\n                        \"date_updated\": \"2021-04-29 15:04:16\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4251,\n                        \"company_id\": 100,\n                        \"job_id\": 2174823,\n                        \"job_stop_id\": 3909338,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-29 15:04:16\",\n                        \"date_updated\": \"2021-04-29 15:04:16\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            {\n                \"job_stop_id\": 3909339,\n                \"company_id\": 100,\n                \"job_id\": 2174823,\n                \"location_id\": 388592,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-29 15:04:16\",\n                \"date_updated\": \"2021-04-29 15:04:17\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 234,\n                \"duration_from_previous_stop_seconds\": 374,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-29T15:05:27Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388592,\n                    \"address\": \"222 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58165,\n                    \"longitude\": -73.96903,\n                    \"date_created\": \"2021-04-28 17:39:16\",\n                    \"date_updated\": \"2021-04-28 17:39:16\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            }\n        ],\n        \"current_stop\": {\n            \"job_stop_id\": 3909338,\n            \"company_id\": 100,\n            \"job_id\": 2174823,\n            \"location_id\": 388593,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2020-01-29 02:51:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-29 15:04:16\",\n            \"date_updated\": \"2021-04-29 15:04:17\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 234,\n            \"duration_to_next_stop_seconds\": 374,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388593,\n                \"address\": \"23 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58173,\n                \"longitude\": -73.9678,\n                \"date_created\": \"2021-04-28 17:39:54\",\n                \"date_updated\": \"2021-04-28 17:39:54\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4250,\n                    \"company_id\": 100,\n                    \"job_id\": 2174823,\n                    \"job_stop_id\": 3909338,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"confirmation\",\n                        \"display\": \"Confirmation\",\n                        \"has_attachment\": 1,\n                        \"has_body\": true,\n                        \"attachment_name\": \"Signature\",\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"require_notes\": {\n                                \"id\": \"require_notes\",\n                                \"display\": \"Requires Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"show_notes\": {\n                                \"id\": \"show_notes\",\n                                \"display\": \"Show Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Confirmation\",\n                    \"description\": \"Accept this confirmation\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"show_notes\": 1,\n                            \"require_notes\": 1,\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-29 15:04:16\",\n                    \"date_updated\": \"2021-04-29 15:04:16\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": \"Do you accept?\"\n                },\n                {\n                    \"job_stop_action_id\": 4251,\n                    \"company_id\": 100,\n                    \"job_id\": 2174823,\n                    \"job_stop_id\": 3909338,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"order_acknowledgement\",\n                        \"display\": \"Order Acknowledgement\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\",\n                        \"item_statuses\": {\n                            \"rejected\": {\n                                \"id\": \"rejected\",\n                                \"display\": \"Rejected\"\n                            },\n                            \"accepted\": {\n                                \"id\": \"accepted\",\n                                \"display\": \"Accepted\"\n                            }\n                        },\n                        \"rejection_reasons\": {\n                            \"lost_or_damaged\": {\n                                \"id\": \"lost_or_damaged\",\n                                \"display\": \"Lost or Damaged\",\n                                \"order\": 1\n                            },\n                            \"wrong_quantity\": {\n                                \"id\": \"wrong_quantity\",\n                                \"display\": \"Wrong Quantity\",\n                                \"order\": 2\n                            },\n                            \"other\": {\n                                \"id\": \"other\",\n                                \"display\": \"Other\",\n                                \"order\": 3\n                            }\n                        },\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 2,\n                    \"button_text\": \"Order Acknowledgement\",\n                    \"description\": \"Order Acknowledgement\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-29 15:04:16\",\n                    \"date_updated\": \"2021-04-29 15:04:16\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": null\n        },\n        \"next_stop\": {\n            \"job_stop_id\": 3909339,\n            \"company_id\": 100,\n            \"job_id\": 2174823,\n            \"location_id\": 388592,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2021-04-29 01:51:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-29 15:04:16\",\n            \"date_updated\": \"2021-04-29 15:04:17\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 234,\n            \"duration_from_previous_stop_seconds\": 374,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-29T15:05:27Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388592,\n                \"address\": \"222 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58165,\n                \"longitude\": -73.96903,\n                \"date_created\": \"2021-04-28 17:39:16\",\n                \"date_updated\": \"2021-04-28 17:39:16\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            }\n        },\n        \"previous_stop\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"5dbe606c-e128-417f-b5af-43c484317f71"},{"name":"Create job (Not Authenticated)","id":"25cf5582-582a-4fb8-aaf0-79f2b42d0687","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"phone","value":"2222222222","description":"<p>optional</p>\n","type":"text"},{"key":"phone_country","value":"US","description":"<p>optional</p>\n","type":"text"},{"key":"contact_name","value":"Contact Name","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"pickup_date","value":"2021-04-26T08:59:13+0000","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"car_type","value":"100","description":"<p>optional</p>\n","type":"text"},{"key":"internal_notes","value":"Doorbell doesnt work","description":"<p>optional</p>\n","type":"text"},{"key":"stops[0][address]","value":"123 West Ave","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][city]","value":"New York","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][state]","value":"New York","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][postal_code]","value":"","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][latitude]","value":"40.72822","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][longitude]","value":"-73.70667000000003","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][long_name]","value":"!23 West Ave New York, NY","description":"<p>Full ISO date format including timezone offset of when this job needs to be fulfilled. A date in the future will flag this job as a reservation</p>\n","type":"text"},{"key":"stops[0][short_name]","value":"!23 West Ave NY","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[0][country]","value":"US","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[0][type]","value":"pickup","description":"<p>optional</p>\n","type":"text"},{"key":"stops[0][notes]","value":"stop notes","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[0][arrival_date]","value":"2020-01-28T17:51:00-04:00","description":"<p>optional</p>\n","type":"text"},{"key":"stops[0][location_id]","value":"1234","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[0][apartment_number]","value":"123A","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][address]","value":"330 Old Country Road","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][city]","value":"Mineola","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][state]","value":"New York","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][postal_code]","value":"11501","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][latitude]","value":"40.7382953","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[1][longitude]","value":"-73.64537630000001","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"stops[1][long_name]","value":"222 West Ave New York, NY","description":"<p>required</p>\n","type":"text"},{"key":"stops[1][short_name]","value":"222 West Ave ","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][country]","value":"US","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][type]","value":"dropoff","description":"<p>required</p>\n","type":"text"},{"key":"stops[1][contact_name]","value":"Contact Name","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][contact_phone]","value":"3333333333","description":"<p>required</p>\n","type":"text","disabled":true},{"key":"stops[1][arrival_date]","value":"2021-04-28T17:51:00-04:00","description":"<p>Optional</p>\n","type":"text"},{"key":"stops[1][location_id]","value":"1234","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"items[0][id]","value":"123","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"items[0][qty]","value":"123","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"items[0][name]","value":"123","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"payment_method","value":"cash","description":"<p>Used to store any third party data in JSON format</p>\n","type":"text"},{"key":"driver_notes","value":"","description":"<p>Optional. Field to define the name of an external platform that this job was created in. Can only contain lowercase a-z, 0-9 and '_' characters and a maximum of 255 characters. All invalid characters will be removed</p>\n","type":"text"},{"key":"external_data","value":"{\"somekey\":\"someval\",\"otherkey\":\"otherval\",\"nested\":{\"nestedkey\":\"nestedval\"}}","description":"<p>Optional. Unique identifier that matches the id of the job in the platform it was created in. If this field and external source is set jobs will not be created if this id already exists in our system. Can only contain lowercase a-z, 0-9 and '_' characters and a maximum of 255 characters. All invalid characters will be removed</p>\n","type":"text"},{"key":"attachments_meta[0][title]","value":"title","description":"<p>required. cash, credit, account, prepaid</p>\n","type":"text","disabled":true},{"key":"attachments_meta[0][description]","value":"description","description":"<p>Used to set a price on the job when creating. Setting this value will prevent the system from doing any price calculations</p>\n","type":"text","disabled":true},{"key":"external_source","value":"external_platform","type":"text","disabled":true},{"key":"external_id","value":"124ABD","type":"text","disabled":true},{"key":"payment_confirmation","value":"","type":"text","disabled":true},{"key":"payment_processor","value":"stripe_3ds2","type":"text","disabled":true},{"key":"actual_price","value":"25.00","type":"text"},{"key":"first_name","value":"guest","type":"text"},{"key":"last_name","value":"user","type":"text"},{"key":"email","value":"guestuser@test.com","type":"text"},{"key":"card_number","value":"4242424242424242","type":"text","disabled":true},{"key":"card_cvc","value":"123","type":"text","disabled":true},{"key":"card_expiration_month","value":"12","type":"text","disabled":true},{"key":"card_expiration_year","value":"23","type":"text","disabled":true},{"key":"card_address_zip","value":"11010","type":"text","disabled":true},{"key":"external_data","value":"{\"somekey\":\"someval\",\"otherkey\":\"otherval\"}","type":"text","disabled":true},{"key":"external_source","value":"example_source","type":"text","disabled":true},{"key":"external_id","value":"123unique","type":"text","disabled":true},{"key":"payment_method","value":"cash","type":"text","disabled":true},{"key":"actual_price","value":"123","type":"text","disabled":true}]},"url":"{{host}}/job","urlObject":{"path":["job"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f87d9f5f-9248-45a4-a2d2-92e0f4af7244","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"phone","value":"2222222222","description":"optional","type":"text"},{"key":"phone_country","value":"US","description":"optional","type":"text"},{"key":"contact_name","value":"Contact Name","description":"optional","type":"text","disabled":true},{"key":"pickup_date","value":"2021-04-26T08:59:13+0000","description":"optional","type":"text","disabled":true},{"key":"car_type","value":"100","description":"optional","type":"text"},{"key":"internal_notes","value":"Doorbell doesnt work","description":"optional","type":"text"},{"key":"stops[0][address]","value":"123 West Ave","description":"required","type":"text","disabled":true},{"key":"stops[0][city]","value":"New York","description":"required","type":"text","disabled":true},{"key":"stops[0][state]","value":"New York","description":"required","type":"text","disabled":true},{"key":"stops[0][postal_code]","value":"","description":"required","type":"text","disabled":true},{"key":"stops[0][latitude]","value":"40.72822","description":"required","type":"text","disabled":true},{"key":"stops[0][longitude]","value":"-73.70667000000003","description":"required","type":"text","disabled":true},{"key":"stops[0][long_name]","value":"!23 West Ave New York, NY","description":"Full ISO date format including timezone offset of when this job needs to be fulfilled. A date in the future will flag this job as a reservation","type":"text"},{"key":"stops[0][short_name]","value":"!23 West Ave NY","description":"optional","type":"text","disabled":true},{"key":"stops[0][country]","value":"US","description":"optional","type":"text","disabled":true},{"key":"stops[0][type]","value":"pickup","description":"optional","type":"text"},{"key":"stops[0][notes]","value":"stop notes","description":"optional","type":"text","disabled":true},{"key":"stops[0][arrival_date]","value":"2020-01-28T17:51:00-04:00","description":"optional","type":"text"},{"key":"stops[0][location_id]","value":"1234","description":"required","type":"text","disabled":true},{"key":"stops[0][apartment_number]","value":"123A","description":"required","type":"text","disabled":true},{"key":"stops[1][address]","value":"330 Old Country Road","description":"required","type":"text","disabled":true},{"key":"stops[1][city]","value":"Mineola","description":"required","type":"text","disabled":true},{"key":"stops[1][state]","value":"New York","description":"required","type":"text","disabled":true},{"key":"stops[1][postal_code]","value":"11501","description":"required","type":"text","disabled":true},{"key":"stops[1][latitude]","value":"40.7382953","description":"optional","type":"text","disabled":true},{"key":"stops[1][longitude]","value":"-73.64537630000001","description":"optional","type":"text","disabled":true},{"key":"stops[1][long_name]","value":"222 West Ave New York, NY","description":"required","type":"text"},{"key":"stops[1][short_name]","value":"222 West Ave ","description":"required","type":"text","disabled":true},{"key":"stops[1][country]","value":"US","description":"required","type":"text","disabled":true},{"key":"stops[1][type]","value":"dropoff","description":"required","type":"text"},{"key":"stops[1][contact_name]","value":"Contact Name","description":"required","type":"text","disabled":true},{"key":"stops[1][contact_phone]","value":"3333333333","description":"required","type":"text","disabled":true},{"key":"stops[1][arrival_date]","value":"2021-04-28T17:51:00-04:00","description":"Optional","type":"text"},{"key":"stops[1][location_id]","value":"1234","description":"Optional","type":"text","disabled":true},{"key":"items[0][id]","value":"123","description":"Optional","type":"text","disabled":true},{"key":"items[0][qty]","value":"123","description":"Optional","type":"text","disabled":true},{"key":"items[0][name]","value":"123","description":"Optional","type":"text","disabled":true},{"key":"payment_method","value":"cash","description":"Used to store any third party data in JSON format","type":"text"},{"key":"driver_notes","value":"","description":"Optional. Field to define the name of an external platform that this job was created in. Can only contain lowercase a-z, 0-9 and '_' characters and a maximum of 255 characters. All invalid characters will be removed","type":"text"},{"key":"external_data","value":"{\"somekey\":\"someval\",\"otherkey\":\"otherval\",\"nested\":{\"nestedkey\":\"nestedval\"}}","description":"Optional. Unique identifier that matches the id of the job in the platform it was created in. If this field and external source is set jobs will not be created if this id already exists in our system. Can only contain lowercase a-z, 0-9 and '_' characters and a maximum of 255 characters. All invalid characters will be removed","type":"text"},{"key":"attachments_meta[0][title]","value":"title","description":"required. cash, credit, account, prepaid","type":"text","disabled":true},{"key":"attachments_meta[0][description]","value":"description","description":"Used to set a price on the job when creating. Setting this value will prevent the system from doing any price calculations","type":"text","disabled":true},{"key":"external_source","value":"external_platform","type":"text","disabled":true},{"key":"external_id","value":"124ABD","type":"text","disabled":true},{"key":"payment_confirmation","value":"","type":"text","disabled":true},{"key":"payment_processor","value":"stripe_3ds2","type":"text","disabled":true},{"key":"actual_price","value":"25.00","type":"text"},{"key":"first_name","value":"guest","type":"text"},{"key":"last_name","value":"user","type":"text"},{"key":"email","value":"guestuser@test.com","type":"text"},{"key":"card_number","value":"4242424242424242","type":"text","disabled":true},{"key":"card_cvc","value":"123","type":"text","disabled":true},{"key":"card_expiration_month","value":"12","type":"text","disabled":true},{"key":"card_expiration_year","value":"23","type":"text","disabled":true},{"key":"card_address_zip","value":"11010","type":"text","disabled":true},{"key":"external_data","value":"{\"somekey\":\"someval\",\"otherkey\":\"otherval\"}","type":"text","disabled":true},{"key":"external_source","value":"example_source","type":"text","disabled":true},{"key":"external_id","value":"123unique","type":"text","disabled":true},{"key":"payment_method","value":"cash","type":"text","disabled":true},{"key":"actual_price","value":"123","type":"text","disabled":true}]},"url":"{{host}}/job"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"20345"},{"key":"ETag","value":"W/\"4f79-pK7eHsQ7J+vA5CzdB7Ix/ingp1Y\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:45:06 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174820,\n        \"job_number\": 10,\n        \"origin_job_number\": null,\n        \"hash\": \"MvDf8wP58\",\n        \"user_id\": 314,\n        \"contact_name\": \"guest user\",\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": null,\n        \"pickup_location_id\": 388593,\n        \"actual_pickup_location_id\": null,\n        \"dropoff_location_id\": 388592,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388593,\n            \"address\": \"23 West Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n            \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n            \"latitude\": 40.58173,\n            \"longitude\": -73.9678,\n            \"date_created\": \"2021-04-28 17:39:54\",\n            \"date_updated\": \"2021-04-28 17:39:54\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388592,\n            \"address\": \"222 West Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n            \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n            \"latitude\": 40.58165,\n            \"longitude\": -73.96903,\n            \"date_created\": \"2021-04-28 17:39:16\",\n            \"date_updated\": \"2021-04-28 17:39:16\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2020-01-28 21:51:00\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 1,\n        \"in_progress_date\": null,\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"\",\n        \"internal_notes\": \"Doorbell doesnt work\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": null,\n        \"updated_by_employee_id\": null,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 25,\n        \"price_override_flag\": 1,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-28 17:45:04\",\n        \"date_updated\": \"2021-04-28 17:45:04\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": {\n            \"somekey\": \"someval\",\n            \"otherkey\": \"otherval\",\n            \"nested\": {\n                \"nestedkey\": \"nestedval\"\n            }\n        },\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": null,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"summary\": \"null null null null\"\n        },\n        \"driver_assigned_to_vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null\n        },\n        \"vehicle_car_type\": {\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"driver_base\": {\n            \"base_id\": null,\n            \"name\": null\n        },\n        \"driver_car_type\": {\n            \"vehicle_id\": null,\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"job_status\": {\n            \"status_id\": 1,\n            \"name\": \"Pending\",\n            \"slug\": \"pending\",\n            \"order\": 10\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"user\": {\n            \"user_id\": 314,\n            \"company_id\": 100,\n            \"password\": \"$2b$08$XhNFECrRtmsqZKrxVzKPC.XrB0ub6MlWdZwl5Ow7xjfLnO5uteS8S\",\n            \"hash\": \"Z9looaL9fw\",\n            \"email\": \"guestuser@test.com\",\n            \"device_id\": null,\n            \"first_name\": \"guest\",\n            \"last_name\": \"user\",\n            \"location_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"role_name\": \"registered-user\",\n            \"facebook_id\": null,\n            \"gender\": null,\n            \"is_active\": 1,\n            \"timezone\": null,\n            \"locale\": null,\n            \"notification_sandbox\": 0,\n            \"image_stored_name\": null,\n            \"image_original_name\": null,\n            \"image_thumb_stored_name\": null,\n            \"image_extension\": null,\n            \"image_size\": null,\n            \"password_reset_hash\": null,\n            \"password_reset_client_hash\": null,\n            \"password_reset_hash_date\": null,\n            \"payment_processor\": null,\n            \"payment_processor_id\": null,\n            \"payment_processor_card_id\": null,\n            \"card_last_4\": null,\n            \"card_address_line1\": null,\n            \"card_address_line2\": null,\n            \"card_address_city\": null,\n            \"card_address_state\": null,\n            \"card_address_zip\": null,\n            \"card_address_country\": null,\n            \"date_created\": \"2021-04-28 17:45:00\",\n            \"date_updated\": \"2021-04-28 17:45:00\",\n            \"last_login_date\": null,\n            \"phone_verified\": null,\n            \"phone_verification_code\": null,\n            \"phone_verified_date\": null,\n            \"picture\": null,\n            \"average_rating\": 0,\n            \"number_of_ratings\": 0,\n            \"payment_methods\": null,\n            \"user_agents\": null,\n            \"transaction_balance\": 0,\n            \"recruiter_entity_id\": null,\n            \"recruiter_entity_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"default_payment_method\": null\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 1,\n            \"name\": \"Pending\",\n            \"slug\": \"pending\",\n            \"order\": 10\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 25,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 25,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 25,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/MvDf8wP58\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909331,\n                \"company_id\": 100,\n                \"job_id\": 2174820,\n                \"location_id\": 388593,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2020-01-29 02:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:04\",\n                \"date_updated\": \"2021-04-28 17:45:06\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 234,\n                \"duration_to_next_stop_seconds\": 374,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388593,\n                    \"address\": \"23 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58173,\n                    \"longitude\": -73.9678,\n                    \"date_created\": \"2021-04-28 17:39:54\",\n                    \"date_updated\": \"2021-04-28 17:39:54\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4242,\n                        \"company_id\": 100,\n                        \"job_id\": 2174820,\n                        \"job_stop_id\": 3909331,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:05\",\n                        \"date_updated\": \"2021-04-28 17:45:05\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4243,\n                        \"company_id\": 100,\n                        \"job_id\": 2174820,\n                        \"job_stop_id\": 3909331,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:05\",\n                        \"date_updated\": \"2021-04-28 17:45:05\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            {\n                \"job_stop_id\": 3909330,\n                \"company_id\": 100,\n                \"job_id\": 2174820,\n                \"location_id\": 388592,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:04\",\n                \"date_updated\": \"2021-04-28 17:45:06\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 234,\n                \"duration_from_previous_stop_seconds\": 374,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T17:46:16Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388592,\n                    \"address\": \"222 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58165,\n                    \"longitude\": -73.96903,\n                    \"date_created\": \"2021-04-28 17:39:16\",\n                    \"date_updated\": \"2021-04-28 17:39:16\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            }\n        ],\n        \"current_stop\": {\n            \"job_stop_id\": 3909331,\n            \"company_id\": 100,\n            \"job_id\": 2174820,\n            \"location_id\": 388593,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2020-01-29 02:51:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:45:04\",\n            \"date_updated\": \"2021-04-28 17:45:06\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 234,\n            \"duration_to_next_stop_seconds\": 374,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388593,\n                \"address\": \"23 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58173,\n                \"longitude\": -73.9678,\n                \"date_created\": \"2021-04-28 17:39:54\",\n                \"date_updated\": \"2021-04-28 17:39:54\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4242,\n                    \"company_id\": 100,\n                    \"job_id\": 2174820,\n                    \"job_stop_id\": 3909331,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"confirmation\",\n                        \"display\": \"Confirmation\",\n                        \"has_attachment\": 1,\n                        \"has_body\": true,\n                        \"attachment_name\": \"Signature\",\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"require_notes\": {\n                                \"id\": \"require_notes\",\n                                \"display\": \"Requires Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"show_notes\": {\n                                \"id\": \"show_notes\",\n                                \"display\": \"Show Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Confirmation\",\n                    \"description\": \"Accept this confirmation\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"show_notes\": 1,\n                            \"require_notes\": 1,\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:45:05\",\n                    \"date_updated\": \"2021-04-28 17:45:05\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": \"Do you accept?\"\n                },\n                {\n                    \"job_stop_action_id\": 4243,\n                    \"company_id\": 100,\n                    \"job_id\": 2174820,\n                    \"job_stop_id\": 3909331,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"order_acknowledgement\",\n                        \"display\": \"Order Acknowledgement\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\",\n                        \"item_statuses\": {\n                            \"rejected\": {\n                                \"id\": \"rejected\",\n                                \"display\": \"Rejected\"\n                            },\n                            \"accepted\": {\n                                \"id\": \"accepted\",\n                                \"display\": \"Accepted\"\n                            }\n                        },\n                        \"rejection_reasons\": {\n                            \"lost_or_damaged\": {\n                                \"id\": \"lost_or_damaged\",\n                                \"display\": \"Lost or Damaged\",\n                                \"order\": 1\n                            },\n                            \"wrong_quantity\": {\n                                \"id\": \"wrong_quantity\",\n                                \"display\": \"Wrong Quantity\",\n                                \"order\": 2\n                            },\n                            \"other\": {\n                                \"id\": \"other\",\n                                \"display\": \"Other\",\n                                \"order\": 3\n                            }\n                        },\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 2,\n                    \"button_text\": \"Order Acknowledgement\",\n                    \"description\": \"Order Acknowledgement\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:45:05\",\n                    \"date_updated\": \"2021-04-28 17:45:05\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": null\n        },\n        \"next_stop\": {\n            \"job_stop_id\": 3909330,\n            \"company_id\": 100,\n            \"job_id\": 2174820,\n            \"location_id\": 388592,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2021-04-29 01:51:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:45:04\",\n            \"date_updated\": \"2021-04-28 17:45:06\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 234,\n            \"duration_from_previous_stop_seconds\": 374,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T17:46:16Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388592,\n                \"address\": \"222 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58165,\n                \"longitude\": -73.96903,\n                \"date_created\": \"2021-04-28 17:39:16\",\n                \"date_updated\": \"2021-04-28 17:39:16\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            }\n        },\n        \"previous_stop\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"25cf5582-582a-4fb8-aaf0-79f2b42d0687"},{"name":"Create job - JSON Payload","id":"f8cc307c-0aa6-4472-bbd8-219d370a8112","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"stops\": [\n        {\n            \"type\": \"pickup\",\n            \"address\": \"123 William St\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"10038\",\n            \"country\": \"US\",\n            \"long_name\": \"123 William St, New York, NY 10038, USA\",\n            \"short_name\": \"123 William St, New York, NY 10038, USA\",\n            \"latitude\": 40.70933,\n            \"longitude\": -74.00696,\n            \"apartment_number\": null,\n            \"arrival_date\": \"2019-07-08T16:18:00+01:00\"\n        },\n        {\n            \"type\": \"dropoff\",\n            \"address\": \"444 Madison Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"10022\",\n            \"country\": \"US\",\n            \"long_name\": \"444 Madison Ave, New York, NY 10022, USA\",\n            \"short_name\": \"444 Madison Ave, New York, NY 10022, USA\",\n            \"latitude\": 40.75769,\n            \"longitude\": -73.97606,\n            \"arrival_date\": \"2019-07-08T16:18:00+01:00\"\n        }\n    ],\n    \"phone\": \"2222222222\",\n    \"contact_name\": null,\n    \"phone_country\": \"US\"\n\n}"},"url":"{{host}}/job","urlObject":{"path":["job"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d7bc1742-65df-4b57-a86d-162a2e993e9c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"stops\": [\n        {\n            \"type\": \"pickup\",\n            \"address\": \"123 William St\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"10038\",\n            \"country\": \"US\",\n            \"long_name\": \"123 William St, New York, NY 10038, USA\",\n            \"short_name\": \"123 William St, New York, NY 10038, USA\",\n            \"latitude\": 40.70933,\n            \"longitude\": -74.00696,\n            \"apartment_number\": null,\n            \"arrival_date\": \"2019-07-08T16:18:00+01:00\"\n        },\n        {\n            \"type\": \"dropoff\",\n            \"address\": \"444 Madison Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"10022\",\n            \"country\": \"US\",\n            \"long_name\": \"444 Madison Ave, New York, NY 10022, USA\",\n            \"short_name\": \"444 Madison Ave, New York, NY 10022, USA\",\n            \"latitude\": 40.75769,\n            \"longitude\": -73.97606,\n            \"arrival_date\": \"2019-07-08T16:18:00+01:00\"\n        }\n    ],\n    \"phone\": \"2222222222\",\n    \"contact_name\": null,\n    \"phone_country\": \"US\"\n\n}"},"url":"{{host}}/job"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"19249"},{"key":"ETag","value":"W/\"4b31-Hew1UYzOH95YyaMuyc1abXZGOb4\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:45:56 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174821,\n        \"job_number\": 11,\n        \"origin_job_number\": null,\n        \"hash\": \"h8I1gzE1O\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": null,\n        \"pickup_location_id\": 388163,\n        \"actual_pickup_location_id\": null,\n        \"dropoff_location_id\": 388171,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388163,\n            \"address\": \"123 William St\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"10038\",\n            \"country\": \"US\",\n            \"long_name\": \"123 William St, New York, NY 10038, United States\",\n            \"short_name\": \"123 William St, New York, NY 10038, United States\",\n            \"latitude\": 40.70922,\n            \"longitude\": -74.00689,\n            \"date_created\": \"2019-11-07 16:26:36\",\n            \"date_updated\": \"2020-02-05 17:06:28\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388171,\n            \"address\": \"444 Madison Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"10022\",\n            \"country\": \"US\",\n            \"long_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n            \"short_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n            \"latitude\": 40.75768,\n            \"longitude\": -73.97591,\n            \"date_created\": \"2019-11-11 20:55:22\",\n            \"date_updated\": \"2020-02-05 17:06:28\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"b8b0f02b3eca3169f328f55580bdb51e\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2019-07-08 15:18:00\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 1,\n        \"in_progress_date\": null,\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"\",\n        \"internal_notes\": \"\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": 964,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": null,\n        \"price_override_flag\": 0,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-28 17:45:54\",\n        \"date_updated\": \"2021-04-28 17:45:54\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": null,\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": null,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"summary\": \"null null null null\"\n        },\n        \"driver_assigned_to_vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null\n        },\n        \"vehicle_car_type\": {\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"driver_base\": {\n            \"base_id\": null,\n            \"name\": null\n        },\n        \"driver_car_type\": {\n            \"vehicle_id\": null,\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"job_status\": {\n            \"status_id\": 1,\n            \"name\": \"Pending\",\n            \"slug\": \"pending\",\n            \"order\": 10\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 964,\n            \"first_name\": \"LD\",\n            \"last_name\": \"Admin\",\n            \"email\": \"info@liverydesk.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 1,\n            \"name\": \"Pending\",\n            \"slug\": \"pending\",\n            \"order\": 10\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 0,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 0,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/h8I1gzE1O\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909332,\n                \"company_id\": 100,\n                \"job_id\": 2174821,\n                \"location_id\": 388163,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2019-07-08 19:18:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:54\",\n                \"date_updated\": \"2021-04-28 17:45:56\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 8813,\n                \"duration_to_next_stop_seconds\": 1362,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388163,\n                    \"address\": \"123 William St\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10038\",\n                    \"country\": \"US\",\n                    \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"latitude\": 40.70922,\n                    \"longitude\": -74.00689,\n                    \"date_created\": \"2019-11-07 16:26:36\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4244,\n                        \"company_id\": 100,\n                        \"job_id\": 2174821,\n                        \"job_stop_id\": 3909332,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:55\",\n                        \"date_updated\": \"2021-04-28 17:45:55\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4245,\n                        \"company_id\": 100,\n                        \"job_id\": 2174821,\n                        \"job_stop_id\": 3909332,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:55\",\n                        \"date_updated\": \"2021-04-28 17:45:55\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            {\n                \"job_stop_id\": 3909333,\n                \"company_id\": 100,\n                \"job_id\": 2174821,\n                \"location_id\": 388171,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2019-07-08 19:18:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:54\",\n                \"date_updated\": \"2021-04-28 17:45:56\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 8813,\n                \"duration_from_previous_stop_seconds\": 1362,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.75768,\\\"lng\\\":-73.97591,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T18:03:34Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":8813,\\\"time\\\":1062,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388171,\n                    \"address\": \"444 Madison Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10022\",\n                    \"country\": \"US\",\n                    \"long_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                    \"short_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                    \"latitude\": 40.75768,\n                    \"longitude\": -73.97591,\n                    \"date_created\": \"2019-11-11 20:55:22\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b8b0f02b3eca3169f328f55580bdb51e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            }\n        ],\n        \"current_stop\": {\n            \"job_stop_id\": 3909332,\n            \"company_id\": 100,\n            \"job_id\": 2174821,\n            \"location_id\": 388163,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2019-07-08 19:18:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:45:54\",\n            \"date_updated\": \"2021-04-28 17:45:56\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 8813,\n            \"duration_to_next_stop_seconds\": 1362,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388163,\n                \"address\": \"123 William St\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10038\",\n                \"country\": \"US\",\n                \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                \"latitude\": 40.70922,\n                \"longitude\": -74.00689,\n                \"date_created\": \"2019-11-07 16:26:36\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4244,\n                    \"company_id\": 100,\n                    \"job_id\": 2174821,\n                    \"job_stop_id\": 3909332,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"confirmation\",\n                        \"display\": \"Confirmation\",\n                        \"has_attachment\": 1,\n                        \"has_body\": true,\n                        \"attachment_name\": \"Signature\",\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"require_notes\": {\n                                \"id\": \"require_notes\",\n                                \"display\": \"Requires Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"show_notes\": {\n                                \"id\": \"show_notes\",\n                                \"display\": \"Show Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Confirmation\",\n                    \"description\": \"Accept this confirmation\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"show_notes\": 1,\n                            \"require_notes\": 1,\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:45:55\",\n                    \"date_updated\": \"2021-04-28 17:45:55\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": \"Do you accept?\"\n                },\n                {\n                    \"job_stop_action_id\": 4245,\n                    \"company_id\": 100,\n                    \"job_id\": 2174821,\n                    \"job_stop_id\": 3909332,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"order_acknowledgement\",\n                        \"display\": \"Order Acknowledgement\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\",\n                        \"item_statuses\": {\n                            \"rejected\": {\n                                \"id\": \"rejected\",\n                                \"display\": \"Rejected\"\n                            },\n                            \"accepted\": {\n                                \"id\": \"accepted\",\n                                \"display\": \"Accepted\"\n                            }\n                        },\n                        \"rejection_reasons\": {\n                            \"lost_or_damaged\": {\n                                \"id\": \"lost_or_damaged\",\n                                \"display\": \"Lost or Damaged\",\n                                \"order\": 1\n                            },\n                            \"wrong_quantity\": {\n                                \"id\": \"wrong_quantity\",\n                                \"display\": \"Wrong Quantity\",\n                                \"order\": 2\n                            },\n                            \"other\": {\n                                \"id\": \"other\",\n                                \"display\": \"Other\",\n                                \"order\": 3\n                            }\n                        },\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 2,\n                    \"button_text\": \"Order Acknowledgement\",\n                    \"description\": \"Order Acknowledgement\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:45:55\",\n                    \"date_updated\": \"2021-04-28 17:45:55\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": null\n        },\n        \"next_stop\": {\n            \"job_stop_id\": 3909333,\n            \"company_id\": 100,\n            \"job_id\": 2174821,\n            \"location_id\": 388171,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2019-07-08 19:18:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:45:54\",\n            \"date_updated\": \"2021-04-28 17:45:56\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 8813,\n            \"duration_from_previous_stop_seconds\": 1362,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.75768,\\\"lng\\\":-73.97591,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T18:03:34Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":8813,\\\"time\\\":1062,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388171,\n                \"address\": \"444 Madison Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10022\",\n                \"country\": \"US\",\n                \"long_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                \"short_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                \"latitude\": 40.75768,\n                \"longitude\": -73.97591,\n                \"date_created\": \"2019-11-11 20:55:22\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b8b0f02b3eca3169f328f55580bdb51e\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            }\n        },\n        \"previous_stop\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"f8cc307c-0aa6-4472-bbd8-219d370a8112"},{"name":"Get Job","id":"ac5da66f-4fe8-4f52-a48c-920f6169a2b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/:job_id","description":"<p>When getting a job that is <code>in_progress</code>, there will be additional information attached to the job object. There will be a <code>job.driver</code> object which has all details for the driver handling the job. Each <code>stop</code> in <code>job.stops</code> will have a <code>driver_distance_until_arrival_meters</code> and <code>driver_duration_until_arrival_seconds</code> which represent how far away the driver is from that stop. </p>\n<p>To draw the route already travelled by the driver, <code>job.location_history</code> will be populated with an array of <code>paths</code>. The polyline can be drawn using those paths.</p>\n<p>Jobs will contain a <code>stops</code> array which is a full collection of all stops on a job. There are also two convenience objects <code>job.current_stop</code> and <code>job.next_stop</code> which can be trusted to be the current (the stop the driver is currently on) and next stop respectively.</p>\n","urlObject":{"path":["job",":job_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174817","key":"job_id"}]}},"response":[{"id":"fea83913-cb0e-4a85-91fd-cc1976bd0c5c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/job/:job_id","host":["{{host}}"],"path":["job",":job_id"],"variable":[{"key":"job_id","value":"2174817"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"16452"},{"key":"ETag","value":"W/\"4044-sXtL7+A+5OFi4Szi8lb5PBWQTZs\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:47:12 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174817,\n        \"job_number\": 7,\n        \"origin_job_number\": null,\n        \"hash\": \"vDfSWQlMQ\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": null,\n        \"pickup_location_id\": 388586,\n        \"actual_pickup_location_id\": null,\n        \"dropoff_location_id\": 388574,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388586,\n            \"address\": \"385 Metropolitan Ave\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11211\",\n            \"country\": \"US\",\n            \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"latitude\": 40.71407,\n            \"longitude\": -73.95536,\n            \"date_created\": \"2021-04-27 21:32:35\",\n            \"date_updated\": \"2021-04-27 21:32:35\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388574,\n            \"address\": \"33 Bond St\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11201\",\n            \"country\": \"US\",\n            \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"latitude\": 40.68864,\n            \"longitude\": -73.9835,\n            \"date_created\": \"2021-03-09 20:40:53\",\n            \"date_updated\": \"2021-03-09 20:40:53\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"f30c5007222a4985a820a6397789a038\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2021-04-28 17:07:47\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 1,\n        \"in_progress_date\": \"2021-04-28 17:09:31\",\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"driver notes\",\n        \"internal_notes\": \"\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": null,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 0,\n        \"price_override_flag\": 0,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-28 17:07:47\",\n        \"date_updated\": \"2021-04-28 17:35:56\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": null,\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": [\n            {\n                \"fieldname\": \"attachments\",\n                \"originalname\": \"SignatureAttachmentExample.png\",\n                \"encoding\": \"7bit\",\n                \"mimetype\": \"image/png\",\n                \"destination\": \"./tmp\",\n                \"filename\": \"fa250ae162ee20290b0a7005fec7286d\",\n                \"path\": \"tmp/fa250ae162ee20290b0a7005fec7286d\",\n                \"size\": 5675,\n                \"name\": \"SignatureAttachmentExample.png\",\n                \"extension\": \"png\",\n                \"stored_name\": \"signatureattachmentexample_fTqGGQ_Bvl.png\",\n                \"type\": \"image/png\",\n                \"original_filename\": \"SignatureAttachmentExample.png\",\n                \"remote_path\": \"liverydesk-public-dev/job/2174817/attachment\",\n                \"title\": \"title2\",\n                \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174817/attachment/signatureattachmentexample_fTqGGQ_Bvl.png\"\n            }\n        ],\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": null,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"summary\": \"null null null null\"\n        },\n        \"driver_assigned_to_vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null\n        },\n        \"vehicle_car_type\": {\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"driver_base\": {\n            \"base_id\": null,\n            \"name\": null\n        },\n        \"driver_car_type\": {\n            \"vehicle_id\": null,\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"job_status\": {\n            \"status_id\": 1,\n            \"name\": \"Pending\",\n            \"slug\": \"pending\",\n            \"order\": 10\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 964,\n            \"first_name\": \"LD\",\n            \"last_name\": \"Admin\",\n            \"email\": \"info@liverydesk.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 1,\n            \"name\": \"Pending\",\n            \"slug\": \"pending\",\n            \"order\": 10\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 0,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 0,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/vDfSWQlMQ\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909325,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:07:46\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:07:47\",\n                \"date_updated\": \"2021-04-28 17:14:14\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4237,\n                        \"company_id\": 100,\n                        \"job_id\": 2174817,\n                        \"job_stop_id\": 3909325,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"get_signature\",\n                            \"display\": \"Get Signature\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\"\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Get Signature\",\n                        \"description\": \"Get User's Signature\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {}\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:07:48\",\n                        \"date_updated\": \"2021-04-28 17:14:15\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            {\n                \"job_stop_id\": 3909324,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:07:46\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:07:47\",\n                \"date_updated\": \"2021-04-28 17:14:14\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            }\n        ],\n        \"current_stop\": {\n            \"job_stop_id\": 3909325,\n            \"company_id\": 100,\n            \"job_id\": 2174817,\n            \"location_id\": 388586,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2021-04-29 01:07:46\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:07:47\",\n            \"date_updated\": \"2021-04-28 17:14:14\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 5232,\n            \"duration_to_next_stop_seconds\": 865,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4237,\n                    \"company_id\": 100,\n                    \"job_id\": 2174817,\n                    \"job_stop_id\": 3909325,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"get_signature\",\n                        \"display\": \"Get Signature\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\"\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Get Signature\",\n                    \"description\": \"Get User's Signature\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {}\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:07:48\",\n                    \"date_updated\": \"2021-04-28 17:14:15\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": null\n        },\n        \"next_stop\": {\n            \"job_stop_id\": 3909324,\n            \"company_id\": 100,\n            \"job_id\": 2174817,\n            \"location_id\": 388574,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2021-04-29 01:07:46\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:07:47\",\n            \"date_updated\": \"2021-04-28 17:14:14\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 5232,\n            \"duration_from_previous_stop_seconds\": 865,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            }\n        },\n        \"previous_stop\": null,\n        \"location_history\": {\n            \"distance_meters\": 0,\n            \"duration_seconds\": 0\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"},{"id":"443b0f49-eb88-4729-862b-7d5c69d6e8e2","name":"Success  - Including driver details","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/job/:job_id","host":["{{host}}"],"path":["job",":job_id"],"variable":[{"key":"job_id","value":"2174817"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"20968"},{"key":"ETag","value":"W/\"51e8-WAtbnozGjRRauWosjhrg+if8S9Y\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:48:09 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174817,\n        \"job_number\": 7,\n        \"origin_job_number\": null,\n        \"hash\": \"vDfSWQlMQ\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": 965,\n        \"pickup_location_id\": 388586,\n        \"actual_pickup_location_id\": null,\n        \"dropoff_location_id\": 388574,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388586,\n            \"address\": \"385 Metropolitan Ave\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11211\",\n            \"country\": \"US\",\n            \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n            \"latitude\": 40.71407,\n            \"longitude\": -73.95536,\n            \"date_created\": \"2021-04-27 21:32:35\",\n            \"date_updated\": \"2021-04-27 21:32:35\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388574,\n            \"address\": \"33 Bond St\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11201\",\n            \"country\": \"US\",\n            \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n            \"latitude\": 40.68864,\n            \"longitude\": -73.9835,\n            \"date_created\": \"2021-03-09 20:40:53\",\n            \"date_updated\": \"2021-03-09 20:40:53\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"f30c5007222a4985a820a6397789a038\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2021-04-28 17:07:47\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 4,\n        \"in_progress_date\": \"2021-04-28 17:47:57\",\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"driver notes\",\n        \"internal_notes\": \"\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": null,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 0,\n        \"price_override_flag\": 0,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-28 17:07:47\",\n        \"date_updated\": \"2021-04-28 17:47:57\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": null,\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": [\n            {\n                \"fieldname\": \"attachments\",\n                \"originalname\": \"SignatureAttachmentExample.png\",\n                \"encoding\": \"7bit\",\n                \"mimetype\": \"image/png\",\n                \"destination\": \"./tmp\",\n                \"filename\": \"fa250ae162ee20290b0a7005fec7286d\",\n                \"path\": \"tmp/fa250ae162ee20290b0a7005fec7286d\",\n                \"size\": 5675,\n                \"name\": \"SignatureAttachmentExample.png\",\n                \"extension\": \"png\",\n                \"stored_name\": \"signatureattachmentexample_fTqGGQ_Bvl.png\",\n                \"type\": \"image/png\",\n                \"original_filename\": \"SignatureAttachmentExample.png\",\n                \"remote_path\": \"liverydesk-public-dev/job/2174817/attachment\",\n                \"title\": \"title2\",\n                \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174817/attachment/signatureattachmentexample_fTqGGQ_Bvl.png\"\n            }\n        ],\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": 364,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"driver\": {\n            \"employee_id\": 965,\n            \"driver_number\": 1,\n            \"first_name\": \"Test\",\n            \"last_name\": \"Company\",\n            \"username\": \"demodriver@test_company\",\n            \"email\": \"testcompany@testcompany.com\",\n            \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n            \"password_hint\": \"pa*****4\",\n            \"hash\": \"rjgtIGdgx\",\n            \"company_id\": 100,\n            \"location_id\": 388582,\n            \"primary_phone_country\": \"US\",\n            \"primary_phone\": \"2222222222\",\n            \"secondary_phone_country\": null,\n            \"secondary_phone\": null,\n            \"is_driver\": 1,\n            \"role_name\": \"driver\",\n            \"is_active\": 1,\n            \"is_deleted\": 0,\n            \"social_security_number\": null,\n            \"date_of_birth\": null,\n            \"base\": null,\n            \"base_id\": 67,\n            \"old_base_id\": null,\n            \"base_license_number\": null,\n            \"base_fee\": null,\n            \"base_fee_frequency\": null,\n            \"base_fee_last_processed\": null,\n            \"enable_recurring_base_fee\": 0,\n            \"base_fee_start_date\": null,\n            \"hack_license_number\": null,\n            \"hack_license_expiration\": null,\n            \"driver_license_number\": \"Change this\",\n            \"driver_license_expiration\": \"2021-05-27\",\n            \"driver_license_class\": \"D\",\n            \"is_car_owner\": 0,\n            \"dispatch_app_version\": null,\n            \"device_id\": null,\n            \"date_created\": \"2021-04-27 17:53:51\",\n            \"date_updated\": \"2021-04-28 16:48:55\",\n            \"car_type_id\": 255,\n            \"new_car_type_id\": null,\n            \"car_make\": \"Toyota\",\n            \"car_model\": \"Camry\",\n            \"car_year\": 2016,\n            \"car_color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"on_duty\": 0,\n            \"on_duty_date\": null,\n            \"phone_verified\": null,\n            \"phone_verification_code\": null,\n            \"phone_verified_date\": null,\n            \"picture\": null,\n            \"attributes\": null,\n            \"profile\": null,\n            \"application_approved_date\": null,\n            \"application_approved\": 0,\n            \"number_of_ratings\": 0,\n            \"average_rating\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            },\n            \"transaction_balance\": 0,\n            \"suspended_until\": null,\n            \"date_unsuspending\": null,\n            \"password_reset_hash\": null,\n            \"password_reset_client_hash\": null,\n            \"password_reset_hash_date\": null,\n            \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n            \"is_suspended\": 0,\n            \"recruiter_entity_id\": null,\n            \"recruiter_entity_type\": null,\n            \"car_vin\": null,\n            \"assigned_to_vehicle_id\": 364,\n            \"parent_employee_id\": null,\n            \"custom_attributes\": null,\n            \"primary_phone_international\": \"+1 222 222 2222\",\n            \"primary_phone_national\": \"(222) 222-2222\",\n            \"transaction_balace\": 0,\n            \"car_type\": {\n                \"vehicle_id\": 364,\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            },\n            \"assigned_to_vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            }\n        },\n        \"vehicle\": {\n            \"vehicle_id\": 364,\n            \"company_id\": 100,\n            \"owner_employee_id\": 965,\n            \"type_id\": 255,\n            \"name\": null,\n            \"make\": \"Toyota\",\n            \"model\": \"Camry\",\n            \"year\": 2016,\n            \"color\": \"Black\",\n            \"registration_number\": \"Change this\",\n            \"registration_expiration_date\": \"2021-05-27\",\n            \"registration_owner_name\": \"Demo\",\n            \"license_plate_number\": \"Change this\",\n            \"insurance_policy_number\": \"Change this\",\n            \"insurance_provider_name\": \"Change this\",\n            \"insurance_expiration_date\": \"2021-05-27\",\n            \"inspection_expiration_date\": \"2021-05-27\",\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": 1,\n            \"date_created\": \"2021-04-27T17:53:51Z\",\n            \"date_updated\": \"2021-04-27T17:53:51Z\",\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"_type\": \"vehicle\",\n            \"summary\": \"2016 Black Toyota Camry\",\n            \"car_type\": {\n                \"type_id\": 255,\n                \"old_type_id\": null,\n                \"company_id\": 52,\n                \"name\": \"SUV\",\n                \"order\": 30,\n                \"icon\": \"suv.png\",\n                \"attributes\": {\n                    \"capacity\": {\n                        \"value\": 6\n                    }\n                },\n                \"is_active\": 1,\n                \"date_created\": \"2018-08-22 17:36:16\",\n                \"date_updated\": \"2018-08-22 17:36:16\",\n                \"date_deleted\": null\n            }\n        },\n        \"driver_base\": {\n            \"base_id\": 67,\n            \"name\": \"TEST_COMPANY\"\n        },\n        \"job_status\": {\n            \"status_id\": 4,\n            \"name\": \"In Progress\",\n            \"slug\": \"in-progress\",\n            \"order\": 40\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 964,\n            \"first_name\": \"LD\",\n            \"last_name\": \"Admin\",\n            \"email\": \"info@liverydesk.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 4,\n            \"name\": \"In Progress\",\n            \"slug\": \"in-progress\",\n            \"order\": 40\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 0,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 0,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/vDfSWQlMQ\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909325,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 4,\n                \"arrival_date\": \"2021-04-29 01:07:46\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": \"2021-04-28 17:47:57\",\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:07:47\",\n                \"date_updated\": \"2021-04-28 17:47:57\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 4,\n                    \"name\": \"In Progress\",\n                    \"slug\": \"in-progress\",\n                    \"order\": 40\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4237,\n                        \"company_id\": 100,\n                        \"job_id\": 2174817,\n                        \"job_stop_id\": 3909325,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"get_signature\",\n                            \"display\": \"Get Signature\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\"\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Get Signature\",\n                        \"description\": \"Get User's Signature\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {}\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:07:48\",\n                        \"date_updated\": \"2021-04-28 17:14:15\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": {\n                    \"job_stop_action_id\": 4237,\n                    \"company_id\": 100,\n                    \"job_id\": 2174817,\n                    \"job_stop_id\": 3909325,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"get_signature\",\n                        \"display\": \"Get Signature\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\"\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Get Signature\",\n                    \"description\": \"Get User's Signature\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {}\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:07:48\",\n                    \"date_updated\": \"2021-04-28 17:14:15\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": null\n                },\n                \"driver_distance_until_arrival_meters\": 11237285,\n                \"driver_duration_until_arrival_seconds\": 1005483.63\n            },\n            {\n                \"job_stop_id\": 3909324,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:07:46\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:07:47\",\n                \"date_updated\": \"2021-04-28 17:14:14\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"driver_distance_until_arrival_meters\": 11242517,\n                \"driver_duration_until_arrival_seconds\": 1006348.63\n            }\n        ],\n        \"current_stop\": {\n            \"job_stop_id\": 3909325,\n            \"company_id\": 100,\n            \"job_id\": 2174817,\n            \"location_id\": 388586,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": null,\n            \"status_id\": 4,\n            \"arrival_date\": \"2021-04-29 01:07:46\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": \"2021-04-28 17:47:57\",\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:07:47\",\n            \"date_updated\": \"2021-04-28 17:47:57\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 5232,\n            \"duration_to_next_stop_seconds\": 865,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 4,\n                \"name\": \"In Progress\",\n                \"slug\": \"in-progress\",\n                \"order\": 40\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4237,\n                    \"company_id\": 100,\n                    \"job_id\": 2174817,\n                    \"job_stop_id\": 3909325,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"get_signature\",\n                        \"display\": \"Get Signature\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\"\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Get Signature\",\n                    \"description\": \"Get User's Signature\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {}\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:07:48\",\n                    \"date_updated\": \"2021-04-28 17:14:15\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": {\n                \"job_stop_action_id\": 4237,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"job_stop_id\": 3909325,\n                \"job_stop_type\": \"pickup\",\n                \"type\": {\n                    \"id\": \"get_signature\",\n                    \"display\": \"Get Signature\",\n                    \"has_attachment\": 1,\n                    \"attachment_name\": \"Signature\"\n                },\n                \"stop_status_id\": 4,\n                \"order\": 1,\n                \"button_text\": \"Get Signature\",\n                \"description\": \"Get User's Signature\",\n                \"url\": null,\n                \"attachments\": null,\n                \"meta\": {\n                    \"settings\": {}\n                },\n                \"is_active\": 1,\n                \"date_completed\": null,\n                \"date_created\": \"2021-04-28 17:07:48\",\n                \"date_updated\": \"2021-04-28 17:14:15\",\n                \"date_deleted\": null,\n                \"type_data\": null,\n                \"body\": null\n            },\n            \"driver_distance_until_arrival_meters\": 11237285,\n            \"driver_duration_until_arrival_seconds\": 1005483.63\n        },\n        \"next_stop\": {\n            \"job_stop_id\": 3909324,\n            \"company_id\": 100,\n            \"job_id\": 2174817,\n            \"location_id\": 388574,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2021-04-29 01:07:46\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-28 17:07:47\",\n            \"date_updated\": \"2021-04-28 17:14:14\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 5232,\n            \"duration_from_previous_stop_seconds\": 865,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"driver_distance_until_arrival_meters\": 11242517,\n            \"driver_duration_until_arrival_seconds\": 1006348.63\n        },\n        \"previous_stop\": null,\n        \"location_history\": {\n            \"distance_meters\": 0,\n            \"duration_seconds\": 0\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"ac5da66f-4fe8-4f52-a48c-920f6169a2b7"},{"name":"Get unassigned jobs","id":"4ae8916b-6503-4c9d-917b-414bd9de66a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/getactive","description":"<p>This will return all jobs that are not completed and not cancelled.</p>\n","urlObject":{"path":["job","getactive"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"876a8adb-b02b-4a64-949f-1a0b37d9f667","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/getactive"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"197508"},{"key":"ETag","value":"W/\"30384-epyxd1U2bfpJdvpkI3V/DW1WYE0\""},{"key":"Date","value":"Wed, 28 Apr 2021 17:48:47 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"job_id\": 2174816,\n            \"job_number\": 6,\n            \"origin_job_number\": null,\n            \"hash\": \"fgO_1YBkl\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388574,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 16:54:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": 0,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": \"2021-04-28 17:05:00\",\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 16:54:19\",\n            \"date_updated\": \"2021-04-28 17:06:07\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": 0,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/fgO_1YBkl\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909321,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 20:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": \"smith\",\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:20\",\n                    \"date_updated\": \"2021-04-28 17:28:34\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"null\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909323,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388574,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 20:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:41\",\n                    \"date_updated\": \"2021-04-28 17:06:07\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909321,\n                \"company_id\": 100,\n                \"job_id\": 2174816,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 20:54:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": \"smith\",\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:20\",\n                \"date_updated\": \"2021-04-28 17:28:34\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"null\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909323,\n                \"company_id\": 100,\n                \"job_id\": 2174816,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 20:54:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:41\",\n                \"date_updated\": \"2021-04-28 17:06:07\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174814,\n            \"job_number\": 4,\n            \"origin_job_number\": null,\n            \"hash\": \"nyZbOPvCh\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388587,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388587,\n                \"address\": \"231 Haynes Rd\",\n                \"address_two\": null,\n                \"city\": \"Avon\",\n                \"state\": \"Connecticut\",\n                \"postal_code\": \"06001\",\n                \"country\": \"US\",\n                \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"latitude\": 41.77357,\n                \"longitude\": -72.87228,\n                \"date_created\": \"2021-04-27 21:32:36\",\n                \"date_updated\": \"2021-04-27 21:32:36\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 01:32:35\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 965,\n            \"updated_by_employee_id\": 965,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": null,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-27 21:32:40\",\n            \"date_updated\": \"2021-04-28 17:09:11\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 965,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": null,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/nyZbOPvCh\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909318,\n                    \"company_id\": 100,\n                    \"job_id\": 2174814,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 05:32:35\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:32:40\",\n                    \"date_updated\": \"2021-04-28 17:09:10\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 196205,\n                    \"duration_to_next_stop_seconds\": 9121,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909317,\n                    \"company_id\": 100,\n                    \"job_id\": 2174814,\n                    \"location_id\": 388587,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 05:32:36\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:32:40\",\n                    \"date_updated\": \"2021-04-28 17:09:10\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 196205,\n                    \"duration_from_previous_stop_seconds\": 9121,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388587,\n                        \"address\": \"231 Haynes Rd\",\n                        \"address_two\": null,\n                        \"city\": \"Avon\",\n                        \"state\": \"Connecticut\",\n                        \"postal_code\": \"06001\",\n                        \"country\": \"US\",\n                        \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"latitude\": 41.77357,\n                        \"longitude\": -72.87228,\n                        \"date_created\": \"2021-04-27 21:32:36\",\n                        \"date_updated\": \"2021-04-27 21:32:36\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909318,\n                \"company_id\": 100,\n                \"job_id\": 2174814,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:32:35\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:32:40\",\n                \"date_updated\": \"2021-04-28 17:09:10\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 196205,\n                \"duration_to_next_stop_seconds\": 9121,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909317,\n                \"company_id\": 100,\n                \"job_id\": 2174814,\n                \"location_id\": 388587,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:32:36\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:32:40\",\n                \"date_updated\": \"2021-04-28 17:09:10\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 196205,\n                \"duration_from_previous_stop_seconds\": 9121,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388587,\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174819,\n            \"job_number\": 9,\n            \"origin_job_number\": null,\n            \"hash\": \"gTD92-ynf\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388593,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388592,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388593,\n                \"address\": \"23 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58173,\n                \"longitude\": -73.9678,\n                \"date_created\": \"2021-04-28 17:39:54\",\n                \"date_updated\": \"2021-04-28 17:39:54\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388592,\n                \"address\": \"222 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58165,\n                \"longitude\": -73.96903,\n                \"date_created\": \"2021-04-28 17:39:16\",\n                \"date_updated\": \"2021-04-28 17:39:16\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2020-01-28 21:51:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"Doorbell doesnt work\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": 964,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 25,\n            \"price_override_flag\": 1,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 17:39:57\",\n            \"date_updated\": \"2021-04-28 17:39:57\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": {\n                \"somekey\": \"someval\",\n                \"otherkey\": \"otherval\",\n                \"nested\": {\n                    \"nestedkey\": \"nestedval\"\n                }\n            },\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 25,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 25,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 25,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/gTD92-ynf\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909329,\n                    \"company_id\": 100,\n                    \"job_id\": 2174819,\n                    \"location_id\": 388593,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2020-01-29 02:51:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:39:57\",\n                    \"date_updated\": \"2021-04-28 17:39:58\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 234,\n                    \"duration_to_next_stop_seconds\": 374,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388593,\n                        \"address\": \"23 West Ave\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11224\",\n                        \"country\": \"US\",\n                        \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                        \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                        \"latitude\": 40.58173,\n                        \"longitude\": -73.9678,\n                        \"date_created\": \"2021-04-28 17:39:54\",\n                        \"date_updated\": \"2021-04-28 17:39:54\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"job_stop_actions\": [\n                        {\n                            \"job_stop_action_id\": 4240,\n                            \"company_id\": 100,\n                            \"job_id\": 2174819,\n                            \"job_stop_id\": 3909329,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"confirmation\",\n                                \"display\": \"Confirmation\",\n                                \"has_attachment\": 1,\n                                \"has_body\": true,\n                                \"attachment_name\": \"Signature\",\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"require_notes\": {\n                                        \"id\": \"require_notes\",\n                                        \"display\": \"Requires Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"show_notes\": {\n                                        \"id\": \"show_notes\",\n                                        \"display\": \"Show Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 1,\n                            \"button_text\": \"Confirmation\",\n                            \"description\": \"Accept this confirmation\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"show_notes\": 1,\n                                    \"require_notes\": 1,\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:39:57\",\n                            \"date_updated\": \"2021-04-28 17:39:57\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": \"Do you accept?\"\n                        },\n                        {\n                            \"job_stop_action_id\": 4241,\n                            \"company_id\": 100,\n                            \"job_id\": 2174819,\n                            \"job_stop_id\": 3909329,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"order_acknowledgement\",\n                                \"display\": \"Order Acknowledgement\",\n                                \"has_attachment\": 1,\n                                \"attachment_name\": \"Signature\",\n                                \"item_statuses\": {\n                                    \"rejected\": {\n                                        \"id\": \"rejected\",\n                                        \"display\": \"Rejected\"\n                                    },\n                                    \"accepted\": {\n                                        \"id\": \"accepted\",\n                                        \"display\": \"Accepted\"\n                                    }\n                                },\n                                \"rejection_reasons\": {\n                                    \"lost_or_damaged\": {\n                                        \"id\": \"lost_or_damaged\",\n                                        \"display\": \"Lost or Damaged\",\n                                        \"order\": 1\n                                    },\n                                    \"wrong_quantity\": {\n                                        \"id\": \"wrong_quantity\",\n                                        \"display\": \"Wrong Quantity\",\n                                        \"order\": 2\n                                    },\n                                    \"other\": {\n                                        \"id\": \"other\",\n                                        \"display\": \"Other\",\n                                        \"order\": 3\n                                    }\n                                },\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 2,\n                            \"button_text\": \"Order Acknowledgement\",\n                            \"description\": \"Order Acknowledgement\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:39:57\",\n                            \"date_updated\": \"2021-04-28 17:39:57\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": null\n                        }\n                    ],\n                    \"next_job_stop_action\": null\n                },\n                {\n                    \"job_stop_id\": 3909328,\n                    \"company_id\": 100,\n                    \"job_id\": 2174819,\n                    \"location_id\": 388592,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 01:51:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:39:57\",\n                    \"date_updated\": \"2021-04-28 17:39:58\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 234,\n                    \"duration_from_previous_stop_seconds\": 374,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T17:41:09Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388592,\n                        \"address\": \"222 West Ave\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11224\",\n                        \"country\": \"US\",\n                        \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                        \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                        \"latitude\": 40.58165,\n                        \"longitude\": -73.96903,\n                        \"date_created\": \"2021-04-28 17:39:16\",\n                        \"date_updated\": \"2021-04-28 17:39:16\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909329,\n                \"company_id\": 100,\n                \"job_id\": 2174819,\n                \"location_id\": 388593,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2020-01-29 02:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:39:57\",\n                \"date_updated\": \"2021-04-28 17:39:58\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 234,\n                \"duration_to_next_stop_seconds\": 374,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388593,\n                    \"address\": \"23 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58173,\n                    \"longitude\": -73.9678,\n                    \"date_created\": \"2021-04-28 17:39:54\",\n                    \"date_updated\": \"2021-04-28 17:39:54\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4240,\n                        \"company_id\": 100,\n                        \"job_id\": 2174819,\n                        \"job_stop_id\": 3909329,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:39:57\",\n                        \"date_updated\": \"2021-04-28 17:39:57\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4241,\n                        \"company_id\": 100,\n                        \"job_id\": 2174819,\n                        \"job_stop_id\": 3909329,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:39:57\",\n                        \"date_updated\": \"2021-04-28 17:39:57\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909328,\n                \"company_id\": 100,\n                \"job_id\": 2174819,\n                \"location_id\": 388592,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:39:57\",\n                \"date_updated\": \"2021-04-28 17:39:58\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 234,\n                \"duration_from_previous_stop_seconds\": 374,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T17:41:09Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388592,\n                    \"address\": \"222 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58165,\n                    \"longitude\": -73.96903,\n                    \"date_created\": \"2021-04-28 17:39:16\",\n                    \"date_updated\": \"2021-04-28 17:39:16\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174820,\n            \"job_number\": 10,\n            \"origin_job_number\": null,\n            \"hash\": \"MvDf8wP58\",\n            \"user_id\": 314,\n            \"contact_name\": \"guest user\",\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388593,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388592,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388593,\n                \"address\": \"23 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58173,\n                \"longitude\": -73.9678,\n                \"date_created\": \"2021-04-28 17:39:54\",\n                \"date_updated\": \"2021-04-28 17:39:54\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388592,\n                \"address\": \"222 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58165,\n                \"longitude\": -73.96903,\n                \"date_created\": \"2021-04-28 17:39:16\",\n                \"date_updated\": \"2021-04-28 17:39:16\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2020-01-28 21:51:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"Doorbell doesnt work\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": null,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 25,\n            \"price_override_flag\": 1,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 17:45:04\",\n            \"date_updated\": \"2021-04-28 17:45:04\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": {\n                \"somekey\": \"someval\",\n                \"otherkey\": \"otherval\",\n                \"nested\": {\n                    \"nestedkey\": \"nestedval\"\n                }\n            },\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"user\": {\n                \"user_id\": 314,\n                \"company_id\": 100,\n                \"password\": \"$2b$08$XhNFECrRtmsqZKrxVzKPC.XrB0ub6MlWdZwl5Ow7xjfLnO5uteS8S\",\n                \"hash\": \"Z9looaL9fw\",\n                \"email\": \"guestuser@test.com\",\n                \"device_id\": null,\n                \"first_name\": \"guest\",\n                \"last_name\": \"user\",\n                \"location_id\": null,\n                \"phone_country\": \"US\",\n                \"phone\": \"2222222222\",\n                \"role_name\": \"registered-user\",\n                \"facebook_id\": null,\n                \"gender\": null,\n                \"is_active\": 1,\n                \"timezone\": null,\n                \"locale\": null,\n                \"notification_sandbox\": 0,\n                \"image_stored_name\": null,\n                \"image_original_name\": null,\n                \"image_thumb_stored_name\": null,\n                \"image_extension\": null,\n                \"image_size\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"payment_processor\": null,\n                \"payment_processor_id\": null,\n                \"payment_processor_card_id\": null,\n                \"card_last_4\": null,\n                \"card_address_line1\": null,\n                \"card_address_line2\": null,\n                \"card_address_city\": null,\n                \"card_address_state\": null,\n                \"card_address_zip\": null,\n                \"card_address_country\": null,\n                \"date_created\": \"2021-04-28 17:45:00\",\n                \"date_updated\": \"2021-04-28 17:45:00\",\n                \"last_login_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"average_rating\": 0,\n                \"number_of_ratings\": 0,\n                \"payment_methods\": null,\n                \"user_agents\": null,\n                \"transaction_balance\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"phone_international\": \"+1 222 222 2222\",\n                \"phone_national\": \"(222) 222-2222\",\n                \"default_payment_method\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 25,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 25,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 25,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/MvDf8wP58\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909331,\n                    \"company_id\": 100,\n                    \"job_id\": 2174820,\n                    \"location_id\": 388593,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2020-01-29 02:51:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:45:04\",\n                    \"date_updated\": \"2021-04-28 17:45:06\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 234,\n                    \"duration_to_next_stop_seconds\": 374,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388593,\n                        \"address\": \"23 West Ave\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11224\",\n                        \"country\": \"US\",\n                        \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                        \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                        \"latitude\": 40.58173,\n                        \"longitude\": -73.9678,\n                        \"date_created\": \"2021-04-28 17:39:54\",\n                        \"date_updated\": \"2021-04-28 17:39:54\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"job_stop_actions\": [\n                        {\n                            \"job_stop_action_id\": 4242,\n                            \"company_id\": 100,\n                            \"job_id\": 2174820,\n                            \"job_stop_id\": 3909331,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"confirmation\",\n                                \"display\": \"Confirmation\",\n                                \"has_attachment\": 1,\n                                \"has_body\": true,\n                                \"attachment_name\": \"Signature\",\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"require_notes\": {\n                                        \"id\": \"require_notes\",\n                                        \"display\": \"Requires Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"show_notes\": {\n                                        \"id\": \"show_notes\",\n                                        \"display\": \"Show Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 1,\n                            \"button_text\": \"Confirmation\",\n                            \"description\": \"Accept this confirmation\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"show_notes\": 1,\n                                    \"require_notes\": 1,\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:45:05\",\n                            \"date_updated\": \"2021-04-28 17:45:05\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": \"Do you accept?\"\n                        },\n                        {\n                            \"job_stop_action_id\": 4243,\n                            \"company_id\": 100,\n                            \"job_id\": 2174820,\n                            \"job_stop_id\": 3909331,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"order_acknowledgement\",\n                                \"display\": \"Order Acknowledgement\",\n                                \"has_attachment\": 1,\n                                \"attachment_name\": \"Signature\",\n                                \"item_statuses\": {\n                                    \"rejected\": {\n                                        \"id\": \"rejected\",\n                                        \"display\": \"Rejected\"\n                                    },\n                                    \"accepted\": {\n                                        \"id\": \"accepted\",\n                                        \"display\": \"Accepted\"\n                                    }\n                                },\n                                \"rejection_reasons\": {\n                                    \"lost_or_damaged\": {\n                                        \"id\": \"lost_or_damaged\",\n                                        \"display\": \"Lost or Damaged\",\n                                        \"order\": 1\n                                    },\n                                    \"wrong_quantity\": {\n                                        \"id\": \"wrong_quantity\",\n                                        \"display\": \"Wrong Quantity\",\n                                        \"order\": 2\n                                    },\n                                    \"other\": {\n                                        \"id\": \"other\",\n                                        \"display\": \"Other\",\n                                        \"order\": 3\n                                    }\n                                },\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 2,\n                            \"button_text\": \"Order Acknowledgement\",\n                            \"description\": \"Order Acknowledgement\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:45:05\",\n                            \"date_updated\": \"2021-04-28 17:45:05\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": null\n                        }\n                    ],\n                    \"next_job_stop_action\": null\n                },\n                {\n                    \"job_stop_id\": 3909330,\n                    \"company_id\": 100,\n                    \"job_id\": 2174820,\n                    \"location_id\": 388592,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 01:51:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:45:04\",\n                    \"date_updated\": \"2021-04-28 17:45:06\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 234,\n                    \"duration_from_previous_stop_seconds\": 374,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T17:46:16Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388592,\n                        \"address\": \"222 West Ave\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11224\",\n                        \"country\": \"US\",\n                        \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                        \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                        \"latitude\": 40.58165,\n                        \"longitude\": -73.96903,\n                        \"date_created\": \"2021-04-28 17:39:16\",\n                        \"date_updated\": \"2021-04-28 17:39:16\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909331,\n                \"company_id\": 100,\n                \"job_id\": 2174820,\n                \"location_id\": 388593,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2020-01-29 02:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:04\",\n                \"date_updated\": \"2021-04-28 17:45:06\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 234,\n                \"duration_to_next_stop_seconds\": 374,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388593,\n                    \"address\": \"23 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58173,\n                    \"longitude\": -73.9678,\n                    \"date_created\": \"2021-04-28 17:39:54\",\n                    \"date_updated\": \"2021-04-28 17:39:54\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4242,\n                        \"company_id\": 100,\n                        \"job_id\": 2174820,\n                        \"job_stop_id\": 3909331,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:05\",\n                        \"date_updated\": \"2021-04-28 17:45:05\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4243,\n                        \"company_id\": 100,\n                        \"job_id\": 2174820,\n                        \"job_stop_id\": 3909331,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:05\",\n                        \"date_updated\": \"2021-04-28 17:45:05\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909330,\n                \"company_id\": 100,\n                \"job_id\": 2174820,\n                \"location_id\": 388592,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:04\",\n                \"date_updated\": \"2021-04-28 17:45:06\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 234,\n                \"duration_from_previous_stop_seconds\": 374,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T17:46:16Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388592,\n                    \"address\": \"222 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58165,\n                    \"longitude\": -73.96903,\n                    \"date_created\": \"2021-04-28 17:39:16\",\n                    \"date_updated\": \"2021-04-28 17:39:16\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174821,\n            \"job_number\": 11,\n            \"origin_job_number\": null,\n            \"hash\": \"h8I1gzE1O\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388163,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388171,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388163,\n                \"address\": \"123 William St\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10038\",\n                \"country\": \"US\",\n                \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                \"latitude\": 40.70922,\n                \"longitude\": -74.00689,\n                \"date_created\": \"2019-11-07 16:26:36\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388171,\n                \"address\": \"444 Madison Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10022\",\n                \"country\": \"US\",\n                \"long_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                \"short_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                \"latitude\": 40.75768,\n                \"longitude\": -73.97591,\n                \"date_created\": \"2019-11-11 20:55:22\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b8b0f02b3eca3169f328f55580bdb51e\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2019-07-08 15:18:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": 964,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": null,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 17:45:54\",\n            \"date_updated\": \"2021-04-28 17:45:54\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": null,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/h8I1gzE1O\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909332,\n                    \"company_id\": 100,\n                    \"job_id\": 2174821,\n                    \"location_id\": 388163,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2019-07-08 19:18:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:45:54\",\n                    \"date_updated\": \"2021-04-28 17:45:56\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 8813,\n                    \"duration_to_next_stop_seconds\": 1362,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388163,\n                        \"address\": \"123 William St\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10038\",\n                        \"country\": \"US\",\n                        \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"latitude\": 40.70922,\n                        \"longitude\": -74.00689,\n                        \"date_created\": \"2019-11-07 16:26:36\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"job_stop_actions\": [\n                        {\n                            \"job_stop_action_id\": 4244,\n                            \"company_id\": 100,\n                            \"job_id\": 2174821,\n                            \"job_stop_id\": 3909332,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"confirmation\",\n                                \"display\": \"Confirmation\",\n                                \"has_attachment\": 1,\n                                \"has_body\": true,\n                                \"attachment_name\": \"Signature\",\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"require_notes\": {\n                                        \"id\": \"require_notes\",\n                                        \"display\": \"Requires Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"show_notes\": {\n                                        \"id\": \"show_notes\",\n                                        \"display\": \"Show Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 1,\n                            \"button_text\": \"Confirmation\",\n                            \"description\": \"Accept this confirmation\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"show_notes\": 1,\n                                    \"require_notes\": 1,\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:45:55\",\n                            \"date_updated\": \"2021-04-28 17:45:55\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": \"Do you accept?\"\n                        },\n                        {\n                            \"job_stop_action_id\": 4245,\n                            \"company_id\": 100,\n                            \"job_id\": 2174821,\n                            \"job_stop_id\": 3909332,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"order_acknowledgement\",\n                                \"display\": \"Order Acknowledgement\",\n                                \"has_attachment\": 1,\n                                \"attachment_name\": \"Signature\",\n                                \"item_statuses\": {\n                                    \"rejected\": {\n                                        \"id\": \"rejected\",\n                                        \"display\": \"Rejected\"\n                                    },\n                                    \"accepted\": {\n                                        \"id\": \"accepted\",\n                                        \"display\": \"Accepted\"\n                                    }\n                                },\n                                \"rejection_reasons\": {\n                                    \"lost_or_damaged\": {\n                                        \"id\": \"lost_or_damaged\",\n                                        \"display\": \"Lost or Damaged\",\n                                        \"order\": 1\n                                    },\n                                    \"wrong_quantity\": {\n                                        \"id\": \"wrong_quantity\",\n                                        \"display\": \"Wrong Quantity\",\n                                        \"order\": 2\n                                    },\n                                    \"other\": {\n                                        \"id\": \"other\",\n                                        \"display\": \"Other\",\n                                        \"order\": 3\n                                    }\n                                },\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 2,\n                            \"button_text\": \"Order Acknowledgement\",\n                            \"description\": \"Order Acknowledgement\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:45:55\",\n                            \"date_updated\": \"2021-04-28 17:45:55\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": null\n                        }\n                    ],\n                    \"next_job_stop_action\": null\n                },\n                {\n                    \"job_stop_id\": 3909333,\n                    \"company_id\": 100,\n                    \"job_id\": 2174821,\n                    \"location_id\": 388171,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2019-07-08 19:18:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:45:54\",\n                    \"date_updated\": \"2021-04-28 17:45:56\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 8813,\n                    \"duration_from_previous_stop_seconds\": 1362,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.75768,\\\"lng\\\":-73.97591,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T18:03:34Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":8813,\\\"time\\\":1062,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388171,\n                        \"address\": \"444 Madison Ave\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10022\",\n                        \"country\": \"US\",\n                        \"long_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                        \"short_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                        \"latitude\": 40.75768,\n                        \"longitude\": -73.97591,\n                        \"date_created\": \"2019-11-11 20:55:22\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"b8b0f02b3eca3169f328f55580bdb51e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909332,\n                \"company_id\": 100,\n                \"job_id\": 2174821,\n                \"location_id\": 388163,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2019-07-08 19:18:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:54\",\n                \"date_updated\": \"2021-04-28 17:45:56\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 8813,\n                \"duration_to_next_stop_seconds\": 1362,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388163,\n                    \"address\": \"123 William St\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10038\",\n                    \"country\": \"US\",\n                    \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"latitude\": 40.70922,\n                    \"longitude\": -74.00689,\n                    \"date_created\": \"2019-11-07 16:26:36\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4244,\n                        \"company_id\": 100,\n                        \"job_id\": 2174821,\n                        \"job_stop_id\": 3909332,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:55\",\n                        \"date_updated\": \"2021-04-28 17:45:55\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4245,\n                        \"company_id\": 100,\n                        \"job_id\": 2174821,\n                        \"job_stop_id\": 3909332,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:55\",\n                        \"date_updated\": \"2021-04-28 17:45:55\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909333,\n                \"company_id\": 100,\n                \"job_id\": 2174821,\n                \"location_id\": 388171,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2019-07-08 19:18:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:54\",\n                \"date_updated\": \"2021-04-28 17:45:56\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 8813,\n                \"duration_from_previous_stop_seconds\": 1362,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.75768,\\\"lng\\\":-73.97591,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T18:03:34Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":8813,\\\"time\\\":1062,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388171,\n                    \"address\": \"444 Madison Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10022\",\n                    \"country\": \"US\",\n                    \"long_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                    \"short_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                    \"latitude\": 40.75768,\n                    \"longitude\": -73.97591,\n                    \"date_created\": \"2019-11-11 20:55:22\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b8b0f02b3eca3169f328f55580bdb51e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 901805,\n            \"job_number\": 2,\n            \"origin_job_number\": null,\n            \"hash\": \"3j9NoJJws\",\n            \"user_id\": null,\n            \"contact_name\": \"Mitch mMlan\",\n            \"account_id\": 0,\n            \"phone_country\": \"US\",\n            \"phone\": \"2403447413\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 0,\n            \"driver_id\": 0,\n            \"pickup_location_id\": 551405,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 551406,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": \"1700 Country Ct, Frederick, MD 21702, USA\",\n            \"pickup_location_name\": \"1700 Country Ct, Frederick, MD 21702, USA\",\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": \"Baltimore/Washington International Thurgood Marshall Airport\",\n            \"dropoff_location_name\": \"Baltimore/Washington International Thurgood Marshall Airport\",\n            \"pickup_date\": \"2017-02-21 16:00:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": 0,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 1227,\n            \"updated_by_employee_id\": 1227,\n            \"date_timezone_offset\": 300,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": 85,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": null,\n            \"actual_price\": null,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2017-02-22 04:32:31\",\n            \"date_updated\": \"2017-02-22 04:32:32\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": null,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": null,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 240 344 7413\",\n            \"phone_national\": \"(240) 344-7413\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": null,\n                \"name\": null,\n                \"role_name\": null,\n                \"api_key\": null,\n                \"company_id\": null,\n                \"base_id\": null,\n                \"is_active\": null,\n                \"icon\": null,\n                \"type\": null,\n                \"is_internal\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": 85,\n                \"suggested_actual_price\": null,\n                \"actual_price\": null,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": null,\n                \"total\": 85,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/3j9NoJJws\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            }\n        },\n        {\n            \"job_id\": 2174817,\n            \"job_number\": 7,\n            \"origin_job_number\": null,\n            \"hash\": \"vDfSWQlMQ\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388574,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 17:07:47\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 4,\n            \"in_progress_date\": \"2021-04-28 17:47:57\",\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 17:07:47\",\n            \"date_updated\": \"2021-04-28 17:47:57\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": [\n                {\n                    \"fieldname\": \"attachments\",\n                    \"originalname\": \"SignatureAttachmentExample.png\",\n                    \"encoding\": \"7bit\",\n                    \"mimetype\": \"image/png\",\n                    \"destination\": \"./tmp\",\n                    \"filename\": \"fa250ae162ee20290b0a7005fec7286d\",\n                    \"path\": \"tmp/fa250ae162ee20290b0a7005fec7286d\",\n                    \"size\": 5675,\n                    \"name\": \"SignatureAttachmentExample.png\",\n                    \"extension\": \"png\",\n                    \"stored_name\": \"signatureattachmentexample_fTqGGQ_Bvl.png\",\n                    \"type\": \"image/png\",\n                    \"original_filename\": \"SignatureAttachmentExample.png\",\n                    \"remote_path\": \"liverydesk-public-dev/job/2174817/attachment\",\n                    \"title\": \"title2\",\n                    \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174817/attachment/signatureattachmentexample_fTqGGQ_Bvl.png\"\n                }\n            ],\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 4,\n                \"name\": \"In Progress\",\n                \"slug\": \"in-progress\",\n                \"order\": 40\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 4,\n                \"name\": \"In Progress\",\n                \"slug\": \"in-progress\",\n                \"order\": 40\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/vDfSWQlMQ\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909325,\n                    \"company_id\": 100,\n                    \"job_id\": 2174817,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 4,\n                    \"arrival_date\": \"2021-04-29 01:07:46\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": \"2021-04-28 17:47:57\",\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:07:47\",\n                    \"date_updated\": \"2021-04-28 17:47:57\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 4,\n                        \"name\": \"In Progress\",\n                        \"slug\": \"in-progress\",\n                        \"order\": 40\n                    },\n                    \"job_stop_actions\": [\n                        {\n                            \"job_stop_action_id\": 4237,\n                            \"company_id\": 100,\n                            \"job_id\": 2174817,\n                            \"job_stop_id\": 3909325,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"get_signature\",\n                                \"display\": \"Get Signature\",\n                                \"has_attachment\": 1,\n                                \"attachment_name\": \"Signature\"\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 1,\n                            \"button_text\": \"Get Signature\",\n                            \"description\": \"Get User's Signature\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {}\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:07:48\",\n                            \"date_updated\": \"2021-04-28 17:14:15\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": null\n                        }\n                    ],\n                    \"next_job_stop_action\": {\n                        \"job_stop_action_id\": 4237,\n                        \"company_id\": 100,\n                        \"job_id\": 2174817,\n                        \"job_stop_id\": 3909325,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"get_signature\",\n                            \"display\": \"Get Signature\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\"\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Get Signature\",\n                        \"description\": \"Get User's Signature\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {}\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:07:48\",\n                        \"date_updated\": \"2021-04-28 17:14:15\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909324,\n                    \"company_id\": 100,\n                    \"job_id\": 2174817,\n                    \"location_id\": 388574,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 01:07:46\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:07:47\",\n                    \"date_updated\": \"2021-04-28 17:14:14\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909325,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 4,\n                \"arrival_date\": \"2021-04-29 01:07:46\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": \"2021-04-28 17:47:57\",\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:07:47\",\n                \"date_updated\": \"2021-04-28 17:47:57\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 4,\n                    \"name\": \"In Progress\",\n                    \"slug\": \"in-progress\",\n                    \"order\": 40\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4237,\n                        \"company_id\": 100,\n                        \"job_id\": 2174817,\n                        \"job_stop_id\": 3909325,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"get_signature\",\n                            \"display\": \"Get Signature\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\"\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Get Signature\",\n                        \"description\": \"Get User's Signature\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {}\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:07:48\",\n                        \"date_updated\": \"2021-04-28 17:14:15\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": {\n                    \"job_stop_action_id\": 4237,\n                    \"company_id\": 100,\n                    \"job_id\": 2174817,\n                    \"job_stop_id\": 3909325,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"get_signature\",\n                        \"display\": \"Get Signature\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\"\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Get Signature\",\n                    \"description\": \"Get User's Signature\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {}\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-28 17:07:48\",\n                    \"date_updated\": \"2021-04-28 17:14:15\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": null\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909324,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:07:46\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:07:47\",\n                \"date_updated\": \"2021-04-28 17:14:14\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174815,\n            \"job_number\": 5,\n            \"origin_job_number\": null,\n            \"hash\": \"CNFxpq-Ko\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388587,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388587,\n                \"address\": \"231 Haynes Rd\",\n                \"address_two\": null,\n                \"city\": \"Avon\",\n                \"state\": \"Connecticut\",\n                \"postal_code\": \"06001\",\n                \"country\": \"US\",\n                \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"latitude\": 41.77357,\n                \"longitude\": -72.87228,\n                \"date_created\": \"2021-04-27 21:32:36\",\n                \"date_updated\": \"2021-04-27 21:32:36\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 16:54:10\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 9,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": \"2021-04-28 17:06:00\",\n            \"driver_reminded_date\": \"2021-04-28 17:36:09\",\n            \"date_created\": \"2021-04-28 16:54:10\",\n            \"date_updated\": \"2021-04-28 17:06:08\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": \"kWZPVwDZO\",\n            \"dispatch_group_order\": 1,\n            \"dispatch_group_optimization_method\": \"single_pickup_optimization\",\n            \"dispatch_group_data\": {\n                \"color\": \"#1F75FE\",\n                \"ignore_time_windows\": 0,\n                \"total_jobs\": 1,\n                \"optimize\": 1\n            },\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/CNFxpq-Ko\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909320,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:10\",\n                    \"date_updated\": \"2021-04-28 17:06:08\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 196205,\n                    \"duration_to_next_stop_seconds\": 9121,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": 1,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909319,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388587,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:10\",\n                    \"date_updated\": \"2021-04-28 17:06:08\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 196205,\n                    \"duration_from_previous_stop_seconds\": 9121,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": 2,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"0\\\",\\\"lat\\\":41.77357,\\\"lng\\\":-72.87228,\\\"sequence\\\":2,\\\"estimatedArrival\\\":\\\"2021-04-28T15:50:23-04:00\\\",\\\"estimatedDeparture\\\":\\\"2021-04-28T15:55:23-04:00\\\",\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"destination\\\",\\\"toWaypoint\\\":\\\"0\\\",\\\"distance\\\":201022,\\\"time\\\":9058,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388587,\n                        \"address\": \"231 Haynes Rd\",\n                        \"address_two\": null,\n                        \"city\": \"Avon\",\n                        \"state\": \"Connecticut\",\n                        \"postal_code\": \"06001\",\n                        \"country\": \"US\",\n                        \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"latitude\": 41.77357,\n                        \"longitude\": -72.87228,\n                        \"date_created\": \"2021-04-27 21:32:36\",\n                        \"date_updated\": \"2021-04-27 21:32:36\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909320,\n                \"company_id\": 100,\n                \"job_id\": 2174815,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 00:54:09\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 17:06:08\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 196205,\n                \"duration_to_next_stop_seconds\": 9121,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": 1,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909319,\n                \"company_id\": 100,\n                \"job_id\": 2174815,\n                \"location_id\": 388587,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 00:54:09\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 17:06:08\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 196205,\n                \"duration_from_previous_stop_seconds\": 9121,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": 2,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"0\\\",\\\"lat\\\":41.77357,\\\"lng\\\":-72.87228,\\\"sequence\\\":2,\\\"estimatedArrival\\\":\\\"2021-04-28T15:50:23-04:00\\\",\\\"estimatedDeparture\\\":\\\"2021-04-28T15:55:23-04:00\\\",\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"destination\\\",\\\"toWaypoint\\\":\\\"0\\\",\\\"distance\\\":201022,\\\"time\\\":9058,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388587,\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174813,\n            \"job_number\": 3,\n            \"origin_job_number\": null,\n            \"hash\": \"07WxwJMJr\",\n            \"user_id\": null,\n            \"contact_name\": \"Test User\",\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388163,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388161,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388163,\n                \"address\": \"123 William St\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10038\",\n                \"country\": \"US\",\n                \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                \"latitude\": 40.70922,\n                \"longitude\": -74.00689,\n                \"date_created\": \"2019-11-07 16:26:36\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388161,\n                \"address\": \"234 E 149th St\",\n                \"address_two\": null,\n                \"city\": \"Bronx\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10451\",\n                \"country\": \"US\",\n                \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"latitude\": 40.81753,\n                \"longitude\": -73.9241,\n                \"date_created\": \"2019-11-06 15:25:37\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-27 21:23:12\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 9,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 240,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": \"2021-04-27 21:23:00\",\n            \"driver_reminded_date\": \"2021-04-27 22:09:03\",\n            \"date_created\": \"2021-04-27 21:23:12\",\n            \"date_updated\": \"2021-04-27 21:23:46\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27 13:53:50\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/07WxwJMJr\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909315,\n                    \"company_id\": 100,\n                    \"job_id\": 2174813,\n                    \"location_id\": 388163,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": {},\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 05:23:11\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:23:13\",\n                    \"date_updated\": \"2021-04-27 21:23:14\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 17259,\n                    \"duration_to_next_stop_seconds\": 1797,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388163,\n                        \"address\": \"123 William St\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10038\",\n                        \"country\": \"US\",\n                        \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"latitude\": 40.70922,\n                        \"longitude\": -74.00689,\n                        \"date_created\": \"2019-11-07 16:26:36\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909316,\n                    \"company_id\": 100,\n                    \"job_id\": 2174813,\n                    \"location_id\": 388161,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": {},\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 05:23:11\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:23:13\",\n                    \"date_updated\": \"2021-04-27 21:23:44\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 17259,\n                    \"duration_from_previous_stop_seconds\": 1797,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.81753,\\\"lng\\\":-73.9241,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-27T17:47:57-04:00\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":17259,\\\"time\\\":1497,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": \"2021-04-27 21:47:57\",\n                    \"location\": {\n                        \"location_id\": 388161,\n                        \"address\": \"234 E 149th St\",\n                        \"address_two\": null,\n                        \"city\": \"Bronx\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10451\",\n                        \"country\": \"US\",\n                        \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"latitude\": 40.81753,\n                        \"longitude\": -73.9241,\n                        \"date_created\": \"2019-11-06 15:25:37\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909315,\n                \"company_id\": 100,\n                \"job_id\": 2174813,\n                \"location_id\": 388163,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:23:11\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:23:13\",\n                \"date_updated\": \"2021-04-27 21:23:14\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 17259,\n                \"duration_to_next_stop_seconds\": 1797,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388163,\n                    \"address\": \"123 William St\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10038\",\n                    \"country\": \"US\",\n                    \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"latitude\": 40.70922,\n                    \"longitude\": -74.00689,\n                    \"date_created\": \"2019-11-07 16:26:36\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909316,\n                \"company_id\": 100,\n                \"job_id\": 2174813,\n                \"location_id\": 388161,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": {},\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:23:11\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:23:13\",\n                \"date_updated\": \"2021-04-27 21:23:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 17259,\n                \"duration_from_previous_stop_seconds\": 1797,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.81753,\\\"lng\\\":-73.9241,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-27T17:47:57-04:00\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":17259,\\\"time\\\":1497,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": \"2021-04-27 21:47:57\",\n                \"location\": {\n                    \"location_id\": 388161,\n                    \"address\": \"234 E 149th St\",\n                    \"address_two\": null,\n                    \"city\": \"Bronx\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10451\",\n                    \"country\": \"US\",\n                    \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"latitude\": 40.81753,\n                    \"longitude\": -73.9241,\n                    \"date_created\": \"2019-11-06 15:25:37\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174812,\n            \"job_number\": 2,\n            \"origin_job_number\": null,\n            \"hash\": \"DV7XSOJRY\",\n            \"user_id\": null,\n            \"contact_name\": \"Test User\",\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388163,\n            \"actual_pickup_location_id\": 388533,\n            \"dropoff_location_id\": 388161,\n            \"actual_dropoff_location_id\": 388533,\n            \"pickup_location\": {\n                \"location_id\": 388163,\n                \"address\": \"123 William St\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10038\",\n                \"country\": \"US\",\n                \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                \"latitude\": 40.70922,\n                \"longitude\": -74.00689,\n                \"date_created\": \"2019-11-07 16:26:36\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388161,\n                \"address\": \"234 E 149th St\",\n                \"address_two\": null,\n                \"city\": \"Bronx\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10451\",\n                \"country\": \"US\",\n                \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"latitude\": 40.81753,\n                \"longitude\": -73.9241,\n                \"date_created\": \"2019-11-06 15:25:37\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-27 18:13:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": \"2021-04-27 21:21:31\",\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 7,\n            \"in_progress_date\": \"2021-04-27 21:20:31\",\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": 964,\n            \"date_timezone_offset\": 240,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": {\n                \"total_cost\": 0,\n                \"route_costs\": [\n                    {\n                        \"stop\": {\n                            \"job_stop_id\": 3909313\n                        },\n                        \"price\": {\n                            \"name\": \"Test Company Default Rule\",\n                            \"base_id\": 67,\n                            \"priority\": 1,\n                            \"is_active\": 1,\n                            \"mile_rate\": 0,\n                            \"stop_rate\": 0,\n                            \"wait_rate\": 0,\n                            \"zone_id_1\": 70,\n                            \"zone_id_2\": null,\n                            \"base_price\": 0,\n                            \"company_id\": 100,\n                            \"is_default\": 1,\n                            \"is_deleted\": 0,\n                            \"pricing_id\": 39,\n                            \"surcharges\": null,\n                            \"minute_rate\": 0,\n                            \"old_base_id\": null,\n                            \"service_fee\": 0,\n                            \"date_created\": \"2021-04-27 17:53:51\",\n                            \"date_updated\": \"2021-04-27 17:53:51\",\n                            \"is_flat_rate\": false,\n                            \"minimum_price\": 0,\n                            \"amount_of_stops\": 0,\n                            \"distance_meters\": 0,\n                            \"estimated_price\": 0,\n                            \"cancellation_fee\": 0,\n                            \"duration_seconds\": 0,\n                            \"wait_time_overage\": 0,\n                            \"per_job_surcharges\": {},\n                            \"per_leg_surcharges\": {},\n                            \"estimated_price_low\": 0,\n                            \"estimated_price_high\": 0,\n                            \"new_vehicle_modifiers\": null,\n                            \"process_initial_price\": true,\n                            \"applied_option_surcharges\": [],\n                            \"variable_price_estimate_low_buffer\": 0.1,\n                            \"variable_price_estimate_high_buffer\": 0.1\n                        },\n                        \"option_ids\": [],\n                        \"distance_meters\": 0,\n                        \"duration_seconds\": 0,\n                        \"wait_time_overage\": 0,\n                        \"process_initial_price\": true,\n                        \"wait_time_overage_seconds\": 0\n                    }\n                ],\n                \"applied_surcharges\": [],\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_time_overage_seconds\": 0\n            },\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"paid\",\n            \"payment_confirmation\": \"cash\",\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": \"2021-04-27 21:39:32\",\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-27 18:13:47\",\n            \"date_updated\": \"2021-04-27 21:39:32\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": \"{\\\"commission_flat_rate\\\":0,\\\"commission_percentage\\\":0}\",\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": \"2021-04-27 21:39:27\",\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": 0,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 7,\n                \"name\": \"Completed\",\n                \"slug\": \"completed\",\n                \"order\": 70\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 7,\n                \"name\": \"Completed\",\n                \"slug\": \"completed\",\n                \"order\": 70\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": 0,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"leg_costs\": [\n                    {\n                        \"base_price\": 0,\n                        \"mile_rate\": 0,\n                        \"minute_rate\": 0,\n                        \"wait_rate\": 0,\n                        \"service_fee\": 0,\n                        \"stop_rate\": 0,\n                        \"cancellation_fee\": 0,\n                        \"option_surcharges\": [],\n                        \"estimated_price\": 0\n                    }\n                ],\n                \"applied_surcharges\": [],\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/DV7XSOJRY\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909313,\n                    \"company_id\": 100,\n                    \"job_id\": 2174812,\n                    \"location_id\": 388163,\n                    \"actual_location_id\": 388533,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": {},\n                    \"status_id\": 7,\n                    \"arrival_date\": \"2021-04-27 22:13:00\",\n                    \"actual_arrival_date\": \"2021-04-27 21:20:35\",\n                    \"in_progress_date\": \"2021-04-27 21:20:30\",\n                    \"completed_date\": \"2021-04-27 21:21:20\",\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 18:13:47\",\n                    \"date_updated\": \"2021-04-27 21:21:20\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 17259,\n                    \"duration_to_next_stop_seconds\": 1797,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": 45,\n                    \"total_duration_seconds\": 50,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388163,\n                        \"address\": \"123 William St\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10038\",\n                        \"country\": \"US\",\n                        \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"latitude\": 40.70922,\n                        \"longitude\": -74.00689,\n                        \"date_created\": \"2019-11-07 16:26:36\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                        \"company_id\": null\n                    },\n                    \"actual_location\": {\n                        \"location_id\": 388533,\n                        \"address\": \"93-37 150th St\",\n                        \"address_two\": null,\n                        \"city\": \"Jamaica\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11435\",\n                        \"country\": \"US\",\n                        \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"latitude\": 40.7004,\n                        \"longitude\": -73.80361,\n                        \"date_created\": \"2020-05-27 16:18:41\",\n                        \"date_updated\": \"2020-05-27 16:18:41\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 7,\n                        \"name\": \"Completed\",\n                        \"slug\": \"completed\",\n                        \"order\": 70\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909314,\n                    \"company_id\": 100,\n                    \"job_id\": 2174812,\n                    \"location_id\": 388161,\n                    \"actual_location_id\": 388533,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": {},\n                    \"status_id\": 7,\n                    \"arrival_date\": \"2021-04-27 22:13:00\",\n                    \"actual_arrival_date\": \"2021-04-27 21:21:24\",\n                    \"in_progress_date\": \"2021-04-27 21:21:20\",\n                    \"completed_date\": \"2021-04-27 21:21:30\",\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 18:13:47\",\n                    \"date_updated\": \"2021-04-27 21:21:30\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 17259,\n                    \"duration_from_previous_stop_seconds\": 1797,\n                    \"wait_time_seconds\": 6,\n                    \"total_duration_seconds\": 10,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388161,\n                        \"address\": \"234 E 149th St\",\n                        \"address_two\": null,\n                        \"city\": \"Bronx\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10451\",\n                        \"country\": \"US\",\n                        \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"latitude\": 40.81753,\n                        \"longitude\": -73.9241,\n                        \"date_created\": \"2019-11-06 15:25:37\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                        \"company_id\": null\n                    },\n                    \"actual_location\": {\n                        \"location_id\": 388533,\n                        \"address\": \"93-37 150th St\",\n                        \"address_two\": null,\n                        \"city\": \"Jamaica\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11435\",\n                        \"country\": \"US\",\n                        \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"latitude\": 40.7004,\n                        \"longitude\": -73.80361,\n                        \"date_created\": \"2020-05-27 16:18:41\",\n                        \"date_updated\": \"2020-05-27 16:18:41\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 7,\n                        \"name\": \"Completed\",\n                        \"slug\": \"completed\",\n                        \"order\": 70\n                    }\n                }\n            ],\n            \"actual_pickup_location\": {\n                \"location_id\": 388533,\n                \"address\": \"93-37 150th St\",\n                \"address_two\": null,\n                \"city\": \"Jamaica\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11435\",\n                \"country\": \"US\",\n                \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"latitude\": 40.7004,\n                \"longitude\": -73.80361,\n                \"date_created\": \"2020-05-27 16:18:41\",\n                \"date_updated\": \"2020-05-27 16:18:41\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                \"company_id\": null\n            },\n            \"actual_dropoff_location\": {\n                \"location_id\": 388533,\n                \"address\": \"93-37 150th St\",\n                \"address_two\": null,\n                \"city\": \"Jamaica\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11435\",\n                \"country\": \"US\",\n                \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"latitude\": 40.7004,\n                \"longitude\": -73.80361,\n                \"date_created\": \"2020-05-27 16:18:41\",\n                \"date_updated\": \"2020-05-27 16:18:41\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                \"company_id\": null\n            },\n            \"current_stop\": {\n                \"job_stop_id\": 3909313,\n                \"company_id\": 100,\n                \"job_id\": 2174812,\n                \"location_id\": 388163,\n                \"actual_location_id\": 388533,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-27 22:13:00\",\n                \"actual_arrival_date\": \"2021-04-27 21:20:35\",\n                \"in_progress_date\": \"2021-04-27 21:20:30\",\n                \"completed_date\": \"2021-04-27 21:21:20\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 18:13:47\",\n                \"date_updated\": \"2021-04-27 21:21:20\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 17259,\n                \"duration_to_next_stop_seconds\": 1797,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": 45,\n                \"total_duration_seconds\": 50,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388163,\n                    \"address\": \"123 William St\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10038\",\n                    \"country\": \"US\",\n                    \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"latitude\": 40.70922,\n                    \"longitude\": -74.00689,\n                    \"date_created\": \"2019-11-07 16:26:36\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388533,\n                    \"address\": \"93-37 150th St\",\n                    \"address_two\": null,\n                    \"city\": \"Jamaica\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11435\",\n                    \"country\": \"US\",\n                    \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"latitude\": 40.7004,\n                    \"longitude\": -73.80361,\n                    \"date_created\": \"2020-05-27 16:18:41\",\n                    \"date_updated\": \"2020-05-27 16:18:41\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909314,\n                \"company_id\": 100,\n                \"job_id\": 2174812,\n                \"location_id\": 388161,\n                \"actual_location_id\": 388533,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-27 22:13:00\",\n                \"actual_arrival_date\": \"2021-04-27 21:21:24\",\n                \"in_progress_date\": \"2021-04-27 21:21:20\",\n                \"completed_date\": \"2021-04-27 21:21:30\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 18:13:47\",\n                \"date_updated\": \"2021-04-27 21:21:30\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 17259,\n                \"duration_from_previous_stop_seconds\": 1797,\n                \"wait_time_seconds\": 6,\n                \"total_duration_seconds\": 10,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388161,\n                    \"address\": \"234 E 149th St\",\n                    \"address_two\": null,\n                    \"city\": \"Bronx\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10451\",\n                    \"country\": \"US\",\n                    \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"latitude\": 40.81753,\n                    \"longitude\": -73.9241,\n                    \"date_created\": \"2019-11-06 15:25:37\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388533,\n                    \"address\": \"93-37 150th St\",\n                    \"address_two\": null,\n                    \"city\": \"Jamaica\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11435\",\n                    \"country\": \"US\",\n                    \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"latitude\": 40.7004,\n                    \"longitude\": -73.80361,\n                    \"date_created\": \"2020-05-27 16:18:41\",\n                    \"date_updated\": \"2020-05-27 16:18:41\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174818,\n            \"job_number\": 8,\n            \"origin_job_number\": null,\n            \"hash\": \"ZhFVBejcJ\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": 388589,\n            \"dropoff_location_id\": 388574,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 17:14:22\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 8,\n            \"in_progress_date\": \"2021-04-28 17:22:06\",\n            \"infront_date\": null,\n            \"cancelled_date\": \"2021-04-28 17:34:02\",\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 17:14:22\",\n            \"date_updated\": \"2021-04-28 17:34:02\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": {\n                \"cancellation\": {\n                    \"cancelled_by_entity_id\": null,\n                    \"cancelled_by_entity_type\": \"user\",\n                    \"dispatcher_input_cancellation_reason\": null\n                }\n            },\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 8,\n                \"name\": \"Cancelled\",\n                \"slug\": \"cancelled\",\n                \"order\": 80\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"employee\": {\n                \"employee_id\": 964,\n                \"first_name\": \"LD\",\n                \"last_name\": \"Admin\",\n                \"email\": \"info@liverydesk.com\",\n                \"company_id\": 100,\n                \"primary_phone_international\": null,\n                \"primary_phone_national\": null,\n                \"transaction_balace\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                }\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 8,\n                \"name\": \"Cancelled\",\n                \"slug\": \"cancelled\",\n                \"order\": 80\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/ZhFVBejcJ\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909326,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": 388589,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": {},\n                    \"status_id\": 7,\n                    \"arrival_date\": \"2021-04-29 01:14:21\",\n                    \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n                    \"in_progress_date\": \"2021-04-28 17:22:05\",\n                    \"completed_date\": \"2021-04-28 17:24:44\",\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:14:22\",\n                    \"date_updated\": \"2021-04-28 17:24:44\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": 133,\n                    \"total_duration_seconds\": 159,\n                    \"return_stop_id\": null,\n                    \"recipient\": {\n                        \"name\": \"John Nextdoor\",\n                        \"designation\": \"Nextdoor Neighbor\",\n                        \"address\": \"123 West Ave\"\n                    },\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"actual_location\": {\n                        \"location_id\": 388589,\n                        \"address\": \"169 Grange St\",\n                        \"address_two\": null,\n                        \"city\": \"Franklin Square\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11010\",\n                        \"country\": \"US\",\n                        \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                        \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                        \"latitude\": 40.70324,\n                        \"longitude\": -73.66761,\n                        \"date_created\": \"2021-04-28 17:24:44\",\n                        \"date_updated\": \"2021-04-28 17:24:44\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 7,\n                        \"name\": \"Completed\",\n                        \"slug\": \"completed\",\n                        \"order\": 70\n                    },\n                    \"job_stop_actions\": [\n                        {\n                            \"job_stop_action_id\": 4239,\n                            \"company_id\": 100,\n                            \"job_id\": 2174818,\n                            \"job_stop_id\": 3909326,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"confirmation\",\n                                \"display\": \"Confirmation\",\n                                \"has_attachment\": 1,\n                                \"has_body\": true,\n                                \"attachment_name\": \"Signature\",\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"require_notes\": {\n                                        \"id\": \"require_notes\",\n                                        \"display\": \"Requires Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"show_notes\": {\n                                        \"id\": \"show_notes\",\n                                        \"display\": \"Show Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 1,\n                            \"button_text\": \"Confirmation\",\n                            \"description\": \"Accept this confirmation\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"show_notes\": 1,\n                                    \"require_notes\": 1,\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 0,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:14:23\",\n                            \"date_updated\": \"2021-04-28 17:22:26\",\n                            \"date_deleted\": null,\n                            \"type_data\": {\n                                \"notes\": \"These are the driver notes\"\n                            },\n                            \"body\": \"Do you accept?\"\n                        },\n                        {\n                            \"job_stop_action_id\": 4238,\n                            \"company_id\": 100,\n                            \"job_id\": 2174818,\n                            \"job_stop_id\": 3909326,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"order_acknowledgement\",\n                                \"display\": \"Order Acknowledgement\",\n                                \"has_attachment\": 1,\n                                \"attachment_name\": \"Signature\",\n                                \"item_statuses\": {\n                                    \"rejected\": {\n                                        \"id\": \"rejected\",\n                                        \"display\": \"Rejected\"\n                                    },\n                                    \"accepted\": {\n                                        \"id\": \"accepted\",\n                                        \"display\": \"Accepted\"\n                                    }\n                                },\n                                \"rejection_reasons\": {\n                                    \"lost_or_damaged\": {\n                                        \"id\": \"lost_or_damaged\",\n                                        \"display\": \"Lost or Damaged\",\n                                        \"order\": 1\n                                    },\n                                    \"wrong_quantity\": {\n                                        \"id\": \"wrong_quantity\",\n                                        \"display\": \"Wrong Quantity\",\n                                        \"order\": 2\n                                    },\n                                    \"other\": {\n                                        \"id\": \"other\",\n                                        \"display\": \"Other\",\n                                        \"order\": 3\n                                    }\n                                },\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 2,\n                            \"button_text\": \"Order Acknowledgement\",\n                            \"description\": \"Order Acknowledgement\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 0,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:14:23\",\n                            \"date_updated\": \"2021-04-28 17:22:27\",\n                            \"date_deleted\": null,\n                            \"type_data\": {\n                                \"items\": [\n                                    {\n                                        \"ID\": \"555\",\n                                        \"qty\": \"3\",\n                                        \"name\": \"Iced Coffee\",\n                                        \"price\": \"4\",\n                                        \"_item_id\": \"B1oTe07PL\",\n                                        \"_status\": {\n                                            \"status_id\": \"rejected\",\n                                            \"notes\": \"Nice and cold\",\n                                            \"rejection_reason_id\": \"wrong_quantity\"\n                                        }\n                                    }\n                                ]\n                            },\n                            \"body\": null\n                        }\n                    ],\n                    \"next_job_stop_action\": null\n                },\n                {\n                    \"job_stop_id\": 3909327,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"location_id\": 388574,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": {\n                        \"cancellation\": {\n                            \"cancellation_reason\": \"Not available\"\n                        }\n                    },\n                    \"status_id\": 8,\n                    \"arrival_date\": \"2021-04-29 01:14:21\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": \"2021-04-28 17:24:45\",\n                    \"completed_date\": null,\n                    \"cancelled_date\": \"2021-04-28 17:25:47\",\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:14:22\",\n                    \"date_updated\": \"2021-04-28 17:25:47\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 8,\n                        \"name\": \"Cancelled\",\n                        \"slug\": \"cancelled\",\n                        \"order\": 80\n                    }\n                }\n            ],\n            \"actual_pickup_location\": {\n                \"location_id\": 388589,\n                \"address\": \"169 Grange St\",\n                \"address_two\": null,\n                \"city\": \"Franklin Square\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11010\",\n                \"country\": \"US\",\n                \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                \"latitude\": 40.70324,\n                \"longitude\": -73.66761,\n                \"date_created\": \"2021-04-28 17:24:44\",\n                \"date_updated\": \"2021-04-28 17:24:44\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                \"company_id\": null\n            },\n            \"current_stop\": {\n                \"job_stop_id\": 3909326,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388586,\n                \"actual_location_id\": 388589,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n                \"in_progress_date\": \"2021-04-28 17:22:05\",\n                \"completed_date\": \"2021-04-28 17:24:44\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:24:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": 133,\n                \"total_duration_seconds\": 159,\n                \"return_stop_id\": null,\n                \"recipient\": {\n                    \"name\": \"John Nextdoor\",\n                    \"designation\": \"Nextdoor Neighbor\",\n                    \"address\": \"123 West Ave\"\n                },\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388589,\n                    \"address\": \"169 Grange St\",\n                    \"address_two\": null,\n                    \"city\": \"Franklin Square\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11010\",\n                    \"country\": \"US\",\n                    \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                    \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                    \"latitude\": 40.70324,\n                    \"longitude\": -73.66761,\n                    \"date_created\": \"2021-04-28 17:24:44\",\n                    \"date_updated\": \"2021-04-28 17:24:44\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4239,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:26\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"notes\": \"These are the driver notes\"\n                        },\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4238,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:27\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"items\": [\n                                {\n                                    \"ID\": \"555\",\n                                    \"qty\": \"3\",\n                                    \"name\": \"Iced Coffee\",\n                                    \"price\": \"4\",\n                                    \"_item_id\": \"B1oTe07PL\",\n                                    \"_status\": {\n                                        \"status_id\": \"rejected\",\n                                        \"notes\": \"Nice and cold\",\n                                        \"rejection_reason_id\": \"wrong_quantity\"\n                                    }\n                                }\n                            ]\n                        },\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909327,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": {\n                    \"cancellation\": {\n                        \"cancellation_reason\": \"Not available\"\n                    }\n                },\n                \"status_id\": 8,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": \"2021-04-28 17:24:45\",\n                \"completed_date\": null,\n                \"cancelled_date\": \"2021-04-28 17:25:47\",\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:25:47\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 8,\n                    \"name\": \"Cancelled\",\n                    \"slug\": \"cancelled\",\n                    \"order\": 80\n                }\n            },\n            \"previous_stop\": null\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 11\n    }\n}"}],"_postman_id":"4ae8916b-6503-4c9d-917b-414bd9de66a7"},{"name":"Search Jobs","id":"714ec1a1-8b7c-40f6-a629-73dca10234c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/search?order_by=pickup_date&from_date=2021-04-01T19:36:57-04:00&to_date=2021-04-30T19:36:57-04:00","description":"<p>Search for jobs based on various criteria. It's very important to pass the <code>from_date</code> and <code>to_date</code> date ranges for jobs. If the range is too large and there are too many jobs to return, the endpoint will fail.</p>\n","urlObject":{"path":["job","search"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Optional, date_created, pickup_date</p>\n","type":"text/plain"},"key":"order_by","value":"pickup_date"},{"key":"from_date","value":"2021-04-01T19:36:57-04:00"},{"key":"to_date","value":"2021-04-30T19:36:57-04:00"},{"disabled":true,"key":"_page","value":"2"},{"disabled":true,"key":"_limit","value":"20"},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"driver_number","value":""},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"employee_id","value":""},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"entered_by_employee_id","value":""},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"account_id","value":""},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"phone","value":"2222222222"},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"statuses","value":"2"},{"disabled":true,"description":{"content":"<p>Optional. 1-9, can be found on job.status</p>\n","type":"text/plain"},"key":"statuses","value":"1"},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"address","value":"123 West Ave"},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"base_ids","value":"67"},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"base_ids","value":"67"},{"disabled":true,"description":{"content":"<p>Optional, boolean</p>\n","type":"text/plain"},"key":"is_reservation","value":"1"},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"application_ids","value":"1000000193"},{"disabled":true,"description":{"content":"<p>Optional. pending, authorized, paid, refunded, automatic, manual, failed</p>\n","type":"text/plain"},"key":"payment_statuses","value":"cash"},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"contact_name","value":"Test"},{"disabled":true,"description":{"content":"<p>Optional, boolean</p>\n","type":"text/plain"},"key":"has_account","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. cash, credit, prepaid</p>\n","type":"text/plain"},"key":"payment_methods","value":"cash"},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"referral_code_id","value":"100211"},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"user_id","value":"22"},{"disabled":true,"description":{"content":"<p>Optional. Can be found in the 'Zones &amp; Pricing' settings tab</p>\n","type":"text/plain"},"key":"applied_surcharges","value":""}],"variable":[]}},"response":[{"id":"2e6e9c0c-832e-4b2b-a2b7-faa4bc5b36ae","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/job/search?order_by=pickup_date&from_date=2021-04-01T19:36:57-04:00&to_date=2021-04-30T19:36:57-04:00","host":["{{host}}"],"path":["job","search"],"query":[{"key":"order_by","value":"pickup_date","description":"Optional, date_created, pickup_date"},{"key":"from_date","value":"2021-04-01T19:36:57-04:00"},{"key":"to_date","value":"2021-04-30T19:36:57-04:00"},{"key":"_page","value":"2","disabled":true},{"key":"_limit","value":"20","disabled":true},{"key":"driver_number","value":null,"description":"Optional","disabled":true},{"key":"employee_id","value":null,"description":"Optional","disabled":true},{"key":"entered_by_employee_id","value":null,"description":"Optional","disabled":true},{"key":"account_id","value":null,"description":"Optional","disabled":true},{"key":"phone","value":"2222222222","description":"Optional","disabled":true},{"key":"statuses","value":"2","description":"Optional","disabled":true},{"key":"statuses","value":"1","description":"Optional. 1-9, can be found on job.status","disabled":true},{"key":"address","value":"123 West Ave","description":"Optional","disabled":true},{"key":"base_ids","value":"67","description":"Optional","disabled":true},{"key":"base_ids","value":"67","description":"Optional","disabled":true},{"key":"is_reservation","value":"1","description":"Optional, boolean","disabled":true},{"key":"application_ids","value":"1000000193","description":"Optional","disabled":true},{"key":"payment_statuses","value":"cash","description":"Optional. pending, authorized, paid, refunded, automatic, manual, failed","disabled":true},{"key":"contact_name","value":"Test","description":"Optional","disabled":true},{"key":"has_account","value":"1","description":"Optional, boolean","disabled":true},{"key":"payment_methods","value":"cash","description":"Optional. cash, credit, prepaid","disabled":true},{"key":"referral_code_id","value":"100211","description":"Optional","disabled":true},{"key":"user_id","value":"22","description":"Optional","disabled":true},{"key":"applied_surcharges","value":null,"description":"Optional. Can be found in the 'Zones & Pricing' settings tab","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"183222"},{"key":"ETag","value":"W/\"2cbb6-jya6Y8JHYUt0MdsDCSmQBmTTBds\""},{"key":"Date","value":"Thu, 29 Apr 2021 14:47:23 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"job_id\": 2174818,\n            \"job_number\": 8,\n            \"origin_job_number\": null,\n            \"hash\": \"ZhFVBejcJ\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": 388589,\n            \"dropoff_location_id\": 388574,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 17:14:22\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 8,\n            \"in_progress_date\": \"2021-04-28 17:22:06\",\n            \"infront_date\": null,\n            \"cancelled_date\": \"2021-04-28 17:34:02\",\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 17:14:22\",\n            \"date_updated\": \"2021-04-28 17:34:02\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": {\n                \"cancellation\": {\n                    \"cancelled_by_entity_id\": null,\n                    \"cancelled_by_entity_type\": \"user\",\n                    \"dispatcher_input_cancellation_reason\": null\n                }\n            },\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 8,\n                \"name\": \"Cancelled\",\n                \"slug\": \"cancelled\",\n                \"order\": 80\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 8,\n                \"name\": \"Cancelled\",\n                \"slug\": \"cancelled\",\n                \"order\": 80\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/ZhFVBejcJ\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909326,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": 388589,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": {},\n                    \"status_id\": 7,\n                    \"arrival_date\": \"2021-04-29 01:14:21\",\n                    \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n                    \"in_progress_date\": \"2021-04-28 17:22:05\",\n                    \"completed_date\": \"2021-04-28 17:24:44\",\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:14:22\",\n                    \"date_updated\": \"2021-04-28 17:24:44\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": 133,\n                    \"total_duration_seconds\": 159,\n                    \"return_stop_id\": null,\n                    \"recipient\": {\n                        \"name\": \"John Nextdoor\",\n                        \"designation\": \"Nextdoor Neighbor\",\n                        \"address\": \"123 West Ave\"\n                    },\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"actual_location\": {\n                        \"location_id\": 388589,\n                        \"address\": \"169 Grange St\",\n                        \"address_two\": null,\n                        \"city\": \"Franklin Square\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11010\",\n                        \"country\": \"US\",\n                        \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                        \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                        \"latitude\": 40.70324,\n                        \"longitude\": -73.66761,\n                        \"date_created\": \"2021-04-28 17:24:44\",\n                        \"date_updated\": \"2021-04-28 17:24:44\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 7,\n                        \"name\": \"Completed\",\n                        \"slug\": \"completed\",\n                        \"order\": 70\n                    },\n                    \"job_stop_actions\": [\n                        {\n                            \"job_stop_action_id\": 4239,\n                            \"company_id\": 100,\n                            \"job_id\": 2174818,\n                            \"job_stop_id\": 3909326,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"confirmation\",\n                                \"display\": \"Confirmation\",\n                                \"has_attachment\": 1,\n                                \"has_body\": true,\n                                \"attachment_name\": \"Signature\",\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"require_notes\": {\n                                        \"id\": \"require_notes\",\n                                        \"display\": \"Requires Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"show_notes\": {\n                                        \"id\": \"show_notes\",\n                                        \"display\": \"Show Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 1,\n                            \"button_text\": \"Confirmation\",\n                            \"description\": \"Accept this confirmation\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"show_notes\": 1,\n                                    \"require_notes\": 1,\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 0,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:14:23\",\n                            \"date_updated\": \"2021-04-28 17:22:26\",\n                            \"date_deleted\": null,\n                            \"type_data\": {\n                                \"notes\": \"These are the driver notes\"\n                            },\n                            \"body\": \"Do you accept?\"\n                        },\n                        {\n                            \"job_stop_action_id\": 4238,\n                            \"company_id\": 100,\n                            \"job_id\": 2174818,\n                            \"job_stop_id\": 3909326,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"order_acknowledgement\",\n                                \"display\": \"Order Acknowledgement\",\n                                \"has_attachment\": 1,\n                                \"attachment_name\": \"Signature\",\n                                \"item_statuses\": {\n                                    \"rejected\": {\n                                        \"id\": \"rejected\",\n                                        \"display\": \"Rejected\"\n                                    },\n                                    \"accepted\": {\n                                        \"id\": \"accepted\",\n                                        \"display\": \"Accepted\"\n                                    }\n                                },\n                                \"rejection_reasons\": {\n                                    \"lost_or_damaged\": {\n                                        \"id\": \"lost_or_damaged\",\n                                        \"display\": \"Lost or Damaged\",\n                                        \"order\": 1\n                                    },\n                                    \"wrong_quantity\": {\n                                        \"id\": \"wrong_quantity\",\n                                        \"display\": \"Wrong Quantity\",\n                                        \"order\": 2\n                                    },\n                                    \"other\": {\n                                        \"id\": \"other\",\n                                        \"display\": \"Other\",\n                                        \"order\": 3\n                                    }\n                                },\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 2,\n                            \"button_text\": \"Order Acknowledgement\",\n                            \"description\": \"Order Acknowledgement\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 0,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:14:23\",\n                            \"date_updated\": \"2021-04-28 17:22:27\",\n                            \"date_deleted\": null,\n                            \"type_data\": {\n                                \"items\": [\n                                    {\n                                        \"ID\": \"555\",\n                                        \"qty\": \"3\",\n                                        \"name\": \"Iced Coffee\",\n                                        \"price\": \"4\",\n                                        \"_item_id\": \"B1oTe07PL\",\n                                        \"_status\": {\n                                            \"status_id\": \"rejected\",\n                                            \"notes\": \"Nice and cold\",\n                                            \"rejection_reason_id\": \"wrong_quantity\"\n                                        }\n                                    }\n                                ]\n                            },\n                            \"body\": null\n                        }\n                    ],\n                    \"next_job_stop_action\": null\n                },\n                {\n                    \"job_stop_id\": 3909327,\n                    \"company_id\": 100,\n                    \"job_id\": 2174818,\n                    \"location_id\": 388574,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": {\n                        \"cancellation\": {\n                            \"cancellation_reason\": \"Not available\"\n                        }\n                    },\n                    \"status_id\": 8,\n                    \"arrival_date\": \"2021-04-29 01:14:21\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": \"2021-04-28 17:24:45\",\n                    \"completed_date\": null,\n                    \"cancelled_date\": \"2021-04-28 17:25:47\",\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:14:22\",\n                    \"date_updated\": \"2021-04-28 17:25:47\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 8,\n                        \"name\": \"Cancelled\",\n                        \"slug\": \"cancelled\",\n                        \"order\": 80\n                    }\n                }\n            ],\n            \"actual_pickup_location\": {\n                \"location_id\": 388589,\n                \"address\": \"169 Grange St\",\n                \"address_two\": null,\n                \"city\": \"Franklin Square\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11010\",\n                \"country\": \"US\",\n                \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                \"latitude\": 40.70324,\n                \"longitude\": -73.66761,\n                \"date_created\": \"2021-04-28 17:24:44\",\n                \"date_updated\": \"2021-04-28 17:24:44\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                \"company_id\": null\n            },\n            \"current_stop\": {\n                \"job_stop_id\": 3909326,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388586,\n                \"actual_location_id\": 388589,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": \"2021-04-28 17:22:31\",\n                \"in_progress_date\": \"2021-04-28 17:22:05\",\n                \"completed_date\": \"2021-04-28 17:24:44\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:24:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": 133,\n                \"total_duration_seconds\": 159,\n                \"return_stop_id\": null,\n                \"recipient\": {\n                    \"name\": \"John Nextdoor\",\n                    \"designation\": \"Nextdoor Neighbor\",\n                    \"address\": \"123 West Ave\"\n                },\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388589,\n                    \"address\": \"169 Grange St\",\n                    \"address_two\": null,\n                    \"city\": \"Franklin Square\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11010\",\n                    \"country\": \"US\",\n                    \"long_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                    \"short_name\": \"169 Grange St, Franklin Square, NY 11010, United States\",\n                    \"latitude\": 40.70324,\n                    \"longitude\": -73.66761,\n                    \"date_created\": \"2021-04-28 17:24:44\",\n                    \"date_updated\": \"2021-04-28 17:24:44\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"93f4a0bf558f879dbe846820eea87402\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4239,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:26\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"notes\": \"These are the driver notes\"\n                        },\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4238,\n                        \"company_id\": 100,\n                        \"job_id\": 2174818,\n                        \"job_stop_id\": 3909326,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 0,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:14:23\",\n                        \"date_updated\": \"2021-04-28 17:22:27\",\n                        \"date_deleted\": null,\n                        \"type_data\": {\n                            \"items\": [\n                                {\n                                    \"ID\": \"555\",\n                                    \"qty\": \"3\",\n                                    \"name\": \"Iced Coffee\",\n                                    \"price\": \"4\",\n                                    \"_item_id\": \"B1oTe07PL\",\n                                    \"_status\": {\n                                        \"status_id\": \"rejected\",\n                                        \"notes\": \"Nice and cold\",\n                                        \"rejection_reason_id\": \"wrong_quantity\"\n                                    }\n                                }\n                            ]\n                        },\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909327,\n                \"company_id\": 100,\n                \"job_id\": 2174818,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": {\n                    \"cancellation\": {\n                        \"cancellation_reason\": \"Not available\"\n                    }\n                },\n                \"status_id\": 8,\n                \"arrival_date\": \"2021-04-29 01:14:21\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": \"2021-04-28 17:24:45\",\n                \"completed_date\": null,\n                \"cancelled_date\": \"2021-04-28 17:25:47\",\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:14:22\",\n                \"date_updated\": \"2021-04-28 17:25:47\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 8,\n                    \"name\": \"Cancelled\",\n                    \"slug\": \"cancelled\",\n                    \"order\": 80\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174817,\n            \"job_number\": 7,\n            \"origin_job_number\": null,\n            \"hash\": \"vDfSWQlMQ\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388574,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 17:07:47\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": \"2021-04-28 17:47:57\",\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 17:07:47\",\n            \"date_updated\": \"2021-04-29 14:33:47\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": [\n                {\n                    \"fieldname\": \"attachments\",\n                    \"originalname\": \"SignatureAttachmentExample.png\",\n                    \"encoding\": \"7bit\",\n                    \"mimetype\": \"image/png\",\n                    \"destination\": \"./tmp\",\n                    \"filename\": \"fa250ae162ee20290b0a7005fec7286d\",\n                    \"path\": \"tmp/fa250ae162ee20290b0a7005fec7286d\",\n                    \"size\": 5675,\n                    \"name\": \"SignatureAttachmentExample.png\",\n                    \"extension\": \"png\",\n                    \"stored_name\": \"signatureattachmentexample_fTqGGQ_Bvl.png\",\n                    \"type\": \"image/png\",\n                    \"original_filename\": \"SignatureAttachmentExample.png\",\n                    \"remote_path\": \"liverydesk-public-dev/job/2174817/attachment\",\n                    \"title\": \"title2\",\n                    \"url\": \"https://s3.amazonaws.com/liverydesk-public-dev/job/2174817/attachment/signatureattachmentexample_fTqGGQ_Bvl.png\"\n                }\n            ],\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/vDfSWQlMQ\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909325,\n                    \"company_id\": 100,\n                    \"job_id\": 2174817,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 01:07:46\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:07:47\",\n                    \"date_updated\": \"2021-04-29 14:33:47\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"job_stop_actions\": [\n                        {\n                            \"job_stop_action_id\": 4237,\n                            \"company_id\": 100,\n                            \"job_id\": 2174817,\n                            \"job_stop_id\": 3909325,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"get_signature\",\n                                \"display\": \"Get Signature\",\n                                \"has_attachment\": 1,\n                                \"attachment_name\": \"Signature\"\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 1,\n                            \"button_text\": \"Get Signature\",\n                            \"description\": \"Get User's Signature\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {}\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:07:48\",\n                            \"date_updated\": \"2021-04-29 14:33:47\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": null\n                        }\n                    ],\n                    \"next_job_stop_action\": null\n                },\n                {\n                    \"job_stop_id\": 3909324,\n                    \"company_id\": 100,\n                    \"job_id\": 2174817,\n                    \"location_id\": 388574,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 01:07:46\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:07:47\",\n                    \"date_updated\": \"2021-04-29 14:33:47\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909325,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:07:46\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:07:47\",\n                \"date_updated\": \"2021-04-29 14:33:47\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4237,\n                        \"company_id\": 100,\n                        \"job_id\": 2174817,\n                        \"job_stop_id\": 3909325,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"get_signature\",\n                            \"display\": \"Get Signature\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\"\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Get Signature\",\n                        \"description\": \"Get User's Signature\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {}\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:07:48\",\n                        \"date_updated\": \"2021-04-29 14:33:47\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909324,\n                \"company_id\": 100,\n                \"job_id\": 2174817,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:07:46\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:07:47\",\n                \"date_updated\": \"2021-04-29 14:33:47\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174815,\n            \"job_number\": 5,\n            \"origin_job_number\": null,\n            \"hash\": \"CNFxpq-Ko\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388587,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388587,\n                \"address\": \"231 Haynes Rd\",\n                \"address_two\": null,\n                \"city\": \"Avon\",\n                \"state\": \"Connecticut\",\n                \"postal_code\": \"06001\",\n                \"country\": \"US\",\n                \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"latitude\": 41.77357,\n                \"longitude\": -72.87228,\n                \"date_created\": \"2021-04-27 21:32:36\",\n                \"date_updated\": \"2021-04-27 21:32:36\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 16:54:10\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 9,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": \"2021-04-28 17:06:00\",\n            \"driver_reminded_date\": \"2021-04-28 17:52:05\",\n            \"date_created\": \"2021-04-28 16:54:10\",\n            \"date_updated\": \"2021-04-28 17:06:08\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": \"kWZPVwDZO\",\n            \"dispatch_group_order\": 1,\n            \"dispatch_group_optimization_method\": \"single_pickup_optimization\",\n            \"dispatch_group_data\": {\n                \"color\": \"#1F75FE\",\n                \"ignore_time_windows\": 0,\n                \"total_jobs\": 1,\n                \"optimize\": 1\n            },\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/CNFxpq-Ko\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909320,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:10\",\n                    \"date_updated\": \"2021-04-28 17:06:08\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 196205,\n                    \"duration_to_next_stop_seconds\": 9121,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": 1,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909319,\n                    \"company_id\": 100,\n                    \"job_id\": 2174815,\n                    \"location_id\": 388587,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 00:54:09\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:10\",\n                    \"date_updated\": \"2021-04-28 17:06:08\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 196205,\n                    \"duration_from_previous_stop_seconds\": 9121,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": 2,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"0\\\",\\\"lat\\\":41.77357,\\\"lng\\\":-72.87228,\\\"sequence\\\":2,\\\"estimatedArrival\\\":\\\"2021-04-28T15:50:23-04:00\\\",\\\"estimatedDeparture\\\":\\\"2021-04-28T15:55:23-04:00\\\",\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"destination\\\",\\\"toWaypoint\\\":\\\"0\\\",\\\"distance\\\":201022,\\\"time\\\":9058,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388587,\n                        \"address\": \"231 Haynes Rd\",\n                        \"address_two\": null,\n                        \"city\": \"Avon\",\n                        \"state\": \"Connecticut\",\n                        \"postal_code\": \"06001\",\n                        \"country\": \"US\",\n                        \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"latitude\": 41.77357,\n                        \"longitude\": -72.87228,\n                        \"date_created\": \"2021-04-27 21:32:36\",\n                        \"date_updated\": \"2021-04-27 21:32:36\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909320,\n                \"company_id\": 100,\n                \"job_id\": 2174815,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 00:54:09\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 17:06:08\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 196205,\n                \"duration_to_next_stop_seconds\": 9121,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": 1,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909319,\n                \"company_id\": 100,\n                \"job_id\": 2174815,\n                \"location_id\": 388587,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 00:54:09\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:10\",\n                \"date_updated\": \"2021-04-28 17:06:08\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 196205,\n                \"duration_from_previous_stop_seconds\": 9121,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": 2,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"0\\\",\\\"lat\\\":41.77357,\\\"lng\\\":-72.87228,\\\"sequence\\\":2,\\\"estimatedArrival\\\":\\\"2021-04-28T15:50:23-04:00\\\",\\\"estimatedDeparture\\\":\\\"2021-04-28T15:55:23-04:00\\\",\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"destination\\\",\\\"toWaypoint\\\":\\\"0\\\",\\\"distance\\\":201022,\\\"time\\\":9058,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388587,\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174816,\n            \"job_number\": 6,\n            \"origin_job_number\": null,\n            \"hash\": \"fgO_1YBkl\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388574,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388574,\n                \"address\": \"33 Bond St\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11201\",\n                \"country\": \"US\",\n                \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                \"latitude\": 40.68864,\n                \"longitude\": -73.9835,\n                \"date_created\": \"2021-03-09 20:40:53\",\n                \"date_updated\": \"2021-03-09 20:40:53\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 16:54:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": 0,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 16:54:19\",\n            \"date_updated\": \"2021-04-29 14:35:13\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": 0,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/fgO_1YBkl\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909321,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 20:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": \"smith\",\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:20\",\n                    \"date_updated\": \"2021-04-29 14:35:12\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 5232,\n                    \"duration_to_next_stop_seconds\": 865,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909323,\n                    \"company_id\": 100,\n                    \"job_id\": 2174816,\n                    \"location_id\": 388574,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 20:54:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 16:54:41\",\n                    \"date_updated\": \"2021-04-29 14:35:12\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 5232,\n                    \"duration_from_previous_stop_seconds\": 865,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388574,\n                        \"address\": \"33 Bond St\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11201\",\n                        \"country\": \"US\",\n                        \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                        \"latitude\": 40.68864,\n                        \"longitude\": -73.9835,\n                        \"date_created\": \"2021-03-09 20:40:53\",\n                        \"date_updated\": \"2021-03-09 20:40:53\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909321,\n                \"company_id\": 100,\n                \"job_id\": 2174816,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 20:54:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": \"smith\",\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:20\",\n                \"date_updated\": \"2021-04-29 14:35:12\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 5232,\n                \"duration_to_next_stop_seconds\": 865,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909323,\n                \"company_id\": 100,\n                \"job_id\": 2174816,\n                \"location_id\": 388574,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 20:54:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 16:54:41\",\n                \"date_updated\": \"2021-04-29 14:35:12\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 5232,\n                \"duration_from_previous_stop_seconds\": 865,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388574,\n                    \"address\": \"33 Bond St\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11201\",\n                    \"country\": \"US\",\n                    \"long_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"short_name\": \"33 Bond St, Brooklyn, NY 11201, United States\",\n                    \"latitude\": 40.68864,\n                    \"longitude\": -73.9835,\n                    \"date_created\": \"2021-03-09 20:40:53\",\n                    \"date_updated\": \"2021-03-09 20:40:53\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"f30c5007222a4985a820a6397789a038\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174814,\n            \"job_number\": 4,\n            \"origin_job_number\": null,\n            \"hash\": \"nyZbOPvCh\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388586,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388587,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388586,\n                \"address\": \"385 Metropolitan Ave\",\n                \"address_two\": null,\n                \"city\": \"Brooklyn\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11211\",\n                \"country\": \"US\",\n                \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                \"latitude\": 40.71407,\n                \"longitude\": -73.95536,\n                \"date_created\": \"2021-04-27 21:32:35\",\n                \"date_updated\": \"2021-04-27 21:32:35\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388587,\n                \"address\": \"231 Haynes Rd\",\n                \"address_two\": null,\n                \"city\": \"Avon\",\n                \"state\": \"Connecticut\",\n                \"postal_code\": \"06001\",\n                \"country\": \"US\",\n                \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                \"latitude\": 41.77357,\n                \"longitude\": -72.87228,\n                \"date_created\": \"2021-04-27 21:32:36\",\n                \"date_updated\": \"2021-04-27 21:32:36\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-28 01:32:35\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"driver notes\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 965,\n            \"updated_by_employee_id\": 965,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": null,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-27 21:32:40\",\n            \"date_updated\": \"2021-04-28 17:09:11\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": null,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/nyZbOPvCh\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909318,\n                    \"company_id\": 100,\n                    \"job_id\": 2174814,\n                    \"location_id\": 388586,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 05:32:35\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:32:40\",\n                    \"date_updated\": \"2021-04-28 17:09:10\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 196205,\n                    \"duration_to_next_stop_seconds\": 9121,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388586,\n                        \"address\": \"385 Metropolitan Ave\",\n                        \"address_two\": null,\n                        \"city\": \"Brooklyn\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11211\",\n                        \"country\": \"US\",\n                        \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                        \"latitude\": 40.71407,\n                        \"longitude\": -73.95536,\n                        \"date_created\": \"2021-04-27 21:32:35\",\n                        \"date_updated\": \"2021-04-27 21:32:35\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909317,\n                    \"company_id\": 100,\n                    \"job_id\": 2174814,\n                    \"location_id\": 388587,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 05:32:36\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:32:40\",\n                    \"date_updated\": \"2021-04-28 17:09:10\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 196205,\n                    \"duration_from_previous_stop_seconds\": 9121,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388587,\n                        \"address\": \"231 Haynes Rd\",\n                        \"address_two\": null,\n                        \"city\": \"Avon\",\n                        \"state\": \"Connecticut\",\n                        \"postal_code\": \"06001\",\n                        \"country\": \"US\",\n                        \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                        \"latitude\": 41.77357,\n                        \"longitude\": -72.87228,\n                        \"date_created\": \"2021-04-27 21:32:36\",\n                        \"date_updated\": \"2021-04-27 21:32:36\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909318,\n                \"company_id\": 100,\n                \"job_id\": 2174814,\n                \"location_id\": 388586,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:32:35\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:32:40\",\n                \"date_updated\": \"2021-04-28 17:09:10\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 196205,\n                \"duration_to_next_stop_seconds\": 9121,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388586,\n                    \"address\": \"385 Metropolitan Ave\",\n                    \"address_two\": null,\n                    \"city\": \"Brooklyn\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11211\",\n                    \"country\": \"US\",\n                    \"long_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"short_name\": \"385 Metropolitan Ave, Brooklyn, NY 11211, United States\",\n                    \"latitude\": 40.71407,\n                    \"longitude\": -73.95536,\n                    \"date_created\": \"2021-04-27 21:32:35\",\n                    \"date_updated\": \"2021-04-27 21:32:35\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"a82c4bb64cc642b866f1485399fdbe2e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909317,\n                \"company_id\": 100,\n                \"job_id\": 2174814,\n                \"location_id\": 388587,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:32:36\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:32:40\",\n                \"date_updated\": \"2021-04-28 17:09:10\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 196205,\n                \"duration_from_previous_stop_seconds\": 9121,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388587,\n                    \"address\": \"231 Haynes Rd\",\n                    \"address_two\": null,\n                    \"city\": \"Avon\",\n                    \"state\": \"Connecticut\",\n                    \"postal_code\": \"06001\",\n                    \"country\": \"US\",\n                    \"long_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"short_name\": \"231 Haynes Rd, Avon, CT 06001, United States\",\n                    \"latitude\": 41.77357,\n                    \"longitude\": -72.87228,\n                    \"date_created\": \"2021-04-27 21:32:36\",\n                    \"date_updated\": \"2021-04-27 21:32:36\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"599c960d50e53bfe2a5726d0d7df251a\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174813,\n            \"job_number\": 3,\n            \"origin_job_number\": null,\n            \"hash\": \"07WxwJMJr\",\n            \"user_id\": null,\n            \"contact_name\": \"Test User\",\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388163,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388161,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388163,\n                \"address\": \"123 William St\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10038\",\n                \"country\": \"US\",\n                \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                \"latitude\": 40.70922,\n                \"longitude\": -74.00689,\n                \"date_created\": \"2019-11-07 16:26:36\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388161,\n                \"address\": \"234 E 149th St\",\n                \"address_two\": null,\n                \"city\": \"Bronx\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10451\",\n                \"country\": \"US\",\n                \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"latitude\": 40.81753,\n                \"longitude\": -73.9241,\n                \"date_created\": \"2019-11-06 15:25:37\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-27 21:23:12\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 9,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 240,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": \"2021-04-27 21:23:00\",\n            \"driver_reminded_date\": \"2021-04-27 22:09:03\",\n            \"date_created\": \"2021-04-27 21:23:12\",\n            \"date_updated\": \"2021-04-27 21:23:46\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27 13:53:50\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 9,\n                \"name\": \"Assigned\",\n                \"slug\": \"assigned\",\n                \"order\": 35\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/07WxwJMJr\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909315,\n                    \"company_id\": 100,\n                    \"job_id\": 2174813,\n                    \"location_id\": 388163,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": {},\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 05:23:11\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:23:13\",\n                    \"date_updated\": \"2021-04-27 21:23:14\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 17259,\n                    \"duration_to_next_stop_seconds\": 1797,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388163,\n                        \"address\": \"123 William St\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10038\",\n                        \"country\": \"US\",\n                        \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"latitude\": 40.70922,\n                        \"longitude\": -74.00689,\n                        \"date_created\": \"2019-11-07 16:26:36\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909316,\n                    \"company_id\": 100,\n                    \"job_id\": 2174813,\n                    \"location_id\": 388161,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": {},\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-28 05:23:11\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 21:23:13\",\n                    \"date_updated\": \"2021-04-27 21:23:44\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 17259,\n                    \"duration_from_previous_stop_seconds\": 1797,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.81753,\\\"lng\\\":-73.9241,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-27T17:47:57-04:00\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":17259,\\\"time\\\":1497,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": \"2021-04-27 21:47:57\",\n                    \"location\": {\n                        \"location_id\": 388161,\n                        \"address\": \"234 E 149th St\",\n                        \"address_two\": null,\n                        \"city\": \"Bronx\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10451\",\n                        \"country\": \"US\",\n                        \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"latitude\": 40.81753,\n                        \"longitude\": -73.9241,\n                        \"date_created\": \"2019-11-06 15:25:37\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909315,\n                \"company_id\": 100,\n                \"job_id\": 2174813,\n                \"location_id\": 388163,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:23:11\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:23:13\",\n                \"date_updated\": \"2021-04-27 21:23:14\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 17259,\n                \"duration_to_next_stop_seconds\": 1797,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388163,\n                    \"address\": \"123 William St\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10038\",\n                    \"country\": \"US\",\n                    \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"latitude\": 40.70922,\n                    \"longitude\": -74.00689,\n                    \"date_created\": \"2019-11-07 16:26:36\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909316,\n                \"company_id\": 100,\n                \"job_id\": 2174813,\n                \"location_id\": 388161,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": {},\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-28 05:23:11\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 21:23:13\",\n                \"date_updated\": \"2021-04-27 21:23:44\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 17259,\n                \"duration_from_previous_stop_seconds\": 1797,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.81753,\\\"lng\\\":-73.9241,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-27T17:47:57-04:00\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":17259,\\\"time\\\":1497,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": \"2021-04-27 21:47:57\",\n                \"location\": {\n                    \"location_id\": 388161,\n                    \"address\": \"234 E 149th St\",\n                    \"address_two\": null,\n                    \"city\": \"Bronx\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10451\",\n                    \"country\": \"US\",\n                    \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"latitude\": 40.81753,\n                    \"longitude\": -73.9241,\n                    \"date_created\": \"2019-11-06 15:25:37\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174812,\n            \"job_number\": 2,\n            \"origin_job_number\": null,\n            \"hash\": \"DV7XSOJRY\",\n            \"user_id\": null,\n            \"contact_name\": \"Test User\",\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": 965,\n            \"pickup_location_id\": 388163,\n            \"actual_pickup_location_id\": 388533,\n            \"dropoff_location_id\": 388161,\n            \"actual_dropoff_location_id\": 388533,\n            \"pickup_location\": {\n                \"location_id\": 388163,\n                \"address\": \"123 William St\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10038\",\n                \"country\": \"US\",\n                \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                \"latitude\": 40.70922,\n                \"longitude\": -74.00689,\n                \"date_created\": \"2019-11-07 16:26:36\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388161,\n                \"address\": \"234 E 149th St\",\n                \"address_two\": null,\n                \"city\": \"Bronx\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10451\",\n                \"country\": \"US\",\n                \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                \"latitude\": 40.81753,\n                \"longitude\": -73.9241,\n                \"date_created\": \"2019-11-06 15:25:37\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2021-04-27 18:13:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": \"2021-04-27 21:21:31\",\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 7,\n            \"in_progress_date\": \"2021-04-27 21:20:31\",\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": 964,\n            \"date_timezone_offset\": 240,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": {\n                \"total_cost\": 0,\n                \"route_costs\": [\n                    {\n                        \"stop\": {\n                            \"job_stop_id\": 3909313\n                        },\n                        \"price\": {\n                            \"name\": \"Test Company Default Rule\",\n                            \"base_id\": 67,\n                            \"priority\": 1,\n                            \"is_active\": 1,\n                            \"mile_rate\": 0,\n                            \"stop_rate\": 0,\n                            \"wait_rate\": 0,\n                            \"zone_id_1\": 70,\n                            \"zone_id_2\": null,\n                            \"base_price\": 0,\n                            \"company_id\": 100,\n                            \"is_default\": 1,\n                            \"is_deleted\": 0,\n                            \"pricing_id\": 39,\n                            \"surcharges\": null,\n                            \"minute_rate\": 0,\n                            \"old_base_id\": null,\n                            \"service_fee\": 0,\n                            \"date_created\": \"2021-04-27 17:53:51\",\n                            \"date_updated\": \"2021-04-27 17:53:51\",\n                            \"is_flat_rate\": false,\n                            \"minimum_price\": 0,\n                            \"amount_of_stops\": 0,\n                            \"distance_meters\": 0,\n                            \"estimated_price\": 0,\n                            \"cancellation_fee\": 0,\n                            \"duration_seconds\": 0,\n                            \"wait_time_overage\": 0,\n                            \"per_job_surcharges\": {},\n                            \"per_leg_surcharges\": {},\n                            \"estimated_price_low\": 0,\n                            \"estimated_price_high\": 0,\n                            \"new_vehicle_modifiers\": null,\n                            \"process_initial_price\": true,\n                            \"applied_option_surcharges\": [],\n                            \"variable_price_estimate_low_buffer\": 0.1,\n                            \"variable_price_estimate_high_buffer\": 0.1\n                        },\n                        \"option_ids\": [],\n                        \"distance_meters\": 0,\n                        \"duration_seconds\": 0,\n                        \"wait_time_overage\": 0,\n                        \"process_initial_price\": true,\n                        \"wait_time_overage_seconds\": 0\n                    }\n                ],\n                \"applied_surcharges\": [],\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_time_overage_seconds\": 0\n            },\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"paid\",\n            \"payment_confirmation\": \"cash\",\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": \"2021-04-27 21:39:32\",\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-27 18:13:47\",\n            \"date_updated\": \"2021-04-27 21:39:32\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": \"{\\\"commission_flat_rate\\\":0,\\\"commission_percentage\\\":0}\",\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": \"2021-04-27 21:39:27\",\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": 0,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": 364,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"driver\": {\n                \"employee_id\": 965,\n                \"driver_number\": 1,\n                \"first_name\": \"Test\",\n                \"last_name\": \"Company\",\n                \"username\": \"demodriver@test_company\",\n                \"email\": \"testcompany@testcompany.com\",\n                \"password\": \"$2b$08$791prpyJzcvOtnY8dWUhw.jQms6Bx58QMl0R6N3R2FBr1BLzM4/QS\",\n                \"password_hint\": \"pa*****4\",\n                \"hash\": \"rjgtIGdgx\",\n                \"company_id\": 100,\n                \"location_id\": 388582,\n                \"primary_phone_country\": \"US\",\n                \"primary_phone\": \"2222222222\",\n                \"secondary_phone_country\": null,\n                \"secondary_phone\": null,\n                \"is_driver\": 1,\n                \"role_name\": \"driver\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"social_security_number\": null,\n                \"date_of_birth\": null,\n                \"base\": null,\n                \"base_id\": 67,\n                \"old_base_id\": null,\n                \"base_license_number\": null,\n                \"base_fee\": null,\n                \"base_fee_frequency\": null,\n                \"base_fee_last_processed\": null,\n                \"enable_recurring_base_fee\": 0,\n                \"base_fee_start_date\": null,\n                \"hack_license_number\": null,\n                \"hack_license_expiration\": null,\n                \"driver_license_number\": \"Change this\",\n                \"driver_license_expiration\": \"2021-05-27\",\n                \"driver_license_class\": \"D\",\n                \"is_car_owner\": 0,\n                \"dispatch_app_version\": null,\n                \"device_id\": null,\n                \"date_created\": \"2021-04-27 17:53:51\",\n                \"date_updated\": \"2021-04-28 16:48:55\",\n                \"car_type_id\": 255,\n                \"new_car_type_id\": null,\n                \"car_make\": \"Toyota\",\n                \"car_model\": \"Camry\",\n                \"car_year\": 2016,\n                \"car_color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"on_duty\": 0,\n                \"on_duty_date\": null,\n                \"phone_verified\": null,\n                \"phone_verification_code\": null,\n                \"phone_verified_date\": null,\n                \"picture\": null,\n                \"attributes\": null,\n                \"profile\": null,\n                \"application_approved_date\": null,\n                \"application_approved\": 0,\n                \"number_of_ratings\": 0,\n                \"average_rating\": 0,\n                \"company_commission_data\": {\n                    \"commission_flat_rate\": 0,\n                    \"commission_percentage\": 0\n                },\n                \"transaction_balance\": 0,\n                \"suspended_until\": null,\n                \"date_unsuspending\": null,\n                \"password_reset_hash\": null,\n                \"password_reset_client_hash\": null,\n                \"password_reset_hash_date\": null,\n                \"vehicle_inspection_expiration_date\": \"2021-05-27\",\n                \"is_suspended\": 0,\n                \"recruiter_entity_id\": null,\n                \"recruiter_entity_type\": null,\n                \"car_vin\": null,\n                \"assigned_to_vehicle_id\": 364,\n                \"parent_employee_id\": null,\n                \"custom_attributes\": null,\n                \"primary_phone_international\": \"+1 222 222 2222\",\n                \"primary_phone_national\": \"(222) 222-2222\",\n                \"transaction_balace\": 0,\n                \"car_type\": {\n                    \"vehicle_id\": 364,\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                },\n                \"assigned_to_vehicle\": {\n                    \"vehicle_id\": 364,\n                    \"company_id\": 100,\n                    \"owner_employee_id\": 965,\n                    \"type_id\": 255,\n                    \"name\": null,\n                    \"make\": \"Toyota\",\n                    \"model\": \"Camry\",\n                    \"year\": 2016,\n                    \"color\": \"Black\",\n                    \"registration_number\": \"Change this\",\n                    \"registration_expiration_date\": \"2021-05-27\",\n                    \"registration_owner_name\": \"Demo\",\n                    \"license_plate_number\": \"Change this\",\n                    \"insurance_policy_number\": \"Change this\",\n                    \"insurance_provider_name\": \"Change this\",\n                    \"insurance_expiration_date\": \"2021-05-27\",\n                    \"inspection_expiration_date\": \"2021-05-27\",\n                    \"tlc_number\": null,\n                    \"tlc_expiration_date\": null,\n                    \"tlc_inspection_date\": null,\n                    \"tlc_inspection_expiration_date\": null,\n                    \"is_active\": 1,\n                    \"date_created\": \"2021-04-27T17:53:51Z\",\n                    \"date_updated\": \"2021-04-27T17:53:51Z\",\n                    \"date_deleted\": null,\n                    \"internal_notes\": null,\n                    \"vin\": null,\n                    \"custom_attributes\": null,\n                    \"_type\": \"vehicle\",\n                    \"summary\": \"2016 Black Toyota Camry\",\n                    \"car_type\": {\n                        \"vehicle_id\": 364,\n                        \"type_id\": 255,\n                        \"old_type_id\": null,\n                        \"company_id\": 52,\n                        \"name\": \"SUV\",\n                        \"order\": 30,\n                        \"icon\": \"suv.png\",\n                        \"attributes\": \"{\\\"capacity\\\":{\\\"value\\\":6}}\",\n                        \"is_active\": 1,\n                        \"date_created\": \"2018-08-22 17:36:16\",\n                        \"date_updated\": \"2018-08-22 17:36:16\",\n                        \"date_deleted\": null\n                    }\n                }\n            },\n            \"vehicle\": {\n                \"vehicle_id\": 364,\n                \"company_id\": 100,\n                \"owner_employee_id\": 965,\n                \"type_id\": 255,\n                \"name\": null,\n                \"make\": \"Toyota\",\n                \"model\": \"Camry\",\n                \"year\": 2016,\n                \"color\": \"Black\",\n                \"registration_number\": \"Change this\",\n                \"registration_expiration_date\": \"2021-05-27\",\n                \"registration_owner_name\": \"Demo\",\n                \"license_plate_number\": \"Change this\",\n                \"insurance_policy_number\": \"Change this\",\n                \"insurance_provider_name\": \"Change this\",\n                \"insurance_expiration_date\": \"2021-05-27\",\n                \"inspection_expiration_date\": \"2021-05-27\",\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": 1,\n                \"date_created\": \"2021-04-27T17:53:51Z\",\n                \"date_updated\": \"2021-04-27T17:53:51Z\",\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"_type\": \"vehicle\",\n                \"summary\": \"2016 Black Toyota Camry\",\n                \"car_type\": {\n                    \"type_id\": 255,\n                    \"old_type_id\": null,\n                    \"company_id\": 52,\n                    \"name\": \"SUV\",\n                    \"order\": 30,\n                    \"icon\": \"suv.png\",\n                    \"attributes\": {\n                        \"capacity\": {\n                            \"value\": 6\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_created\": \"2018-08-22 17:36:16\",\n                    \"date_updated\": \"2018-08-22 17:36:16\",\n                    \"date_deleted\": null\n                }\n            },\n            \"driver_base\": {\n                \"base_id\": 67,\n                \"name\": \"TEST_COMPANY\"\n            },\n            \"job_status\": {\n                \"status_id\": 7,\n                \"name\": \"Completed\",\n                \"slug\": \"completed\",\n                \"order\": 70\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 7,\n                \"name\": \"Completed\",\n                \"slug\": \"completed\",\n                \"order\": 70\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 0,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": 0,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"leg_costs\": [\n                    {\n                        \"base_price\": 0,\n                        \"mile_rate\": 0,\n                        \"minute_rate\": 0,\n                        \"wait_rate\": 0,\n                        \"service_fee\": 0,\n                        \"stop_rate\": 0,\n                        \"cancellation_fee\": 0,\n                        \"option_surcharges\": [],\n                        \"estimated_price\": 0\n                    }\n                ],\n                \"applied_surcharges\": [],\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/DV7XSOJRY\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909313,\n                    \"company_id\": 100,\n                    \"job_id\": 2174812,\n                    \"location_id\": 388163,\n                    \"actual_location_id\": 388533,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": {},\n                    \"status_id\": 7,\n                    \"arrival_date\": \"2021-04-27 22:13:00\",\n                    \"actual_arrival_date\": \"2021-04-27 21:20:35\",\n                    \"in_progress_date\": \"2021-04-27 21:20:30\",\n                    \"completed_date\": \"2021-04-27 21:21:20\",\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 18:13:47\",\n                    \"date_updated\": \"2021-04-27 21:21:20\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 17259,\n                    \"duration_to_next_stop_seconds\": 1797,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": 45,\n                    \"total_duration_seconds\": 50,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388163,\n                        \"address\": \"123 William St\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10038\",\n                        \"country\": \"US\",\n                        \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"latitude\": 40.70922,\n                        \"longitude\": -74.00689,\n                        \"date_created\": \"2019-11-07 16:26:36\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                        \"company_id\": null\n                    },\n                    \"actual_location\": {\n                        \"location_id\": 388533,\n                        \"address\": \"93-37 150th St\",\n                        \"address_two\": null,\n                        \"city\": \"Jamaica\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11435\",\n                        \"country\": \"US\",\n                        \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"latitude\": 40.7004,\n                        \"longitude\": -73.80361,\n                        \"date_created\": \"2020-05-27 16:18:41\",\n                        \"date_updated\": \"2020-05-27 16:18:41\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 7,\n                        \"name\": \"Completed\",\n                        \"slug\": \"completed\",\n                        \"order\": 70\n                    }\n                },\n                {\n                    \"job_stop_id\": 3909314,\n                    \"company_id\": 100,\n                    \"job_id\": 2174812,\n                    \"location_id\": 388161,\n                    \"actual_location_id\": 388533,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": {},\n                    \"status_id\": 7,\n                    \"arrival_date\": \"2021-04-27 22:13:00\",\n                    \"actual_arrival_date\": \"2021-04-27 21:21:24\",\n                    \"in_progress_date\": \"2021-04-27 21:21:20\",\n                    \"completed_date\": \"2021-04-27 21:21:30\",\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-27 18:13:47\",\n                    \"date_updated\": \"2021-04-27 21:21:30\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 17259,\n                    \"duration_from_previous_stop_seconds\": 1797,\n                    \"wait_time_seconds\": 6,\n                    \"total_duration_seconds\": 10,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388161,\n                        \"address\": \"234 E 149th St\",\n                        \"address_two\": null,\n                        \"city\": \"Bronx\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10451\",\n                        \"country\": \"US\",\n                        \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                        \"latitude\": 40.81753,\n                        \"longitude\": -73.9241,\n                        \"date_created\": \"2019-11-06 15:25:37\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                        \"company_id\": null\n                    },\n                    \"actual_location\": {\n                        \"location_id\": 388533,\n                        \"address\": \"93-37 150th St\",\n                        \"address_two\": null,\n                        \"city\": \"Jamaica\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11435\",\n                        \"country\": \"US\",\n                        \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                        \"latitude\": 40.7004,\n                        \"longitude\": -73.80361,\n                        \"date_created\": \"2020-05-27 16:18:41\",\n                        \"date_updated\": \"2020-05-27 16:18:41\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 7,\n                        \"name\": \"Completed\",\n                        \"slug\": \"completed\",\n                        \"order\": 70\n                    }\n                }\n            ],\n            \"actual_pickup_location\": {\n                \"location_id\": 388533,\n                \"address\": \"93-37 150th St\",\n                \"address_two\": null,\n                \"city\": \"Jamaica\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11435\",\n                \"country\": \"US\",\n                \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"latitude\": 40.7004,\n                \"longitude\": -73.80361,\n                \"date_created\": \"2020-05-27 16:18:41\",\n                \"date_updated\": \"2020-05-27 16:18:41\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                \"company_id\": null\n            },\n            \"actual_dropoff_location\": {\n                \"location_id\": 388533,\n                \"address\": \"93-37 150th St\",\n                \"address_two\": null,\n                \"city\": \"Jamaica\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11435\",\n                \"country\": \"US\",\n                \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                \"latitude\": 40.7004,\n                \"longitude\": -73.80361,\n                \"date_created\": \"2020-05-27 16:18:41\",\n                \"date_updated\": \"2020-05-27 16:18:41\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                \"company_id\": null\n            },\n            \"current_stop\": {\n                \"job_stop_id\": 3909313,\n                \"company_id\": 100,\n                \"job_id\": 2174812,\n                \"location_id\": 388163,\n                \"actual_location_id\": 388533,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-27 22:13:00\",\n                \"actual_arrival_date\": \"2021-04-27 21:20:35\",\n                \"in_progress_date\": \"2021-04-27 21:20:30\",\n                \"completed_date\": \"2021-04-27 21:21:20\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 18:13:47\",\n                \"date_updated\": \"2021-04-27 21:21:20\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 17259,\n                \"duration_to_next_stop_seconds\": 1797,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": 45,\n                \"total_duration_seconds\": 50,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388163,\n                    \"address\": \"123 William St\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10038\",\n                    \"country\": \"US\",\n                    \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"latitude\": 40.70922,\n                    \"longitude\": -74.00689,\n                    \"date_created\": \"2019-11-07 16:26:36\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388533,\n                    \"address\": \"93-37 150th St\",\n                    \"address_two\": null,\n                    \"city\": \"Jamaica\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11435\",\n                    \"country\": \"US\",\n                    \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"latitude\": 40.7004,\n                    \"longitude\": -73.80361,\n                    \"date_created\": \"2020-05-27 16:18:41\",\n                    \"date_updated\": \"2020-05-27 16:18:41\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                }\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909314,\n                \"company_id\": 100,\n                \"job_id\": 2174812,\n                \"location_id\": 388161,\n                \"actual_location_id\": 388533,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": {},\n                \"status_id\": 7,\n                \"arrival_date\": \"2021-04-27 22:13:00\",\n                \"actual_arrival_date\": \"2021-04-27 21:21:24\",\n                \"in_progress_date\": \"2021-04-27 21:21:20\",\n                \"completed_date\": \"2021-04-27 21:21:30\",\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-27 18:13:47\",\n                \"date_updated\": \"2021-04-27 21:21:30\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 17259,\n                \"duration_from_previous_stop_seconds\": 1797,\n                \"wait_time_seconds\": 6,\n                \"total_duration_seconds\": 10,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388161,\n                    \"address\": \"234 E 149th St\",\n                    \"address_two\": null,\n                    \"city\": \"Bronx\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10451\",\n                    \"country\": \"US\",\n                    \"long_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"short_name\": \"234 E 149th St, Bronx, NY 10451, United States\",\n                    \"latitude\": 40.81753,\n                    \"longitude\": -73.9241,\n                    \"date_created\": \"2019-11-06 15:25:37\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c2696860bd75d1ff97440a322873647d\",\n                    \"company_id\": null\n                },\n                \"actual_location\": {\n                    \"location_id\": 388533,\n                    \"address\": \"93-37 150th St\",\n                    \"address_two\": null,\n                    \"city\": \"Jamaica\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11435\",\n                    \"country\": \"US\",\n                    \"long_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"short_name\": \"93-37 150th St, Jamaica, NY 11435, United States\",\n                    \"latitude\": 40.7004,\n                    \"longitude\": -73.80361,\n                    \"date_created\": \"2020-05-27 16:18:41\",\n                    \"date_updated\": \"2020-05-27 16:18:41\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"59cd5f60660eddb24304cc5af57afeef\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 7,\n                    \"name\": \"Completed\",\n                    \"slug\": \"completed\",\n                    \"order\": 70\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174819,\n            \"job_number\": 9,\n            \"origin_job_number\": null,\n            \"hash\": \"gTD92-ynf\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388593,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388592,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388593,\n                \"address\": \"23 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58173,\n                \"longitude\": -73.9678,\n                \"date_created\": \"2021-04-28 17:39:54\",\n                \"date_updated\": \"2021-04-28 17:39:54\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388592,\n                \"address\": \"222 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58165,\n                \"longitude\": -73.96903,\n                \"date_created\": \"2021-04-28 17:39:16\",\n                \"date_updated\": \"2021-04-28 17:39:16\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2020-01-28 21:51:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"Doorbell doesnt work\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": 964,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 25,\n            \"price_override_flag\": 1,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 17:39:57\",\n            \"date_updated\": \"2021-04-28 17:39:57\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": {\n                \"somekey\": \"someval\",\n                \"otherkey\": \"otherval\",\n                \"nested\": {\n                    \"nestedkey\": \"nestedval\"\n                }\n            },\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 25,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 25,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 25,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/gTD92-ynf\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909329,\n                    \"company_id\": 100,\n                    \"job_id\": 2174819,\n                    \"location_id\": 388593,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2020-01-29 02:51:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:39:57\",\n                    \"date_updated\": \"2021-04-28 17:39:58\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 234,\n                    \"duration_to_next_stop_seconds\": 374,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388593,\n                        \"address\": \"23 West Ave\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11224\",\n                        \"country\": \"US\",\n                        \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                        \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                        \"latitude\": 40.58173,\n                        \"longitude\": -73.9678,\n                        \"date_created\": \"2021-04-28 17:39:54\",\n                        \"date_updated\": \"2021-04-28 17:39:54\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"job_stop_actions\": [\n                        {\n                            \"job_stop_action_id\": 4240,\n                            \"company_id\": 100,\n                            \"job_id\": 2174819,\n                            \"job_stop_id\": 3909329,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"confirmation\",\n                                \"display\": \"Confirmation\",\n                                \"has_attachment\": 1,\n                                \"has_body\": true,\n                                \"attachment_name\": \"Signature\",\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"require_notes\": {\n                                        \"id\": \"require_notes\",\n                                        \"display\": \"Requires Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"show_notes\": {\n                                        \"id\": \"show_notes\",\n                                        \"display\": \"Show Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 1,\n                            \"button_text\": \"Confirmation\",\n                            \"description\": \"Accept this confirmation\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"show_notes\": 1,\n                                    \"require_notes\": 1,\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:39:57\",\n                            \"date_updated\": \"2021-04-28 17:39:57\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": \"Do you accept?\"\n                        },\n                        {\n                            \"job_stop_action_id\": 4241,\n                            \"company_id\": 100,\n                            \"job_id\": 2174819,\n                            \"job_stop_id\": 3909329,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"order_acknowledgement\",\n                                \"display\": \"Order Acknowledgement\",\n                                \"has_attachment\": 1,\n                                \"attachment_name\": \"Signature\",\n                                \"item_statuses\": {\n                                    \"rejected\": {\n                                        \"id\": \"rejected\",\n                                        \"display\": \"Rejected\"\n                                    },\n                                    \"accepted\": {\n                                        \"id\": \"accepted\",\n                                        \"display\": \"Accepted\"\n                                    }\n                                },\n                                \"rejection_reasons\": {\n                                    \"lost_or_damaged\": {\n                                        \"id\": \"lost_or_damaged\",\n                                        \"display\": \"Lost or Damaged\",\n                                        \"order\": 1\n                                    },\n                                    \"wrong_quantity\": {\n                                        \"id\": \"wrong_quantity\",\n                                        \"display\": \"Wrong Quantity\",\n                                        \"order\": 2\n                                    },\n                                    \"other\": {\n                                        \"id\": \"other\",\n                                        \"display\": \"Other\",\n                                        \"order\": 3\n                                    }\n                                },\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 2,\n                            \"button_text\": \"Order Acknowledgement\",\n                            \"description\": \"Order Acknowledgement\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:39:57\",\n                            \"date_updated\": \"2021-04-28 17:39:57\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": null\n                        }\n                    ],\n                    \"next_job_stop_action\": null\n                },\n                {\n                    \"job_stop_id\": 3909328,\n                    \"company_id\": 100,\n                    \"job_id\": 2174819,\n                    \"location_id\": 388592,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 01:51:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:39:57\",\n                    \"date_updated\": \"2021-04-28 17:39:58\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 234,\n                    \"duration_from_previous_stop_seconds\": 374,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T17:41:09Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388592,\n                        \"address\": \"222 West Ave\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11224\",\n                        \"country\": \"US\",\n                        \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                        \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                        \"latitude\": 40.58165,\n                        \"longitude\": -73.96903,\n                        \"date_created\": \"2021-04-28 17:39:16\",\n                        \"date_updated\": \"2021-04-28 17:39:16\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909329,\n                \"company_id\": 100,\n                \"job_id\": 2174819,\n                \"location_id\": 388593,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2020-01-29 02:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:39:57\",\n                \"date_updated\": \"2021-04-28 17:39:58\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 234,\n                \"duration_to_next_stop_seconds\": 374,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388593,\n                    \"address\": \"23 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58173,\n                    \"longitude\": -73.9678,\n                    \"date_created\": \"2021-04-28 17:39:54\",\n                    \"date_updated\": \"2021-04-28 17:39:54\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4240,\n                        \"company_id\": 100,\n                        \"job_id\": 2174819,\n                        \"job_stop_id\": 3909329,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:39:57\",\n                        \"date_updated\": \"2021-04-28 17:39:57\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4241,\n                        \"company_id\": 100,\n                        \"job_id\": 2174819,\n                        \"job_stop_id\": 3909329,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:39:57\",\n                        \"date_updated\": \"2021-04-28 17:39:57\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909328,\n                \"company_id\": 100,\n                \"job_id\": 2174819,\n                \"location_id\": 388592,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:39:57\",\n                \"date_updated\": \"2021-04-28 17:39:58\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 234,\n                \"duration_from_previous_stop_seconds\": 374,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T17:41:09Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388592,\n                    \"address\": \"222 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58165,\n                    \"longitude\": -73.96903,\n                    \"date_created\": \"2021-04-28 17:39:16\",\n                    \"date_updated\": \"2021-04-28 17:39:16\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174820,\n            \"job_number\": 10,\n            \"origin_job_number\": null,\n            \"hash\": \"MvDf8wP58\",\n            \"user_id\": 314,\n            \"contact_name\": \"guest user\",\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388593,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388592,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388593,\n                \"address\": \"23 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58173,\n                \"longitude\": -73.9678,\n                \"date_created\": \"2021-04-28 17:39:54\",\n                \"date_updated\": \"2021-04-28 17:39:54\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388592,\n                \"address\": \"222 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58165,\n                \"longitude\": -73.96903,\n                \"date_created\": \"2021-04-28 17:39:16\",\n                \"date_updated\": \"2021-04-28 17:39:16\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2020-01-28 21:51:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"Doorbell doesnt work\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": null,\n            \"updated_by_employee_id\": null,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 25,\n            \"price_override_flag\": 1,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 17:45:04\",\n            \"date_updated\": \"2021-04-28 17:45:04\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": {\n                \"somekey\": \"someval\",\n                \"otherkey\": \"otherval\",\n                \"nested\": {\n                    \"nestedkey\": \"nestedval\"\n                }\n            },\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": 25,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 25,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 25,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/MvDf8wP58\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909331,\n                    \"company_id\": 100,\n                    \"job_id\": 2174820,\n                    \"location_id\": 388593,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2020-01-29 02:51:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:45:04\",\n                    \"date_updated\": \"2021-04-28 17:45:06\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 234,\n                    \"duration_to_next_stop_seconds\": 374,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388593,\n                        \"address\": \"23 West Ave\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11224\",\n                        \"country\": \"US\",\n                        \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                        \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                        \"latitude\": 40.58173,\n                        \"longitude\": -73.9678,\n                        \"date_created\": \"2021-04-28 17:39:54\",\n                        \"date_updated\": \"2021-04-28 17:39:54\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"job_stop_actions\": [\n                        {\n                            \"job_stop_action_id\": 4242,\n                            \"company_id\": 100,\n                            \"job_id\": 2174820,\n                            \"job_stop_id\": 3909331,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"confirmation\",\n                                \"display\": \"Confirmation\",\n                                \"has_attachment\": 1,\n                                \"has_body\": true,\n                                \"attachment_name\": \"Signature\",\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"require_notes\": {\n                                        \"id\": \"require_notes\",\n                                        \"display\": \"Requires Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"show_notes\": {\n                                        \"id\": \"show_notes\",\n                                        \"display\": \"Show Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 1,\n                            \"button_text\": \"Confirmation\",\n                            \"description\": \"Accept this confirmation\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"show_notes\": 1,\n                                    \"require_notes\": 1,\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:45:05\",\n                            \"date_updated\": \"2021-04-28 17:45:05\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": \"Do you accept?\"\n                        },\n                        {\n                            \"job_stop_action_id\": 4243,\n                            \"company_id\": 100,\n                            \"job_id\": 2174820,\n                            \"job_stop_id\": 3909331,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"order_acknowledgement\",\n                                \"display\": \"Order Acknowledgement\",\n                                \"has_attachment\": 1,\n                                \"attachment_name\": \"Signature\",\n                                \"item_statuses\": {\n                                    \"rejected\": {\n                                        \"id\": \"rejected\",\n                                        \"display\": \"Rejected\"\n                                    },\n                                    \"accepted\": {\n                                        \"id\": \"accepted\",\n                                        \"display\": \"Accepted\"\n                                    }\n                                },\n                                \"rejection_reasons\": {\n                                    \"lost_or_damaged\": {\n                                        \"id\": \"lost_or_damaged\",\n                                        \"display\": \"Lost or Damaged\",\n                                        \"order\": 1\n                                    },\n                                    \"wrong_quantity\": {\n                                        \"id\": \"wrong_quantity\",\n                                        \"display\": \"Wrong Quantity\",\n                                        \"order\": 2\n                                    },\n                                    \"other\": {\n                                        \"id\": \"other\",\n                                        \"display\": \"Other\",\n                                        \"order\": 3\n                                    }\n                                },\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 2,\n                            \"button_text\": \"Order Acknowledgement\",\n                            \"description\": \"Order Acknowledgement\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:45:05\",\n                            \"date_updated\": \"2021-04-28 17:45:05\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": null\n                        }\n                    ],\n                    \"next_job_stop_action\": null\n                },\n                {\n                    \"job_stop_id\": 3909330,\n                    \"company_id\": 100,\n                    \"job_id\": 2174820,\n                    \"location_id\": 388592,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2021-04-29 01:51:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:45:04\",\n                    \"date_updated\": \"2021-04-28 17:45:06\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 234,\n                    \"duration_from_previous_stop_seconds\": 374,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T17:46:16Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388592,\n                        \"address\": \"222 West Ave\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"11224\",\n                        \"country\": \"US\",\n                        \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                        \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                        \"latitude\": 40.58165,\n                        \"longitude\": -73.96903,\n                        \"date_created\": \"2021-04-28 17:39:16\",\n                        \"date_updated\": \"2021-04-28 17:39:16\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909331,\n                \"company_id\": 100,\n                \"job_id\": 2174820,\n                \"location_id\": 388593,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2020-01-29 02:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:04\",\n                \"date_updated\": \"2021-04-28 17:45:06\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 234,\n                \"duration_to_next_stop_seconds\": 374,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388593,\n                    \"address\": \"23 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58173,\n                    \"longitude\": -73.9678,\n                    \"date_created\": \"2021-04-28 17:39:54\",\n                    \"date_updated\": \"2021-04-28 17:39:54\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4242,\n                        \"company_id\": 100,\n                        \"job_id\": 2174820,\n                        \"job_stop_id\": 3909331,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:05\",\n                        \"date_updated\": \"2021-04-28 17:45:05\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4243,\n                        \"company_id\": 100,\n                        \"job_id\": 2174820,\n                        \"job_stop_id\": 3909331,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:05\",\n                        \"date_updated\": \"2021-04-28 17:45:05\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909330,\n                \"company_id\": 100,\n                \"job_id\": 2174820,\n                \"location_id\": 388592,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:04\",\n                \"date_updated\": \"2021-04-28 17:45:06\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 234,\n                \"duration_from_previous_stop_seconds\": 374,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.58165,\\\"lng\\\":-73.96903,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T17:46:16Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":234,\\\"time\\\":74,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388592,\n                    \"address\": \"222 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58165,\n                    \"longitude\": -73.96903,\n                    \"date_created\": \"2021-04-28 17:39:16\",\n                    \"date_updated\": \"2021-04-28 17:39:16\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        },\n        {\n            \"job_id\": 2174821,\n            \"job_number\": 11,\n            \"origin_job_number\": null,\n            \"hash\": \"h8I1gzE1O\",\n            \"user_id\": null,\n            \"contact_name\": null,\n            \"account_id\": null,\n            \"phone_country\": \"US\",\n            \"phone\": \"2222222222\",\n            \"company_id\": 100,\n            \"origin_company_id\": null,\n            \"application_id\": 1000000193,\n            \"driver_id\": null,\n            \"pickup_location_id\": 388163,\n            \"actual_pickup_location_id\": null,\n            \"dropoff_location_id\": 388171,\n            \"actual_dropoff_location_id\": null,\n            \"pickup_location\": {\n                \"location_id\": 388163,\n                \"address\": \"123 William St\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10038\",\n                \"country\": \"US\",\n                \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                \"latitude\": 40.70922,\n                \"longitude\": -74.00689,\n                \"date_created\": \"2019-11-07 16:26:36\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                \"company_id\": null\n            },\n            \"pickup_location_name\": null,\n            \"pickup_location_notes\": \"\",\n            \"dropoff_location\": {\n                \"location_id\": 388171,\n                \"address\": \"444 Madison Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"10022\",\n                \"country\": \"US\",\n                \"long_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                \"short_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                \"latitude\": 40.75768,\n                \"longitude\": -73.97591,\n                \"date_created\": \"2019-11-11 20:55:22\",\n                \"date_updated\": \"2020-02-05 17:06:28\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"b8b0f02b3eca3169f328f55580bdb51e\",\n                \"company_id\": null\n            },\n            \"dropoff_location_name\": null,\n            \"pickup_date\": \"2019-07-08 15:18:00\",\n            \"actual_pickup_date\": null,\n            \"dropoff_date\": null,\n            \"car_type_id\": null,\n            \"passengers\": 1,\n            \"status_id\": 1,\n            \"in_progress_date\": null,\n            \"infront_date\": null,\n            \"cancelled_date\": null,\n            \"driver_notes\": \"\",\n            \"internal_notes\": \"\",\n            \"is_reservation\": 0,\n            \"reservation_confirmation\": null,\n            \"entered_by_employee_id\": 964,\n            \"updated_by_employee_id\": 964,\n            \"date_timezone_offset\": 0,\n            \"notify_passenger\": 0,\n            \"passenger_notified_date\": null,\n            \"estimated_price\": null,\n            \"show_estimated_price\": 0,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": null,\n            \"price_override_flag\": 0,\n            \"tip\": 0,\n            \"pricing_data\": null,\n            \"payment_processor\": null,\n            \"payment_method\": \"cash\",\n            \"payment_status\": \"pending\",\n            \"payment_confirmation\": null,\n            \"payment_authorized_amount\": null,\n            \"payment_authorized_date\": null,\n            \"payment_paid_date\": null,\n            \"payment_refunded_amount\": null,\n            \"payment_refunded_date\": null,\n            \"start_date\": null,\n            \"driver_reminded_date\": null,\n            \"date_created\": \"2021-04-28 17:45:54\",\n            \"date_updated\": \"2021-04-28 17:45:54\",\n            \"autodispatch_date\": null,\n            \"autodispatch_config_id\": null,\n            \"exclude_from_autodispatcher\": 0,\n            \"show_contact_details\": 0,\n            \"parent_job_id\": null,\n            \"parent_job_number\": null,\n            \"type\": null,\n            \"optimize\": 0,\n            \"meta\": null,\n            \"driver_rating\": null,\n            \"passenger_rating_notes\": null,\n            \"passenger_rating\": null,\n            \"company_commission_data\": null,\n            \"company_commission\": 0,\n            \"promo_code_id\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"date_capturing\": null,\n            \"price_adjustment\": 0,\n            \"driver_rating_notes\": null,\n            \"payment_source_reference\": null,\n            \"items\": null,\n            \"account_price_adjustment\": null,\n            \"referral_code_id\": null,\n            \"referral_code_reward\": null,\n            \"dispatch_group_id\": null,\n            \"dispatch_group_order\": null,\n            \"dispatch_group_optimization_method\": null,\n            \"dispatch_group_data\": null,\n            \"payment_status_cleaning_lock_date\": null,\n            \"payment_completed_by_date\": null,\n            \"payment_completed_by_employee_id\": null,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"external_data\": null,\n            \"external_source\": null,\n            \"external_id\": null,\n            \"attachments\": null,\n            \"payment_type\": null,\n            \"phone_international\": \"+1 222 222 2222\",\n            \"phone_national\": \"(222) 222-2222\",\n            \"dispatch_group_date\": null,\n            \"rnadom\": null,\n            \"payment_confirmation_old\": null,\n            \"vehicle_id\": null,\n            \"total_weight\": null,\n            \"eta_date_last_updated\": null,\n            \"vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null,\n                \"summary\": \"null null null null\"\n            },\n            \"driver_assigned_to_vehicle\": {\n                \"vehicle_id\": null,\n                \"company_id\": null,\n                \"owner_employee_id\": null,\n                \"name\": null,\n                \"type_id\": null,\n                \"make\": null,\n                \"model\": null,\n                \"year\": null,\n                \"color\": null,\n                \"registration_number\": null,\n                \"registration_expiration_date\": null,\n                \"registration_owner_name\": null,\n                \"license_plate_number\": null,\n                \"insurance_policy_number\": null,\n                \"insurance_provider_name\": null,\n                \"insurance_expiration_date\": null,\n                \"inspection_expiration_date\": null,\n                \"tlc_number\": null,\n                \"tlc_expiration_date\": null,\n                \"tlc_inspection_date\": null,\n                \"tlc_inspection_expiration_date\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"internal_notes\": null,\n                \"vin\": null,\n                \"custom_attributes\": null\n            },\n            \"vehicle_car_type\": {\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"driver_base\": {\n                \"base_id\": null,\n                \"name\": null\n            },\n            \"driver_car_type\": {\n                \"vehicle_id\": null,\n                \"type_id\": null,\n                \"old_type_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"order\": null,\n                \"icon\": null,\n                \"attributes\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"job_status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"application\": {\n                \"application_id\": 1000000193,\n                \"name\": \"Dashboard\",\n                \"role_name\": \"api-public\",\n                \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n                \"company_id\": 100,\n                \"base_id\": 67,\n                \"is_active\": 1,\n                \"icon\": null,\n                \"type\": \"dashboard\",\n                \"is_internal\": 1,\n                \"date_created\": \"2021-04-27 17:53:50\",\n                \"date_updated\": \"2021-04-27 17:53:50\",\n                \"eula\": null,\n                \"meta\": null\n            },\n            \"job_options\": null,\n            \"car_types\": null,\n            \"promo_code\": {\n                \"promo_code_id\": null,\n                \"company_id\": null,\n                \"code\": null,\n                \"active\": null,\n                \"minimum_price\": null,\n                \"max_uses\": null,\n                \"uses\": null,\n                \"uses_per_user\": null,\n                \"discount_amount\": null,\n                \"discount_percentage\": null,\n                \"activation_date\": null,\n                \"expiration_date\": null,\n                \"date_created\": null,\n                \"location\": null,\n                \"restricted_to_user_id\": null,\n                \"owned_by_user_id\": null,\n                \"description\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null\n            },\n            \"referral_code\": {\n                \"referral_code_id\": null,\n                \"company_id\": null,\n                \"name\": null,\n                \"owner_entity_type\": null,\n                \"owner_entity_id\": null,\n                \"reward_flat_rate\": null,\n                \"reward_percentage\": null,\n                \"description\": null,\n                \"is_active\": null,\n                \"date_created\": null,\n                \"date_updated\": null,\n                \"date_deleted\": null,\n                \"money_responsibility\": null,\n                \"code\": null,\n                \"type\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"pricing_summary\": {\n                \"estimated_price\": null,\n                \"suggested_actual_price\": 0,\n                \"actual_price\": null,\n                \"payment_authorized_amount\": null,\n                \"payment_refunded_amount\": null,\n                \"total_distance_meters\": 0,\n                \"total_duration_seconds\": 0,\n                \"total_wait_fee\": 0,\n                \"total_cancellation_fee\": 0,\n                \"sub_total\": 0,\n                \"customer_credit_amount_used\": null,\n                \"payment_captured_amount\": null,\n                \"undiscounted_suggested_price\": 0,\n                \"discount_amount\": 0,\n                \"total\": 0,\n                \"payment_summary\": \"Cash\"\n            },\n            \"share_url\": \"https://tracker.protected.site/webbooker/track/h8I1gzE1O\",\n            \"payment_instructions\": {\n                \"collect_payment\": false\n            },\n            \"stops\": [\n                {\n                    \"job_stop_id\": 3909332,\n                    \"company_id\": 100,\n                    \"job_id\": 2174821,\n                    \"location_id\": 388163,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"pickup\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2019-07-08 19:18:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 1,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:45:54\",\n                    \"date_updated\": \"2021-04-28 17:45:56\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 8813,\n                    \"duration_to_next_stop_seconds\": 1362,\n                    \"distance_from_previous_stop_meters\": 0,\n                    \"duration_from_previous_stop_seconds\": 0,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": null,\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388163,\n                        \"address\": \"123 William St\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10038\",\n                        \"country\": \"US\",\n                        \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                        \"latitude\": 40.70922,\n                        \"longitude\": -74.00689,\n                        \"date_created\": \"2019-11-07 16:26:36\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    },\n                    \"job_stop_actions\": [\n                        {\n                            \"job_stop_action_id\": 4244,\n                            \"company_id\": 100,\n                            \"job_id\": 2174821,\n                            \"job_stop_id\": 3909332,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"confirmation\",\n                                \"display\": \"Confirmation\",\n                                \"has_attachment\": 1,\n                                \"has_body\": true,\n                                \"attachment_name\": \"Signature\",\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"require_notes\": {\n                                        \"id\": \"require_notes\",\n                                        \"display\": \"Requires Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    },\n                                    \"show_notes\": {\n                                        \"id\": \"show_notes\",\n                                        \"display\": \"Show Driver Notes\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 1,\n                            \"button_text\": \"Confirmation\",\n                            \"description\": \"Accept this confirmation\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"show_notes\": 1,\n                                    \"require_notes\": 1,\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:45:55\",\n                            \"date_updated\": \"2021-04-28 17:45:55\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": \"Do you accept?\"\n                        },\n                        {\n                            \"job_stop_action_id\": 4245,\n                            \"company_id\": 100,\n                            \"job_id\": 2174821,\n                            \"job_stop_id\": 3909332,\n                            \"job_stop_type\": \"pickup\",\n                            \"type\": {\n                                \"id\": \"order_acknowledgement\",\n                                \"display\": \"Order Acknowledgement\",\n                                \"has_attachment\": 1,\n                                \"attachment_name\": \"Signature\",\n                                \"item_statuses\": {\n                                    \"rejected\": {\n                                        \"id\": \"rejected\",\n                                        \"display\": \"Rejected\"\n                                    },\n                                    \"accepted\": {\n                                        \"id\": \"accepted\",\n                                        \"display\": \"Accepted\"\n                                    }\n                                },\n                                \"rejection_reasons\": {\n                                    \"lost_or_damaged\": {\n                                        \"id\": \"lost_or_damaged\",\n                                        \"display\": \"Lost or Damaged\",\n                                        \"order\": 1\n                                    },\n                                    \"wrong_quantity\": {\n                                        \"id\": \"wrong_quantity\",\n                                        \"display\": \"Wrong Quantity\",\n                                        \"order\": 2\n                                    },\n                                    \"other\": {\n                                        \"id\": \"other\",\n                                        \"display\": \"Other\",\n                                        \"order\": 3\n                                    }\n                                },\n                                \"settings\": {\n                                    \"require_signature\": {\n                                        \"id\": \"require_signature\",\n                                        \"display\": \"Requires Signature\",\n                                        \"optional\": true,\n                                        \"type\": \"checkbox\"\n                                    }\n                                }\n                            },\n                            \"stop_status_id\": 4,\n                            \"order\": 2,\n                            \"button_text\": \"Order Acknowledgement\",\n                            \"description\": \"Order Acknowledgement\",\n                            \"url\": null,\n                            \"attachments\": null,\n                            \"meta\": {\n                                \"settings\": {\n                                    \"require_signature\": 1\n                                }\n                            },\n                            \"is_active\": 1,\n                            \"date_completed\": null,\n                            \"date_created\": \"2021-04-28 17:45:55\",\n                            \"date_updated\": \"2021-04-28 17:45:55\",\n                            \"date_deleted\": null,\n                            \"type_data\": null,\n                            \"body\": null\n                        }\n                    ],\n                    \"next_job_stop_action\": null\n                },\n                {\n                    \"job_stop_id\": 3909333,\n                    \"company_id\": 100,\n                    \"job_id\": 2174821,\n                    \"location_id\": 388171,\n                    \"actual_location_id\": null,\n                    \"user_id\": null,\n                    \"type\": \"dropoff\",\n                    \"meta\": null,\n                    \"status_id\": 1,\n                    \"arrival_date\": \"2019-07-08 19:18:00\",\n                    \"actual_arrival_date\": null,\n                    \"in_progress_date\": null,\n                    \"completed_date\": null,\n                    \"cancelled_date\": null,\n                    \"contact_phone_country\": null,\n                    \"contact_phone\": null,\n                    \"contact_name\": null,\n                    \"notes\": null,\n                    \"driver_notes\": null,\n                    \"internal_notes\": null,\n                    \"order\": 2,\n                    \"attachments\": null,\n                    \"date_created\": \"2021-04-28 17:45:54\",\n                    \"date_updated\": \"2021-04-28 17:45:56\",\n                    \"date_deleted\": null,\n                    \"distance_to_next_stop_meters\": 0,\n                    \"duration_to_next_stop_seconds\": 0,\n                    \"distance_from_previous_stop_meters\": 8813,\n                    \"duration_from_previous_stop_seconds\": 1362,\n                    \"wait_time_seconds\": null,\n                    \"total_duration_seconds\": null,\n                    \"return_stop_id\": null,\n                    \"recipient\": null,\n                    \"apartment_number\": null,\n                    \"cancellation_reason\": null,\n                    \"contact_phone_international\": null,\n                    \"contact_phone_national\": null,\n                    \"dispatch_group_order\": null,\n                    \"skip_stop\": 0,\n                    \"time_window_end_time\": null,\n                    \"time_window_start_time\": null,\n                    \"time_window_waiting_time_seconds\": null,\n                    \"ignore_time_windows\": 0,\n                    \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.75768,\\\"lng\\\":-73.97591,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T18:03:34Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":8813,\\\"time\\\":1062,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                    \"estimated_departure_date\": null,\n                    \"estimated_arrival_date\": null,\n                    \"location\": {\n                        \"location_id\": 388171,\n                        \"address\": \"444 Madison Ave\",\n                        \"address_two\": null,\n                        \"city\": \"New York\",\n                        \"state\": \"New York\",\n                        \"postal_code\": \"10022\",\n                        \"country\": \"US\",\n                        \"long_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                        \"short_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                        \"latitude\": 40.75768,\n                        \"longitude\": -73.97591,\n                        \"date_created\": \"2019-11-11 20:55:22\",\n                        \"date_updated\": \"2020-02-05 17:06:28\",\n                        \"place_id\": null,\n                        \"apartment_number\": null,\n                        \"types\": [\n                            \"point\"\n                        ],\n                        \"hash\": \"b8b0f02b3eca3169f328f55580bdb51e\",\n                        \"company_id\": null\n                    },\n                    \"status\": {\n                        \"status_id\": 1,\n                        \"name\": \"Pending\",\n                        \"slug\": \"pending\",\n                        \"order\": 10\n                    }\n                }\n            ],\n            \"current_stop\": {\n                \"job_stop_id\": 3909332,\n                \"company_id\": 100,\n                \"job_id\": 2174821,\n                \"location_id\": 388163,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2019-07-08 19:18:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:54\",\n                \"date_updated\": \"2021-04-28 17:45:56\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 8813,\n                \"duration_to_next_stop_seconds\": 1362,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388163,\n                    \"address\": \"123 William St\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10038\",\n                    \"country\": \"US\",\n                    \"long_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"short_name\": \"123 William St, New York, NY 10038, United States\",\n                    \"latitude\": 40.70922,\n                    \"longitude\": -74.00689,\n                    \"date_created\": \"2019-11-07 16:26:36\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b9e4317cf19a6272c78cac62f528fbe8\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4244,\n                        \"company_id\": 100,\n                        \"job_id\": 2174821,\n                        \"job_stop_id\": 3909332,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:55\",\n                        \"date_updated\": \"2021-04-28 17:45:55\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4245,\n                        \"company_id\": 100,\n                        \"job_id\": 2174821,\n                        \"job_stop_id\": 3909332,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-28 17:45:55\",\n                        \"date_updated\": \"2021-04-28 17:45:55\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            \"next_stop\": {\n                \"job_stop_id\": 3909333,\n                \"company_id\": 100,\n                \"job_id\": 2174821,\n                \"location_id\": 388171,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2019-07-08 19:18:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-28 17:45:54\",\n                \"date_updated\": \"2021-04-28 17:45:56\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 8813,\n                \"duration_from_previous_stop_seconds\": 1362,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": \"{\\\"id\\\":\\\"destination\\\",\\\"lat\\\":40.75768,\\\"lng\\\":-73.97591,\\\"sequence\\\":1,\\\"estimatedArrival\\\":\\\"2021-04-28T18:03:34Z\\\",\\\"estimatedDeparture\\\":null,\\\"fulfilledConstraints\\\":[\\\"st:300\\\"],\\\"fromWaypoint\\\":\\\"origin\\\",\\\"toWaypoint\\\":\\\"destination\\\",\\\"distance\\\":8813,\\\"time\\\":1062,\\\"rest\\\":0,\\\"waiting\\\":0}\",\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388171,\n                    \"address\": \"444 Madison Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"10022\",\n                    \"country\": \"US\",\n                    \"long_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                    \"short_name\": \"444 Madison Ave, New York, NY 10022, United States\",\n                    \"latitude\": 40.75768,\n                    \"longitude\": -73.97591,\n                    \"date_created\": \"2019-11-11 20:55:22\",\n                    \"date_updated\": \"2020-02-05 17:06:28\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"b8b0f02b3eca3169f328f55580bdb51e\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            },\n            \"previous_stop\": null\n        }\n    ],\n    \"meta\": {\n        \"paging\": {\n            \"per_page\": 25,\n            \"total_pages\": 1,\n            \"page\": 1,\n            \"total_results\": 10,\n            \"previous\": null,\n            \"next\": null\n        },\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\",\n        \"items\": 10\n    }\n}"}],"_postman_id":"714ec1a1-8b7c-40f6-a629-73dca10234c1"},{"name":"Update Job","id":"6300ba0b-6032-4c58-b60c-ac06b8d1e4d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_id","value":"2174821","type":"text"},{"key":"phone","value":"2222222222","type":"text"},{"key":"phone_country","value":"US","type":"text"},{"key":"contact_name","value":"Contact Name","description":"<p>2-character ISO 3166-1 region code (e.g. 'SE' for Sweden, 'US' for United States)</p>\n","type":"text","disabled":true},{"key":"pickup_date","value":"2021-04-26T08:59:13+0000","type":"text","disabled":true},{"key":"car_type","value":"100","type":"text"},{"key":"internal_notes","value":"Doorbell doesnt work","type":"text"},{"key":"stops[0][address]","value":"123 West Ave","type":"text","disabled":true},{"key":"stops[0][city]","value":"New York","type":"text","disabled":true},{"key":"stops[0][state]","value":"New York","type":"text","disabled":true},{"key":"stops[0][postal_code]","value":"","type":"text","disabled":true},{"key":"stops[0][latitude]","value":"40.72822","type":"text","disabled":true},{"key":"stops[0][longitude]","value":"-73.70667000000003","type":"text","disabled":true},{"key":"stops[0][long_name]","value":"!23 West Ave New York, NY","type":"text"},{"key":"stops[0][short_name]","value":"!23 West Ave NY","type":"text","disabled":true},{"key":"stops[0][country]","value":"US","type":"text","disabled":true},{"key":"stops[0][type]","value":"pickup","type":"text"},{"key":"stops[0][notes]","value":"stop notes","type":"text","disabled":true},{"key":"stops[0][arrival_date]","value":"2020-01-28T17:51:00-04:00","type":"text"},{"key":"stops[0][location_id]","value":"1234","type":"text","disabled":true},{"key":"stops[0][apartment_number]","value":"123A","type":"text","disabled":true},{"key":"stops[1][address]","value":"330 Old Country Road","type":"text","disabled":true},{"key":"stops[1][city]","value":"Mineola","type":"text","disabled":true},{"key":"stops[1][state]","value":"New York","type":"text","disabled":true},{"key":"stops[1][postal_code]","value":"11501","type":"text","disabled":true},{"key":"stops[1][latitude]","value":"40.7382953","type":"text","disabled":true},{"key":"stops[1][longitude]","value":"-73.64537630000001","type":"text","disabled":true},{"key":"stops[1][long_name]","value":"222 West Ave New York, NY","type":"text"},{"key":"stops[1][short_name]","value":"222 West Ave ","type":"text","disabled":true},{"key":"stops[1][country]","value":"US","type":"text","disabled":true},{"key":"stops[1][type]","value":"dropoff","type":"text"},{"key":"stops[1][contact_name]","value":"Contact Name","type":"text","disabled":true},{"key":"stops[1][contact_phone]","value":"3333333333","type":"text","disabled":true},{"key":"stops[1][arrival_date]","value":"2021-04-28T17:51:00-04:00","type":"text"},{"key":"stops[1][location_id]","value":"1234","type":"text","disabled":true},{"key":"items[0][id]","value":"123","type":"text","disabled":true},{"key":"items[0][qty]","value":"123","type":"text","disabled":true},{"key":"items[0][name]","value":"123","type":"text","disabled":true},{"key":"payment_method","value":"cash","type":"text"},{"key":"driver_notes","value":"","type":"text"},{"key":"external_data","value":"{\"somekey\":\"someval\",\"otherkey\":\"otherval\",\"nested\":{\"nestedkey\":\"nestedval\"}}","type":"text"},{"key":"attachments_meta[0][title]","value":"title","type":"text","disabled":true},{"key":"attachments_meta[0][description]","value":"description","type":"text","disabled":true},{"key":"external_source","value":"external_platform","type":"text","disabled":true},{"key":"external_id","value":"124ABD","type":"text","disabled":true},{"key":"payment_confirmation","value":"","type":"text","disabled":true},{"key":"payment_processor","value":"stripe_3ds2","type":"text","disabled":true},{"key":"actual_price","value":"25.00","type":"text"},{"key":"attachments","type":"file","src":"/Users/nickcassell/Downloads/Screen Shot 2019-05-30 at 2.35.33 PM (1).png"},{"key":"attachments","type":"file","src":"/Users/nickcassell/Downloads/Screen Shot 2019-05-30 at 2.35.33 PM.png"}]},"url":"{{host}}/job","description":"<p>This endpoint is used to update a job. An array of stops may optionally be passed. If the stops contain stop_ids, they will be updated. Any stop without a stop id will be considered a new stop. If none of the stops passed to this method have a stop id, all the stops will be considered new - all existing stops will be deleted and replaced with this new array of stops.</p>\n<p>To specify which job to update, pass either the <code>job_id</code> or a combination of <code>external_source</code> and <code>external_id</code></p>\n","urlObject":{"path":["job"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"848874cc-2dc5-4e5c-80de-99198b81c5e1","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_id","value":"2174821","type":"text"},{"key":"phone","value":"2222222222","type":"text"},{"key":"phone_country","value":"US","type":"text"},{"key":"contact_name","value":"Contact Name","description":"2-character ISO 3166-1 region code (e.g. 'SE' for Sweden, 'US' for United States)","type":"text","disabled":true},{"key":"pickup_date","value":"2021-04-26T08:59:13+0000","type":"text","disabled":true},{"key":"car_type","value":"100","type":"text"},{"key":"internal_notes","value":"Doorbell doesnt work","type":"text"},{"key":"stops[0][address]","value":"123 West Ave","type":"text","disabled":true},{"key":"stops[0][city]","value":"New York","type":"text","disabled":true},{"key":"stops[0][state]","value":"New York","type":"text","disabled":true},{"key":"stops[0][postal_code]","value":"","type":"text","disabled":true},{"key":"stops[0][latitude]","value":"40.72822","type":"text","disabled":true},{"key":"stops[0][longitude]","value":"-73.70667000000003","type":"text","disabled":true},{"key":"stops[0][long_name]","value":"!23 West Ave New York, NY","type":"text"},{"key":"stops[0][short_name]","value":"!23 West Ave NY","type":"text","disabled":true},{"key":"stops[0][country]","value":"US","type":"text","disabled":true},{"key":"stops[0][type]","value":"pickup","type":"text"},{"key":"stops[0][notes]","value":"stop notes","type":"text","disabled":true},{"key":"stops[0][arrival_date]","value":"2020-01-28T17:51:00-04:00","type":"text"},{"key":"stops[0][location_id]","value":"1234","type":"text","disabled":true},{"key":"stops[0][apartment_number]","value":"123A","type":"text","disabled":true},{"key":"stops[1][address]","value":"330 Old Country Road","type":"text","disabled":true},{"key":"stops[1][city]","value":"Mineola","type":"text","disabled":true},{"key":"stops[1][state]","value":"New York","type":"text","disabled":true},{"key":"stops[1][postal_code]","value":"11501","type":"text","disabled":true},{"key":"stops[1][latitude]","value":"40.7382953","type":"text","disabled":true},{"key":"stops[1][longitude]","value":"-73.64537630000001","type":"text","disabled":true},{"key":"stops[1][long_name]","value":"222 West Ave New York, NY","type":"text"},{"key":"stops[1][short_name]","value":"222 West Ave ","type":"text","disabled":true},{"key":"stops[1][country]","value":"US","type":"text","disabled":true},{"key":"stops[1][type]","value":"dropoff","type":"text"},{"key":"stops[1][contact_name]","value":"Contact Name","type":"text","disabled":true},{"key":"stops[1][contact_phone]","value":"3333333333","type":"text","disabled":true},{"key":"stops[1][arrival_date]","value":"2021-04-28T17:51:00-04:00","type":"text"},{"key":"stops[1][location_id]","value":"1234","type":"text","disabled":true},{"key":"items[0][id]","value":"123","type":"text","disabled":true},{"key":"items[0][qty]","value":"123","type":"text","disabled":true},{"key":"items[0][name]","value":"123","type":"text","disabled":true},{"key":"payment_method","value":"cash","type":"text"},{"key":"driver_notes","value":"","type":"text"},{"key":"external_data","value":"{\"somekey\":\"someval\",\"otherkey\":\"otherval\",\"nested\":{\"nestedkey\":\"nestedval\"}}","type":"text"},{"key":"attachments_meta[0][title]","value":"title","type":"text","disabled":true},{"key":"attachments_meta[0][description]","value":"description","type":"text","disabled":true},{"key":"external_source","value":"external_platform","type":"text","disabled":true},{"key":"external_id","value":"124ABD","type":"text","disabled":true},{"key":"payment_confirmation","value":"","type":"text","disabled":true},{"key":"payment_processor","value":"stripe_3ds2","type":"text","disabled":true},{"key":"actual_price","value":"25.00","type":"text"},{"key":"attachments","type":"file","src":["/Users/nickcassell/Downloads/Screen Shot 2019-05-30 at 2.35.33 PM (1).png"]},{"key":"attachments","type":"file","src":["/Users/nickcassell/Downloads/Screen Shot 2019-05-30 at 2.35.33 PM.png"]}]},"url":"{{host}}/job"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18676"},{"key":"ETag","value":"W/\"48f4-XDwXqkYGUWwZidiSbVvcgb1ql3A\""},{"key":"Date","value":"Thu, 29 Apr 2021 14:48:25 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174821,\n        \"job_number\": 11,\n        \"origin_job_number\": null,\n        \"hash\": \"h8I1gzE1O\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": null,\n        \"pickup_location_id\": 388593,\n        \"actual_pickup_location_id\": null,\n        \"dropoff_location_id\": 388592,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388593,\n            \"address\": \"23 West Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n            \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n            \"latitude\": 40.58173,\n            \"longitude\": -73.9678,\n            \"date_created\": \"2021-04-28 17:39:54\",\n            \"date_updated\": \"2021-04-28 17:39:54\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388592,\n            \"address\": \"222 West Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n            \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n            \"latitude\": 40.58165,\n            \"longitude\": -73.96903,\n            \"date_created\": \"2021-04-28 17:39:16\",\n            \"date_updated\": \"2021-04-28 17:39:16\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2019-07-08 15:18:00\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 1,\n        \"in_progress_date\": null,\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"\",\n        \"internal_notes\": \"Doorbell doesnt work\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": 964,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 25,\n        \"price_override_flag\": 1,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-28 17:45:54\",\n        \"date_updated\": \"2021-04-29 14:48:21\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": {\n            \"somekey\": \"someval\",\n            \"otherkey\": \"otherval\",\n            \"nested\": {\n                \"nestedkey\": \"nestedval\"\n            }\n        },\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": null,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"summary\": \"null null null null\"\n        },\n        \"driver_assigned_to_vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null\n        },\n        \"vehicle_car_type\": {\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"driver_base\": {\n            \"base_id\": null,\n            \"name\": null\n        },\n        \"driver_car_type\": {\n            \"vehicle_id\": null,\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"job_status\": {\n            \"status_id\": 1,\n            \"name\": \"Pending\",\n            \"slug\": \"pending\",\n            \"order\": 10\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 964,\n            \"first_name\": \"LD\",\n            \"last_name\": \"Admin\",\n            \"email\": \"info@liverydesk.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 1,\n            \"name\": \"Pending\",\n            \"slug\": \"pending\",\n            \"order\": 10\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 25,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 25,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 25,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/h8I1gzE1O\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909335,\n                \"company_id\": 100,\n                \"job_id\": 2174821,\n                \"location_id\": 388593,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2020-01-29 02:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-29 14:48:23\",\n                \"date_updated\": \"2021-04-29 14:48:24\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 234,\n                \"duration_to_next_stop_seconds\": 374,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388593,\n                    \"address\": \"23 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58173,\n                    \"longitude\": -73.9678,\n                    \"date_created\": \"2021-04-28 17:39:54\",\n                    \"date_updated\": \"2021-04-28 17:39:54\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4247,\n                        \"company_id\": 100,\n                        \"job_id\": 2174821,\n                        \"job_stop_id\": 3909335,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-29 14:48:23\",\n                        \"date_updated\": \"2021-04-29 14:48:23\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4246,\n                        \"company_id\": 100,\n                        \"job_id\": 2174821,\n                        \"job_stop_id\": 3909335,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-29 14:48:23\",\n                        \"date_updated\": \"2021-04-29 14:48:23\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            {\n                \"job_stop_id\": 3909334,\n                \"company_id\": 100,\n                \"job_id\": 2174821,\n                \"location_id\": 388592,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-29 14:48:23\",\n                \"date_updated\": \"2021-04-29 14:48:24\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 234,\n                \"duration_from_previous_stop_seconds\": 374,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388592,\n                    \"address\": \"222 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58165,\n                    \"longitude\": -73.96903,\n                    \"date_created\": \"2021-04-28 17:39:16\",\n                    \"date_updated\": \"2021-04-28 17:39:16\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            }\n        ],\n        \"current_stop\": {\n            \"job_stop_id\": 3909335,\n            \"company_id\": 100,\n            \"job_id\": 2174821,\n            \"location_id\": 388593,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2020-01-29 02:51:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-29 14:48:23\",\n            \"date_updated\": \"2021-04-29 14:48:24\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 234,\n            \"duration_to_next_stop_seconds\": 374,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388593,\n                \"address\": \"23 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58173,\n                \"longitude\": -73.9678,\n                \"date_created\": \"2021-04-28 17:39:54\",\n                \"date_updated\": \"2021-04-28 17:39:54\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4247,\n                    \"company_id\": 100,\n                    \"job_id\": 2174821,\n                    \"job_stop_id\": 3909335,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"confirmation\",\n                        \"display\": \"Confirmation\",\n                        \"has_attachment\": 1,\n                        \"has_body\": true,\n                        \"attachment_name\": \"Signature\",\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"require_notes\": {\n                                \"id\": \"require_notes\",\n                                \"display\": \"Requires Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"show_notes\": {\n                                \"id\": \"show_notes\",\n                                \"display\": \"Show Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Confirmation\",\n                    \"description\": \"Accept this confirmation\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"show_notes\": 1,\n                            \"require_notes\": 1,\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-29 14:48:23\",\n                    \"date_updated\": \"2021-04-29 14:48:23\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": \"Do you accept?\"\n                },\n                {\n                    \"job_stop_action_id\": 4246,\n                    \"company_id\": 100,\n                    \"job_id\": 2174821,\n                    \"job_stop_id\": 3909335,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"order_acknowledgement\",\n                        \"display\": \"Order Acknowledgement\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\",\n                        \"item_statuses\": {\n                            \"rejected\": {\n                                \"id\": \"rejected\",\n                                \"display\": \"Rejected\"\n                            },\n                            \"accepted\": {\n                                \"id\": \"accepted\",\n                                \"display\": \"Accepted\"\n                            }\n                        },\n                        \"rejection_reasons\": {\n                            \"lost_or_damaged\": {\n                                \"id\": \"lost_or_damaged\",\n                                \"display\": \"Lost or Damaged\",\n                                \"order\": 1\n                            },\n                            \"wrong_quantity\": {\n                                \"id\": \"wrong_quantity\",\n                                \"display\": \"Wrong Quantity\",\n                                \"order\": 2\n                            },\n                            \"other\": {\n                                \"id\": \"other\",\n                                \"display\": \"Other\",\n                                \"order\": 3\n                            }\n                        },\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 2,\n                    \"button_text\": \"Order Acknowledgement\",\n                    \"description\": \"Order Acknowledgement\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-29 14:48:23\",\n                    \"date_updated\": \"2021-04-29 14:48:23\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": null\n        },\n        \"next_stop\": {\n            \"job_stop_id\": 3909334,\n            \"company_id\": 100,\n            \"job_id\": 2174821,\n            \"location_id\": 388592,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2021-04-29 01:51:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-29 14:48:23\",\n            \"date_updated\": \"2021-04-29 14:48:24\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 234,\n            \"duration_from_previous_stop_seconds\": 374,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388592,\n                \"address\": \"222 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58165,\n                \"longitude\": -73.96903,\n                \"date_created\": \"2021-04-28 17:39:16\",\n                \"date_updated\": \"2021-04-28 17:39:16\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            }\n        },\n        \"previous_stop\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"6300ba0b-6032-4c58-b60c-ac06b8d1e4d8"},{"name":"Cancel Job","id":"53218bf5-dc3b-4845-8299-15f30e21150f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"cancellation_reason","value":"DISPATCHER_CANCELLED","description":"<p>Can be one of CUSTOMER_NOT_REACHABLE, CUSTOMER_CANCELLED, DISPATCHER_CANCELLED</p>\n","type":"text"}]},"url":"{{host}}/job/:job_id/cancel","urlObject":{"path":["job",":job_id","cancel"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174821","key":"job_id"}]}},"response":[{"id":"b21287f9-c142-4089-b6d7-437ddfba688f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"cancellation_reason","value":"DISPATCHER_CANCELLED","description":"Can be one of CUSTOMER_NOT_REACHABLE, CUSTOMER_CANCELLED, DISPATCHER_CANCELLED","type":"text"}]},"url":{"raw":"{{host}}/job/:job_id/cancel","host":["{{host}}"],"path":["job",":job_id","cancel"],"variable":[{"key":"job_id","value":"2174821"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"18913"},{"key":"ETag","value":"W/\"49e1-FYzrLZ/jByNLqjNJ+BqnsTyM2sI\""},{"key":"Date","value":"Thu, 29 Apr 2021 14:48:53 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174821,\n        \"job_number\": 11,\n        \"origin_job_number\": null,\n        \"hash\": \"h8I1gzE1O\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": null,\n        \"pickup_location_id\": 388593,\n        \"actual_pickup_location_id\": null,\n        \"dropoff_location_id\": 388592,\n        \"actual_dropoff_location_id\": null,\n        \"pickup_location\": {\n            \"location_id\": 388593,\n            \"address\": \"23 West Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n            \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n            \"latitude\": 40.58173,\n            \"longitude\": -73.9678,\n            \"date_created\": \"2021-04-28 17:39:54\",\n            \"date_updated\": \"2021-04-28 17:39:54\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n            \"company_id\": null\n        },\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": {\n            \"location_id\": 388592,\n            \"address\": \"222 West Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n            \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n            \"latitude\": 40.58165,\n            \"longitude\": -73.96903,\n            \"date_created\": \"2021-04-28 17:39:16\",\n            \"date_updated\": \"2021-04-28 17:39:16\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n            \"company_id\": null\n        },\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2019-07-08 15:18:00\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": null,\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 8,\n        \"in_progress_date\": null,\n        \"infront_date\": null,\n        \"cancelled_date\": \"2021-04-29 14:48:53\",\n        \"driver_notes\": \"\",\n        \"internal_notes\": \"Doorbell doesnt work\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": 964,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 25,\n        \"price_override_flag\": 1,\n        \"tip\": 0,\n        \"pricing_data\": null,\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-28 17:45:54\",\n        \"date_updated\": \"2021-04-29 14:48:53\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": {\n            \"cancellation\": {\n                \"cancelled_by_entity_id\": 964,\n                \"cancelled_by_entity_type\": \"employee\",\n                \"dispatcher_input_cancellation_reason\": null,\n                \"cancellation_reason\": {\n                    \"code\": \"DISPATCHER_CANCELLED\",\n                    \"display\": \"Dispatcher cancelled\"\n                }\n            }\n        },\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": null,\n        \"payment_captured_amount\": null,\n        \"external_data\": {\n            \"somekey\": \"someval\",\n            \"otherkey\": \"otherval\",\n            \"nested\": {\n                \"nestedkey\": \"nestedval\"\n            }\n        },\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": null,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null,\n            \"summary\": \"null null null null\"\n        },\n        \"driver_assigned_to_vehicle\": {\n            \"vehicle_id\": null,\n            \"company_id\": null,\n            \"owner_employee_id\": null,\n            \"name\": null,\n            \"type_id\": null,\n            \"make\": null,\n            \"model\": null,\n            \"year\": null,\n            \"color\": null,\n            \"registration_number\": null,\n            \"registration_expiration_date\": null,\n            \"registration_owner_name\": null,\n            \"license_plate_number\": null,\n            \"insurance_policy_number\": null,\n            \"insurance_provider_name\": null,\n            \"insurance_expiration_date\": null,\n            \"inspection_expiration_date\": null,\n            \"tlc_number\": null,\n            \"tlc_expiration_date\": null,\n            \"tlc_inspection_date\": null,\n            \"tlc_inspection_expiration_date\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"internal_notes\": null,\n            \"vin\": null,\n            \"custom_attributes\": null\n        },\n        \"vehicle_car_type\": {\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"driver_base\": {\n            \"base_id\": null,\n            \"name\": null\n        },\n        \"driver_car_type\": {\n            \"vehicle_id\": null,\n            \"type_id\": null,\n            \"old_type_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"order\": null,\n            \"icon\": null,\n            \"attributes\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"job_status\": {\n            \"status_id\": 8,\n            \"name\": \"Cancelled\",\n            \"slug\": \"cancelled\",\n            \"order\": 80\n        },\n        \"application\": {\n            \"application_id\": 1000000193,\n            \"name\": \"Dashboard\",\n            \"role_name\": \"api-public\",\n            \"api_key\": \"73d243880f29bc45a7969eb12dd17725\",\n            \"company_id\": 100,\n            \"base_id\": 67,\n            \"is_active\": 1,\n            \"icon\": null,\n            \"type\": \"dashboard\",\n            \"is_internal\": 1,\n            \"date_created\": \"2021-04-27 17:53:50\",\n            \"date_updated\": \"2021-04-27 17:53:50\",\n            \"eula\": null,\n            \"meta\": null\n        },\n        \"employee\": {\n            \"employee_id\": 964,\n            \"first_name\": \"LD\",\n            \"last_name\": \"Admin\",\n            \"email\": \"info@liverydesk.com\",\n            \"company_id\": 100,\n            \"primary_phone_international\": null,\n            \"primary_phone_national\": null,\n            \"transaction_balace\": 0,\n            \"company_commission_data\": {\n                \"commission_flat_rate\": 0,\n                \"commission_percentage\": 0\n            }\n        },\n        \"job_options\": null,\n        \"car_types\": null,\n        \"promo_code\": {\n            \"promo_code_id\": null,\n            \"company_id\": null,\n            \"code\": null,\n            \"active\": null,\n            \"minimum_price\": null,\n            \"max_uses\": null,\n            \"uses\": null,\n            \"uses_per_user\": null,\n            \"discount_amount\": null,\n            \"discount_percentage\": null,\n            \"activation_date\": null,\n            \"expiration_date\": null,\n            \"date_created\": null,\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null\n        },\n        \"referral_code\": {\n            \"referral_code_id\": null,\n            \"company_id\": null,\n            \"name\": null,\n            \"owner_entity_type\": null,\n            \"owner_entity_id\": null,\n            \"reward_flat_rate\": null,\n            \"reward_percentage\": null,\n            \"description\": null,\n            \"is_active\": null,\n            \"date_created\": null,\n            \"date_updated\": null,\n            \"date_deleted\": null,\n            \"money_responsibility\": null,\n            \"code\": null,\n            \"type\": null\n        },\n        \"status\": {\n            \"status_id\": 8,\n            \"name\": \"Cancelled\",\n            \"slug\": \"cancelled\",\n            \"order\": 80\n        },\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 25,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 25,\n            \"customer_credit_amount_used\": null,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"total\": 25,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/h8I1gzE1O\",\n        \"payment_instructions\": {\n            \"collect_payment\": false\n        },\n        \"stops\": [\n            {\n                \"job_stop_id\": 3909335,\n                \"company_id\": 100,\n                \"job_id\": 2174821,\n                \"location_id\": 388593,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"pickup\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2020-01-29 02:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 1,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-29 14:48:23\",\n                \"date_updated\": \"2021-04-29 14:48:24\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 234,\n                \"duration_to_next_stop_seconds\": 374,\n                \"distance_from_previous_stop_meters\": 0,\n                \"duration_from_previous_stop_seconds\": 0,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388593,\n                    \"address\": \"23 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58173,\n                    \"longitude\": -73.9678,\n                    \"date_created\": \"2021-04-28 17:39:54\",\n                    \"date_updated\": \"2021-04-28 17:39:54\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                },\n                \"job_stop_actions\": [\n                    {\n                        \"job_stop_action_id\": 4247,\n                        \"company_id\": 100,\n                        \"job_id\": 2174821,\n                        \"job_stop_id\": 3909335,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"confirmation\",\n                            \"display\": \"Confirmation\",\n                            \"has_attachment\": 1,\n                            \"has_body\": true,\n                            \"attachment_name\": \"Signature\",\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"require_notes\": {\n                                    \"id\": \"require_notes\",\n                                    \"display\": \"Requires Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                },\n                                \"show_notes\": {\n                                    \"id\": \"show_notes\",\n                                    \"display\": \"Show Driver Notes\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 1,\n                        \"button_text\": \"Confirmation\",\n                        \"description\": \"Accept this confirmation\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"show_notes\": 1,\n                                \"require_notes\": 1,\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-29 14:48:23\",\n                        \"date_updated\": \"2021-04-29 14:48:23\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": \"Do you accept?\"\n                    },\n                    {\n                        \"job_stop_action_id\": 4246,\n                        \"company_id\": 100,\n                        \"job_id\": 2174821,\n                        \"job_stop_id\": 3909335,\n                        \"job_stop_type\": \"pickup\",\n                        \"type\": {\n                            \"id\": \"order_acknowledgement\",\n                            \"display\": \"Order Acknowledgement\",\n                            \"has_attachment\": 1,\n                            \"attachment_name\": \"Signature\",\n                            \"item_statuses\": {\n                                \"rejected\": {\n                                    \"id\": \"rejected\",\n                                    \"display\": \"Rejected\"\n                                },\n                                \"accepted\": {\n                                    \"id\": \"accepted\",\n                                    \"display\": \"Accepted\"\n                                }\n                            },\n                            \"rejection_reasons\": {\n                                \"lost_or_damaged\": {\n                                    \"id\": \"lost_or_damaged\",\n                                    \"display\": \"Lost or Damaged\",\n                                    \"order\": 1\n                                },\n                                \"wrong_quantity\": {\n                                    \"id\": \"wrong_quantity\",\n                                    \"display\": \"Wrong Quantity\",\n                                    \"order\": 2\n                                },\n                                \"other\": {\n                                    \"id\": \"other\",\n                                    \"display\": \"Other\",\n                                    \"order\": 3\n                                }\n                            },\n                            \"settings\": {\n                                \"require_signature\": {\n                                    \"id\": \"require_signature\",\n                                    \"display\": \"Requires Signature\",\n                                    \"optional\": true,\n                                    \"type\": \"checkbox\"\n                                }\n                            }\n                        },\n                        \"stop_status_id\": 4,\n                        \"order\": 2,\n                        \"button_text\": \"Order Acknowledgement\",\n                        \"description\": \"Order Acknowledgement\",\n                        \"url\": null,\n                        \"attachments\": null,\n                        \"meta\": {\n                            \"settings\": {\n                                \"require_signature\": 1\n                            }\n                        },\n                        \"is_active\": 1,\n                        \"date_completed\": null,\n                        \"date_created\": \"2021-04-29 14:48:23\",\n                        \"date_updated\": \"2021-04-29 14:48:23\",\n                        \"date_deleted\": null,\n                        \"type_data\": null,\n                        \"body\": null\n                    }\n                ],\n                \"next_job_stop_action\": null\n            },\n            {\n                \"job_stop_id\": 3909334,\n                \"company_id\": 100,\n                \"job_id\": 2174821,\n                \"location_id\": 388592,\n                \"actual_location_id\": null,\n                \"user_id\": null,\n                \"type\": \"dropoff\",\n                \"meta\": null,\n                \"status_id\": 1,\n                \"arrival_date\": \"2021-04-29 01:51:00\",\n                \"actual_arrival_date\": null,\n                \"in_progress_date\": null,\n                \"completed_date\": null,\n                \"cancelled_date\": null,\n                \"contact_phone_country\": null,\n                \"contact_phone\": null,\n                \"contact_name\": null,\n                \"notes\": null,\n                \"driver_notes\": null,\n                \"internal_notes\": null,\n                \"order\": 2,\n                \"attachments\": null,\n                \"date_created\": \"2021-04-29 14:48:23\",\n                \"date_updated\": \"2021-04-29 14:48:24\",\n                \"date_deleted\": null,\n                \"distance_to_next_stop_meters\": 0,\n                \"duration_to_next_stop_seconds\": 0,\n                \"distance_from_previous_stop_meters\": 234,\n                \"duration_from_previous_stop_seconds\": 374,\n                \"wait_time_seconds\": null,\n                \"total_duration_seconds\": null,\n                \"return_stop_id\": null,\n                \"recipient\": null,\n                \"apartment_number\": null,\n                \"cancellation_reason\": null,\n                \"contact_phone_international\": null,\n                \"contact_phone_national\": null,\n                \"dispatch_group_order\": null,\n                \"skip_stop\": 0,\n                \"time_window_end_time\": null,\n                \"time_window_start_time\": null,\n                \"time_window_waiting_time_seconds\": null,\n                \"ignore_time_windows\": 0,\n                \"routing_data\": null,\n                \"estimated_departure_date\": null,\n                \"estimated_arrival_date\": null,\n                \"location\": {\n                    \"location_id\": 388592,\n                    \"address\": \"222 West Ave\",\n                    \"address_two\": null,\n                    \"city\": \"New York\",\n                    \"state\": \"New York\",\n                    \"postal_code\": \"11224\",\n                    \"country\": \"US\",\n                    \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                    \"latitude\": 40.58165,\n                    \"longitude\": -73.96903,\n                    \"date_created\": \"2021-04-28 17:39:16\",\n                    \"date_updated\": \"2021-04-28 17:39:16\",\n                    \"place_id\": null,\n                    \"apartment_number\": null,\n                    \"types\": [\n                        \"point\"\n                    ],\n                    \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                    \"company_id\": null\n                },\n                \"status\": {\n                    \"status_id\": 1,\n                    \"name\": \"Pending\",\n                    \"slug\": \"pending\",\n                    \"order\": 10\n                }\n            }\n        ],\n        \"current_stop\": {\n            \"job_stop_id\": 3909335,\n            \"company_id\": 100,\n            \"job_id\": 2174821,\n            \"location_id\": 388593,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"pickup\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2020-01-29 02:51:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 1,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-29 14:48:23\",\n            \"date_updated\": \"2021-04-29 14:48:24\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 234,\n            \"duration_to_next_stop_seconds\": 374,\n            \"distance_from_previous_stop_meters\": 0,\n            \"duration_from_previous_stop_seconds\": 0,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388593,\n                \"address\": \"23 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"23 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58173,\n                \"longitude\": -73.9678,\n                \"date_created\": \"2021-04-28 17:39:54\",\n                \"date_updated\": \"2021-04-28 17:39:54\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"c1201f299ff3a2f9c4636fbddb0790e2\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            },\n            \"job_stop_actions\": [\n                {\n                    \"job_stop_action_id\": 4247,\n                    \"company_id\": 100,\n                    \"job_id\": 2174821,\n                    \"job_stop_id\": 3909335,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"confirmation\",\n                        \"display\": \"Confirmation\",\n                        \"has_attachment\": 1,\n                        \"has_body\": true,\n                        \"attachment_name\": \"Signature\",\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"require_notes\": {\n                                \"id\": \"require_notes\",\n                                \"display\": \"Requires Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            },\n                            \"show_notes\": {\n                                \"id\": \"show_notes\",\n                                \"display\": \"Show Driver Notes\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 1,\n                    \"button_text\": \"Confirmation\",\n                    \"description\": \"Accept this confirmation\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"show_notes\": 1,\n                            \"require_notes\": 1,\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-29 14:48:23\",\n                    \"date_updated\": \"2021-04-29 14:48:23\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": \"Do you accept?\"\n                },\n                {\n                    \"job_stop_action_id\": 4246,\n                    \"company_id\": 100,\n                    \"job_id\": 2174821,\n                    \"job_stop_id\": 3909335,\n                    \"job_stop_type\": \"pickup\",\n                    \"type\": {\n                        \"id\": \"order_acknowledgement\",\n                        \"display\": \"Order Acknowledgement\",\n                        \"has_attachment\": 1,\n                        \"attachment_name\": \"Signature\",\n                        \"item_statuses\": {\n                            \"rejected\": {\n                                \"id\": \"rejected\",\n                                \"display\": \"Rejected\"\n                            },\n                            \"accepted\": {\n                                \"id\": \"accepted\",\n                                \"display\": \"Accepted\"\n                            }\n                        },\n                        \"rejection_reasons\": {\n                            \"lost_or_damaged\": {\n                                \"id\": \"lost_or_damaged\",\n                                \"display\": \"Lost or Damaged\",\n                                \"order\": 1\n                            },\n                            \"wrong_quantity\": {\n                                \"id\": \"wrong_quantity\",\n                                \"display\": \"Wrong Quantity\",\n                                \"order\": 2\n                            },\n                            \"other\": {\n                                \"id\": \"other\",\n                                \"display\": \"Other\",\n                                \"order\": 3\n                            }\n                        },\n                        \"settings\": {\n                            \"require_signature\": {\n                                \"id\": \"require_signature\",\n                                \"display\": \"Requires Signature\",\n                                \"optional\": true,\n                                \"type\": \"checkbox\"\n                            }\n                        }\n                    },\n                    \"stop_status_id\": 4,\n                    \"order\": 2,\n                    \"button_text\": \"Order Acknowledgement\",\n                    \"description\": \"Order Acknowledgement\",\n                    \"url\": null,\n                    \"attachments\": null,\n                    \"meta\": {\n                        \"settings\": {\n                            \"require_signature\": 1\n                        }\n                    },\n                    \"is_active\": 1,\n                    \"date_completed\": null,\n                    \"date_created\": \"2021-04-29 14:48:23\",\n                    \"date_updated\": \"2021-04-29 14:48:23\",\n                    \"date_deleted\": null,\n                    \"type_data\": null,\n                    \"body\": null\n                }\n            ],\n            \"next_job_stop_action\": null\n        },\n        \"next_stop\": {\n            \"job_stop_id\": 3909334,\n            \"company_id\": 100,\n            \"job_id\": 2174821,\n            \"location_id\": 388592,\n            \"actual_location_id\": null,\n            \"user_id\": null,\n            \"type\": \"dropoff\",\n            \"meta\": null,\n            \"status_id\": 1,\n            \"arrival_date\": \"2021-04-29 01:51:00\",\n            \"actual_arrival_date\": null,\n            \"in_progress_date\": null,\n            \"completed_date\": null,\n            \"cancelled_date\": null,\n            \"contact_phone_country\": null,\n            \"contact_phone\": null,\n            \"contact_name\": null,\n            \"notes\": null,\n            \"driver_notes\": null,\n            \"internal_notes\": null,\n            \"order\": 2,\n            \"attachments\": null,\n            \"date_created\": \"2021-04-29 14:48:23\",\n            \"date_updated\": \"2021-04-29 14:48:24\",\n            \"date_deleted\": null,\n            \"distance_to_next_stop_meters\": 0,\n            \"duration_to_next_stop_seconds\": 0,\n            \"distance_from_previous_stop_meters\": 234,\n            \"duration_from_previous_stop_seconds\": 374,\n            \"wait_time_seconds\": null,\n            \"total_duration_seconds\": null,\n            \"return_stop_id\": null,\n            \"recipient\": null,\n            \"apartment_number\": null,\n            \"cancellation_reason\": null,\n            \"contact_phone_international\": null,\n            \"contact_phone_national\": null,\n            \"dispatch_group_order\": null,\n            \"skip_stop\": 0,\n            \"time_window_end_time\": null,\n            \"time_window_start_time\": null,\n            \"time_window_waiting_time_seconds\": null,\n            \"ignore_time_windows\": 0,\n            \"routing_data\": null,\n            \"estimated_departure_date\": null,\n            \"estimated_arrival_date\": null,\n            \"location\": {\n                \"location_id\": 388592,\n                \"address\": \"222 West Ave\",\n                \"address_two\": null,\n                \"city\": \"New York\",\n                \"state\": \"New York\",\n                \"postal_code\": \"11224\",\n                \"country\": \"US\",\n                \"long_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"short_name\": \"222 West Ave, New York, NY 11224, United States\",\n                \"latitude\": 40.58165,\n                \"longitude\": -73.96903,\n                \"date_created\": \"2021-04-28 17:39:16\",\n                \"date_updated\": \"2021-04-28 17:39:16\",\n                \"place_id\": null,\n                \"apartment_number\": null,\n                \"types\": [\n                    \"point\"\n                ],\n                \"hash\": \"35a3da0f9d4b87fa29e22cdab1e634ab\",\n                \"company_id\": null\n            },\n            \"status\": {\n                \"status_id\": 1,\n                \"name\": \"Pending\",\n                \"slug\": \"pending\",\n                \"order\": 10\n            }\n        },\n        \"previous_stop\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"53218bf5-dc3b-4845-8299-15f30e21150f"},{"name":"Complete Job","id":"7181b457-7656-430c-b188-65b6b8332dca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}","description":"<p>Must be the access token of the driver assigned to the job</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/job/:job_id/completed","description":"<p> Used as an override to complete the entire job instead of just a stop. It accepts a latitude/longitude of the final location</p>\n","urlObject":{"path":["job",":job_id","completed"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2174822","key":"job_id"}]}},"response":[{"id":"20346829-9eaf-4482-b4d5-7d6a73f07cc6","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}","description":"Must be the access token of the driver assigned to the job"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{host}}/job/:job_id/completed","host":["{{host}}"],"path":["job",":job_id","completed"],"variable":[{"key":"job_id","value":"2174822"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4642"},{"key":"ETag","value":"W/\"1222-keIQg+Nxra0V8AfD28Eh7qSeiMI\""},{"key":"Date","value":"Thu, 29 Apr 2021 15:03:29 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"job_id\": 2174822,\n        \"job_number\": 12,\n        \"origin_job_number\": null,\n        \"hash\": \"8r0B9MmjM\",\n        \"user_id\": null,\n        \"contact_name\": null,\n        \"account_id\": null,\n        \"phone_country\": \"US\",\n        \"phone\": \"2222222222\",\n        \"company_id\": 100,\n        \"origin_company_id\": null,\n        \"application_id\": 1000000193,\n        \"driver_id\": 965,\n        \"pickup_location_id\": 388586,\n        \"actual_pickup_location_id\": null,\n        \"dropoff_location_id\": 388574,\n        \"actual_dropoff_location_id\": 388534,\n        \"pickup_location\": null,\n        \"pickup_location_name\": null,\n        \"pickup_location_notes\": \"\",\n        \"dropoff_location\": null,\n        \"dropoff_location_name\": null,\n        \"pickup_date\": \"2021-04-29 14:50:09\",\n        \"actual_pickup_date\": null,\n        \"dropoff_date\": \"2021-04-29 15:02:37\",\n        \"car_type_id\": null,\n        \"passengers\": 1,\n        \"status_id\": 7,\n        \"in_progress_date\": \"2021-04-29 15:01:56\",\n        \"infront_date\": null,\n        \"cancelled_date\": null,\n        \"driver_notes\": \"driver notes\",\n        \"internal_notes\": \"\",\n        \"is_reservation\": 0,\n        \"reservation_confirmation\": null,\n        \"entered_by_employee_id\": 964,\n        \"updated_by_employee_id\": null,\n        \"date_timezone_offset\": 0,\n        \"notify_passenger\": 0,\n        \"passenger_notified_date\": null,\n        \"estimated_price\": null,\n        \"show_estimated_price\": 0,\n        \"suggested_actual_price\": 0,\n        \"actual_price\": 0,\n        \"price_override_flag\": 0,\n        \"tip\": 0,\n        \"pricing_data\": {\n            \"total_cost\": 0,\n            \"route_costs\": [\n                {\n                    \"stop\": {\n                        \"job_stop_id\": 3909337\n                    },\n                    \"price\": {\n                        \"name\": \"Test Company Default Rule\",\n                        \"base_id\": 67,\n                        \"priority\": 1,\n                        \"is_active\": 1,\n                        \"mile_rate\": 0,\n                        \"stop_rate\": 0,\n                        \"wait_rate\": 0,\n                        \"zone_id_1\": 70,\n                        \"zone_id_2\": null,\n                        \"base_price\": 0,\n                        \"company_id\": 100,\n                        \"is_default\": 1,\n                        \"is_deleted\": 0,\n                        \"pricing_id\": 39,\n                        \"surcharges\": null,\n                        \"minute_rate\": 0,\n                        \"old_base_id\": null,\n                        \"service_fee\": 0,\n                        \"date_created\": \"2021-04-27 17:53:51\",\n                        \"date_updated\": \"2021-04-27 17:53:51\",\n                        \"is_flat_rate\": false,\n                        \"minimum_price\": 0,\n                        \"amount_of_stops\": 0,\n                        \"distance_meters\": 0,\n                        \"estimated_price\": 0,\n                        \"cancellation_fee\": 0,\n                        \"duration_seconds\": 0,\n                        \"wait_time_overage\": 0,\n                        \"per_job_surcharges\": {},\n                        \"per_leg_surcharges\": {},\n                        \"estimated_price_low\": 0,\n                        \"estimated_price_high\": 0,\n                        \"new_vehicle_modifiers\": null,\n                        \"process_initial_price\": true,\n                        \"applied_option_surcharges\": [],\n                        \"variable_price_estimate_low_buffer\": 0.1,\n                        \"variable_price_estimate_high_buffer\": 0.1\n                    },\n                    \"option_ids\": [],\n                    \"distance_meters\": 0,\n                    \"duration_seconds\": 0,\n                    \"wait_time_overage\": 0,\n                    \"process_initial_price\": true,\n                    \"wait_time_overage_seconds\": 0\n                }\n            ],\n            \"applied_surcharges\": [],\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_time_overage_seconds\": 0\n        },\n        \"payment_processor\": null,\n        \"payment_method\": \"cash\",\n        \"payment_status\": \"pending\",\n        \"payment_confirmation\": null,\n        \"payment_authorized_amount\": null,\n        \"payment_authorized_date\": null,\n        \"payment_paid_date\": null,\n        \"payment_refunded_amount\": null,\n        \"payment_refunded_date\": null,\n        \"start_date\": null,\n        \"driver_reminded_date\": null,\n        \"date_created\": \"2021-04-29 14:50:09\",\n        \"date_updated\": \"2021-04-29 15:02:39\",\n        \"autodispatch_date\": null,\n        \"autodispatch_config_id\": null,\n        \"exclude_from_autodispatcher\": 0,\n        \"show_contact_details\": 0,\n        \"parent_job_id\": null,\n        \"parent_job_number\": null,\n        \"type\": null,\n        \"optimize\": 0,\n        \"meta\": null,\n        \"driver_rating\": null,\n        \"passenger_rating_notes\": null,\n        \"passenger_rating\": null,\n        \"company_commission_data\": null,\n        \"company_commission\": 0,\n        \"promo_code_id\": null,\n        \"undiscounted_suggested_price\": 0,\n        \"date_capturing\": null,\n        \"price_adjustment\": 0,\n        \"driver_rating_notes\": null,\n        \"payment_source_reference\": null,\n        \"items\": null,\n        \"account_price_adjustment\": null,\n        \"referral_code_id\": null,\n        \"referral_code_reward\": null,\n        \"dispatch_group_id\": null,\n        \"dispatch_group_order\": null,\n        \"dispatch_group_optimization_method\": null,\n        \"dispatch_group_data\": null,\n        \"payment_status_cleaning_lock_date\": null,\n        \"payment_completed_by_date\": null,\n        \"payment_completed_by_employee_id\": null,\n        \"customer_credit_amount_used\": 0,\n        \"payment_captured_amount\": null,\n        \"external_data\": null,\n        \"external_source\": null,\n        \"external_id\": null,\n        \"attachments\": null,\n        \"payment_type\": null,\n        \"phone_international\": \"+1 222 222 2222\",\n        \"phone_national\": \"(222) 222-2222\",\n        \"dispatch_group_date\": null,\n        \"rnadom\": null,\n        \"payment_confirmation_old\": null,\n        \"vehicle_id\": 364,\n        \"total_weight\": null,\n        \"eta_date_last_updated\": null,\n        \"pricing_summary\": {\n            \"estimated_price\": null,\n            \"suggested_actual_price\": 0,\n            \"actual_price\": 0,\n            \"payment_authorized_amount\": null,\n            \"payment_refunded_amount\": null,\n            \"total_distance_meters\": 0,\n            \"total_duration_seconds\": 0,\n            \"total_wait_fee\": 0,\n            \"total_cancellation_fee\": 0,\n            \"sub_total\": 0,\n            \"customer_credit_amount_used\": 0,\n            \"payment_captured_amount\": null,\n            \"undiscounted_suggested_price\": 0,\n            \"discount_amount\": 0,\n            \"leg_costs\": [\n                {\n                    \"base_price\": 0,\n                    \"mile_rate\": 0,\n                    \"minute_rate\": 0,\n                    \"wait_rate\": 0,\n                    \"service_fee\": 0,\n                    \"stop_rate\": 0,\n                    \"cancellation_fee\": 0,\n                    \"option_surcharges\": [],\n                    \"estimated_price\": 0\n                }\n            ],\n            \"applied_surcharges\": [],\n            \"total\": 0,\n            \"payment_summary\": \"Cash\"\n        },\n        \"share_url\": \"https://tracker.protected.site/webbooker/track/8r0B9MmjM\",\n        \"payment_instructions\": {\n            \"collect_payment\": true,\n            \"amount_to_collect\": 0\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.43.4.1\"\n    }\n}"}],"_postman_id":"7181b457-7656-430c-b188-65b6b8332dca"},{"name":"Complete Payment","id":"39ef4b1f-6814-49af-8051-f142c1f5af9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"final_price","value":"25","type":"text"}]},"url":"{{host}}/job/:job_id/completepayment","urlObject":{"path":["job",":job_id","completepayment"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"562662","key":"job_id"}]}},"response":[{"id":"dd2593e5-4859-4d9d-98e9-efab6a55206f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stop_id","value":"1179636","type":"text"}]},"url":{"raw":"{{host}}/job/:job_id/stop/arrived","host":["{{host}}"],"path":["job",":job_id","stop","arrived"],"variable":[{"key":"job_id","value":"562519"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"6725","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 11 Jun 2017 00:50:38 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1a45-eOFvfpK/h77lN4Ri9mcYOtM5Gls\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1497142238487310","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ASU46z9XcZE4mSV1fX_egO4KwIzbXjB6p.VZjc3YLbs6Be1fWJ2ebTeCYwd7kiM5IQgWSWXxYzrow","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"job_id\":562519,\"job_number\":562502,\"origin_job_number\":null,\"hash\":\"BkRMCkGMW\",\"user_id\":null,\"contact_name\":\"\",\"account_id\":0,\"phone\":\"9175677735\",\"company_id\":1,\"origin_company_id\":null,\"application_id\":4,\"driver_id\":186,\"pickup_location_id\":386435,\"actual_pickup_location_id\":null,\"dropoff_location_id\":386303,\"actual_dropoff_location_id\":null,\"pickup_location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"pickup_location_name\":null,\"pickup_location_notes\":\"\",\"dropoff_location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"dropoff_location_name\":null,\"pickup_date\":\"2017-06-04 20:31:17\",\"actual_pickup_date\":null,\"dropoff_date\":null,\"car_type_id\":0,\"passengers\":1,\"status_id\":4,\"in_progress_date\":\"2017-06-11 00:39:23\",\"infront_date\":null,\"cancelled_date\":null,\"driver_notes\":\"\",\"internal_notes\":\"\",\"is_reservation\":0,\"reservation_confirmation\":null,\"entered_by_employee_id\":704,\"updated_by_employee_id\":704,\"date_timezone_offset\":0,\"notify_passenger\":0,\"passenger_notified_date\":null,\"estimated_price\":null,\"show_estimated_price\":0,\"suggested_actual_price\":null,\"actual_price\":null,\"tip\":null,\"pricing_data\":null,\"payment_processor\":null,\"payment_method\":\"cash\",\"payment_status\":\"pending\",\"payment_confirmation\":null,\"payment_authorized_amount\":null,\"payment_authorized_date\":null,\"payment_paid_date\":null,\"payment_refunded_amount\":null,\"payment_refunded_date\":null,\"start_date\":null,\"driver_reminded_date\":null,\"date_created\":\"2017-06-04 20:31:17\",\"date_updated\":\"2017-06-11 00:39:23\",\"autodispatch_date\":null,\"autodispatch_config_id\":null,\"exclude_from_autodispatcher\":0,\"driver\":{\"employee_id\":186,\"driver_number\":999,\"first_name\":\"Ash\",\"last_name\":\"Driver\",\"username\":\"ashdriver@mlcabs\",\"email\":\"ashwin@liverydesk.com\",\"password\":\"$2a$08$Mh4Pa42iVcl9YGwapTopReliWPZsOGWQudFluoDzyM1JtTAj/QGW.\",\"password_hint\":\"pa*****4\",\"hash\":\"g1bW2sG6Zl\",\"company_id\":1,\"location_id\":451,\"primary_phone\":\"1234445959\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":\"2017-05-18\",\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"123\",\"hack_license_expiration\":\"2020-07-22\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2020-07-22\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"1.3.8-android-development-build-34\",\"device_id\":null,\"date_created\":\"2014-07-22 15:00:29\",\"date_updated\":\"2017-06-10 18:59:46\",\"car_type_id\":191,\"new_car_type_id\":1,\"car_make\":\"BMW\",\"car_model\":\"M3\",\"car_year\":2015,\"car_color\":\"White\",\"registration_number\":\"123\",\"registration_expiration\":\"2020-07-22\",\"registration_owner_name\":\"Test Driver\",\"license_plate_number\":\"65464\",\"insurance_policy_number\":\"123\",\"insurance_provider_name\":\"123\",\"insurance_expiration_date\":\"2020-07-22\",\"tlc_number\":\"123\",\"tlc_expiration_date\":\"2020-07-22\",\"tlc_inspection_date\":\"2020-07-22\",\"tlc_inspection_expiration_date\":\"2020-07-22\",\"_type\":\"employee\"},\"driver_base\":{\"base_id\":1,\"name\":\"B01534 - Liverydesk Drivers\"},\"job_status\":{\"status_id\":4,\"name\":\"In Progress\",\"slug\":\"in-progress\",\"order\":40},\"application\":{\"application_id\":4,\"name\":\"Metroline Passenger App Android\",\"role_name\":\"api-public\",\"api_key\":\"166982d0c74906f525ee25000b4b0693\",\"company_id\":1,\"base_id\":1,\"is_active\":1,\"icon\":\"fa fa-sm fa-user\",\"type\":null,\"is_internal\":0,\"date_created\":\"2015-06-05 15:00:18\",\"date_updated\":\"2017-03-04 17:28:48\",\"_type\":\"application\"},\"employee\":{\"employee_id\":704,\"first_name\":\"UNITTEST\",\"last_name\":\"DRIVER\",\"email\":\"\",\"company_id\":1,\"_type\":\"employee\"},\"job_options\":null,\"car_types\":[{\"type_id\":\"1\",\"name\":\"Sedan\",\"order\":\"1\",\"icon\":\"sedan.png\",\"_type\":\"generic\"},{\"type_id\":\"2\",\"name\":\"SUV\",\"order\":\"500\",\"icon\":\"suv.png\",\"_type\":\"generic\"}],\"_type\":\"job\",\"status\":{\"status_id\":4,\"name\":\"In Progress\",\"slug\":\"in-progress\",\"order\":40},\"stops\":[{\"job_stop_id\":1179635,\"company_id\":1,\"job_id\":562519,\"location_id\":386435,\"actual_location_id\":null,\"user_id\":null,\"type\":\"dropoff\",\"meta\":null,\"status_id\":1,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":null,\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":\"dropopff ph\",\"contact_name\":\"dropoff loc person\",\"driver_notes\":null,\"internal_notes\":null,\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-04 20:31:18\",\"date_updated\":\"2017-06-04 20:31:18\",\"date_deleted\":null,\"location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"_type\":\"job_stop\"},{\"job_stop_id\":1179636,\"company_id\":1,\"job_id\":562519,\"location_id\":386303,\"actual_location_id\":null,\"user_id\":null,\"type\":\"pickup\",\"meta\":null,\"status_id\":5,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":\"2017-06-11 00:50:38\",\"in_progress_date\":\"2017-06-11 00:39:23\",\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":null,\"contact_name\":null,\"driver_notes\":\"walk with a bat\",\"internal_notes\":\"shady location\",\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-04 20:31:18\",\"date_updated\":\"2017-06-11 00:50:38\",\"date_deleted\":null,\"location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"_type\":\"job_stop\"}]},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"},{"id":"e0a52bd4-298c-4cbe-87f6-75a1d1569862","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjE4NiwiZXhwIjoxNTI4NjU3MTg2MTc2LCJhcHBsaWNhdGlvbl9pZCI6MSwiYWNjb3VudF90eXBlIjoiZW1wbG95ZWUiLCJjb21wYW55X2lkIjoxfQ.FUXAxqasTI0mog9D3hwiHfqdqhMzzqUHI2t22TQUS_s"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/job/:job_id/driveraccepted","host":["{{host}}"],"path":["job",":job_id","driveraccepted"],"variable":[{"key":"job_id","value":"562519"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"6708","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 11 Jun 2017 00:20:23 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1a34-LApRAUxA0pA8f1Gv4eteDxNBx1M\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1497140423212492","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ASU46z9XcZE4mSV1fX_egO4KwIzbXjB6p.VZjc3YLbs6Be1fWJ2ebTeCYwd7kiM5IQgWSWXxYzrow","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"job_id\":562519,\"job_number\":562502,\"origin_job_number\":null,\"hash\":\"BkRMCkGMW\",\"user_id\":null,\"contact_name\":\"\",\"account_id\":0,\"phone\":\"9175677735\",\"company_id\":1,\"origin_company_id\":null,\"application_id\":4,\"driver_id\":186,\"pickup_location_id\":386435,\"actual_pickup_location_id\":null,\"dropoff_location_id\":386303,\"actual_dropoff_location_id\":null,\"pickup_location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"pickup_location_name\":null,\"pickup_location_notes\":\"\",\"dropoff_location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"dropoff_location_name\":null,\"pickup_date\":\"2017-06-04 20:31:17\",\"actual_pickup_date\":null,\"dropoff_date\":null,\"car_type_id\":0,\"passengers\":1,\"status_id\":4,\"in_progress_date\":\"2017-06-11 00:20:23\",\"infront_date\":null,\"cancelled_date\":null,\"driver_notes\":\"\",\"internal_notes\":\"\",\"is_reservation\":0,\"reservation_confirmation\":null,\"entered_by_employee_id\":704,\"updated_by_employee_id\":704,\"date_timezone_offset\":0,\"notify_passenger\":0,\"passenger_notified_date\":null,\"estimated_price\":null,\"show_estimated_price\":0,\"suggested_actual_price\":null,\"actual_price\":null,\"tip\":null,\"pricing_data\":null,\"payment_processor\":null,\"payment_method\":\"cash\",\"payment_status\":\"pending\",\"payment_confirmation\":null,\"payment_authorized_amount\":null,\"payment_authorized_date\":null,\"payment_paid_date\":null,\"payment_refunded_amount\":null,\"payment_refunded_date\":null,\"start_date\":null,\"driver_reminded_date\":null,\"date_created\":\"2017-06-04 20:31:17\",\"date_updated\":\"2017-06-11 00:20:23\",\"autodispatch_date\":null,\"autodispatch_config_id\":null,\"exclude_from_autodispatcher\":0,\"driver\":{\"employee_id\":186,\"driver_number\":999,\"first_name\":\"Ash\",\"last_name\":\"Driver\",\"username\":\"ashdriver@mlcabs\",\"email\":\"ashwin@liverydesk.com\",\"password\":\"$2a$08$Mh4Pa42iVcl9YGwapTopReliWPZsOGWQudFluoDzyM1JtTAj/QGW.\",\"password_hint\":\"pa*****4\",\"hash\":\"g1bW2sG6Zl\",\"company_id\":1,\"location_id\":451,\"primary_phone\":\"1234445959\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":\"2017-05-18\",\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"123\",\"hack_license_expiration\":\"2020-07-22\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2020-07-22\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"1.3.8-android-development-build-34\",\"device_id\":null,\"date_created\":\"2014-07-22 15:00:29\",\"date_updated\":\"2017-06-10 18:59:46\",\"car_type_id\":191,\"new_car_type_id\":1,\"car_make\":\"BMW\",\"car_model\":\"M3\",\"car_year\":2015,\"car_color\":\"White\",\"registration_number\":\"123\",\"registration_expiration\":\"2020-07-22\",\"registration_owner_name\":\"Test Driver\",\"license_plate_number\":\"65464\",\"insurance_policy_number\":\"123\",\"insurance_provider_name\":\"123\",\"insurance_expiration_date\":\"2020-07-22\",\"tlc_number\":\"123\",\"tlc_expiration_date\":\"2020-07-22\",\"tlc_inspection_date\":\"2020-07-22\",\"tlc_inspection_expiration_date\":\"2020-07-22\",\"_type\":\"employee\"},\"driver_base\":{\"base_id\":1,\"name\":\"B01534 - Liverydesk Drivers\"},\"job_status\":{\"status_id\":4,\"name\":\"In Progress\",\"slug\":\"in-progress\",\"order\":40},\"application\":{\"application_id\":4,\"name\":\"Metroline Passenger App Android\",\"role_name\":\"api-public\",\"api_key\":\"166982d0c74906f525ee25000b4b0693\",\"company_id\":1,\"base_id\":1,\"is_active\":1,\"icon\":\"fa fa-sm fa-user\",\"type\":null,\"is_internal\":0,\"date_created\":\"2015-06-05 15:00:18\",\"date_updated\":\"2017-03-04 17:28:48\",\"_type\":\"application\"},\"employee\":{\"employee_id\":704,\"first_name\":\"UNITTEST\",\"last_name\":\"DRIVER\",\"email\":\"\",\"company_id\":1,\"_type\":\"employee\"},\"job_options\":null,\"car_types\":[{\"type_id\":\"1\",\"name\":\"Sedan\",\"order\":\"1\",\"icon\":\"sedan.png\",\"_type\":\"generic\"},{\"type_id\":\"2\",\"name\":\"SUV\",\"order\":\"500\",\"icon\":\"suv.png\",\"_type\":\"generic\"}],\"_type\":\"job\",\"status\":{\"status_id\":4,\"name\":\"In Progress\",\"slug\":\"in-progress\",\"order\":40},\"stops\":[{\"job_stop_id\":1179635,\"company_id\":1,\"job_id\":562519,\"location_id\":386435,\"actual_location_id\":null,\"user_id\":null,\"type\":\"dropoff\",\"meta\":null,\"status_id\":1,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":null,\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":\"dropopff ph\",\"contact_name\":\"dropoff loc person\",\"driver_notes\":null,\"internal_notes\":null,\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-04 20:31:18\",\"date_updated\":\"2017-06-04 20:31:18\",\"date_deleted\":null,\"location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"_type\":\"job_stop\"},{\"job_stop_id\":1179636,\"company_id\":1,\"job_id\":562519,\"location_id\":386303,\"actual_location_id\":null,\"user_id\":null,\"type\":\"pickup\",\"meta\":null,\"status_id\":4,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":\"2017-06-11 00:20:22\",\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":null,\"contact_name\":null,\"driver_notes\":\"walk with a bat\",\"internal_notes\":\"shady location\",\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-04 20:31:18\",\"date_updated\":\"2017-06-11 00:20:22\",\"date_deleted\":null,\"location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"_type\":\"job_stop\"}]},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"},{"id":"66712409-2b95-45d2-a2d0-ecf6daecf812","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"stop_id","value":"1179635","type":"text"},{"key":"latitude","value":"40.70327","type":"text"},{"key":"longitude","value":"-73.66735","type":"text"}]},"url":{"raw":"{{host}}/job/:job_id/stop/complete","host":["{{host}}"],"path":["job",":job_id","stop","complete"],"variable":[{"key":"job_id","value":"562519"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"8499","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 11 Jun 2017 01:31:59 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"2133-lKT0+XS0P9M2brcHNoneE5+Wtmk\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1497144719509481","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ASU46z9XcZE4mSV1fX_egO4KwIzbXjB6p.VZjc3YLbs6Be1fWJ2ebTeCYwd7kiM5IQgWSWXxYzrow","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"job_id\":562519,\"job_number\":562502,\"origin_job_number\":null,\"hash\":\"BkRMCkGMW\",\"user_id\":null,\"contact_name\":\"\",\"account_id\":0,\"phone\":\"9175677735\",\"company_id\":1,\"origin_company_id\":null,\"application_id\":4,\"driver_id\":186,\"pickup_location_id\":386435,\"actual_pickup_location_id\":386405,\"dropoff_location_id\":386303,\"actual_dropoff_location_id\":386405,\"pickup_location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"pickup_location_name\":null,\"pickup_location_notes\":\"\",\"dropoff_location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"dropoff_location_name\":null,\"pickup_date\":\"2017-06-04 20:31:17\",\"actual_pickup_date\":null,\"dropoff_date\":\"2017-06-11 01:30:50\",\"car_type_id\":0,\"passengers\":1,\"status_id\":7,\"in_progress_date\":\"2017-06-11 00:39:23\",\"infront_date\":null,\"cancelled_date\":null,\"driver_notes\":\"\",\"internal_notes\":\"\",\"is_reservation\":0,\"reservation_confirmation\":null,\"entered_by_employee_id\":704,\"updated_by_employee_id\":704,\"date_timezone_offset\":0,\"notify_passenger\":0,\"passenger_notified_date\":null,\"estimated_price\":null,\"show_estimated_price\":0,\"suggested_actual_price\":null,\"actual_price\":null,\"tip\":null,\"pricing_data\":null,\"payment_processor\":null,\"payment_method\":\"cash\",\"payment_status\":\"pending\",\"payment_confirmation\":null,\"payment_authorized_amount\":null,\"payment_authorized_date\":null,\"payment_paid_date\":null,\"payment_refunded_amount\":null,\"payment_refunded_date\":null,\"start_date\":null,\"driver_reminded_date\":null,\"date_created\":\"2017-06-04 20:31:17\",\"date_updated\":\"2017-06-11 01:30:50\",\"autodispatch_date\":null,\"autodispatch_config_id\":null,\"exclude_from_autodispatcher\":0,\"driver\":{\"employee_id\":186,\"driver_number\":999,\"first_name\":\"Ash\",\"last_name\":\"Driver\",\"username\":\"ashdriver@mlcabs\",\"email\":\"ashwin@liverydesk.com\",\"password\":\"$2a$08$Mh4Pa42iVcl9YGwapTopReliWPZsOGWQudFluoDzyM1JtTAj/QGW.\",\"password_hint\":\"pa*****4\",\"hash\":\"g1bW2sG6Zl\",\"company_id\":1,\"location_id\":451,\"primary_phone\":\"1234445959\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":\"2017-05-18\",\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"123\",\"hack_license_expiration\":\"2020-07-22\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2020-07-22\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"1.3.8-android-development-build-34\",\"device_id\":null,\"date_created\":\"2014-07-22 15:00:29\",\"date_updated\":\"2017-06-10 18:59:46\",\"car_type_id\":191,\"new_car_type_id\":1,\"car_make\":\"BMW\",\"car_model\":\"M3\",\"car_year\":2015,\"car_color\":\"White\",\"registration_number\":\"123\",\"registration_expiration\":\"2020-07-22\",\"registration_owner_name\":\"Test Driver\",\"license_plate_number\":\"65464\",\"insurance_policy_number\":\"123\",\"insurance_provider_name\":\"123\",\"insurance_expiration_date\":\"2020-07-22\",\"tlc_number\":\"123\",\"tlc_expiration_date\":\"2020-07-22\",\"tlc_inspection_date\":\"2020-07-22\",\"tlc_inspection_expiration_date\":\"2020-07-22\",\"_type\":\"employee\"},\"driver_base\":{\"base_id\":1,\"name\":\"B01534 - Liverydesk Drivers\"},\"job_status\":{\"status_id\":7,\"name\":\"Completed\",\"slug\":\"completed\",\"order\":70},\"application\":{\"application_id\":4,\"name\":\"Metroline Passenger App Android\",\"role_name\":\"api-public\",\"api_key\":\"166982d0c74906f525ee25000b4b0693\",\"company_id\":1,\"base_id\":1,\"is_active\":1,\"icon\":\"fa fa-sm fa-user\",\"type\":null,\"is_internal\":0,\"date_created\":\"2015-06-05 15:00:18\",\"date_updated\":\"2017-03-04 17:28:48\",\"_type\":\"application\"},\"employee\":{\"employee_id\":704,\"first_name\":\"UNITTEST\",\"last_name\":\"DRIVER\",\"email\":\"\",\"company_id\":1,\"_type\":\"employee\"},\"job_options\":null,\"car_types\":[{\"type_id\":\"1\",\"name\":\"Sedan\",\"order\":\"1\",\"icon\":\"sedan.png\",\"_type\":\"generic\"},{\"type_id\":\"2\",\"name\":\"SUV\",\"order\":\"500\",\"icon\":\"suv.png\",\"_type\":\"generic\"}],\"_type\":\"job\",\"status\":{\"status_id\":7,\"name\":\"Completed\",\"slug\":\"completed\",\"order\":70},\"stops\":[{\"job_stop_id\":1179635,\"company_id\":1,\"job_id\":562519,\"location_id\":386435,\"actual_location_id\":386405,\"user_id\":null,\"type\":\"dropoff\",\"meta\":null,\"status_id\":7,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":null,\"completed_date\":\"2017-06-11 01:31:59\",\"cancelled_date\":null,\"contact_phone\":\"dropopff ph\",\"contact_name\":\"dropoff loc person\",\"driver_notes\":null,\"internal_notes\":null,\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-04 20:31:18\",\"date_updated\":\"2017-06-11 01:31:59\",\"date_deleted\":null,\"location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"actual_location\":{\"location_id\":386405,\"address\":\"169 Grange Street\",\"address_two\":null,\"city\":\"Franklin Square\",\"state\":\"New York\",\"postal_code\":\"11010\",\"country\":\"US\",\"long_name\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"short_name\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"latitude\":40.70327,\"longitude\":-73.66735,\"date_created\":\"2017-03-08 23:28:42\",\"date_updated\":\"2017-04-26 04:12:10\",\"_type\":\"location\"},\"_type\":\"job_stop\"},{\"job_stop_id\":1179636,\"company_id\":1,\"job_id\":562519,\"location_id\":386303,\"actual_location_id\":386405,\"user_id\":null,\"type\":\"pickup\",\"meta\":null,\"status_id\":4,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":\"2017-06-11 01:21:41\",\"in_progress_date\":\"2017-06-11 01:31:59\",\"completed_date\":\"2017-06-11 01:30:50\",\"cancelled_date\":null,\"contact_phone\":null,\"contact_name\":null,\"driver_notes\":\"walk with a bat\",\"internal_notes\":\"shady location\",\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-04 20:31:18\",\"date_updated\":\"2017-06-11 01:31:59\",\"date_deleted\":null,\"location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"actual_location\":{\"location_id\":386405,\"address\":\"169 Grange Street\",\"address_two\":null,\"city\":\"Franklin Square\",\"state\":\"New York\",\"postal_code\":\"11010\",\"country\":\"US\",\"long_name\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"short_name\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"latitude\":40.70327,\"longitude\":-73.66735,\"date_created\":\"2017-03-08 23:28:42\",\"date_updated\":\"2017-04-26 04:12:10\",\"_type\":\"location\"},\"_type\":\"job_stop\"}],\"actual_pickup_location\":{\"location_id\":386405,\"address\":\"169 Grange Street\",\"address_two\":null,\"city\":\"Franklin Square\",\"state\":\"New York\",\"postal_code\":\"11010\",\"country\":\"US\",\"long_name\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"short_name\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"latitude\":40.70327,\"longitude\":-73.66735,\"date_created\":\"2017-03-08 23:28:42\",\"date_updated\":\"2017-04-26 04:12:10\",\"_type\":\"location\"},\"actual_dropoff_location\":{\"location_id\":386405,\"address\":\"169 Grange Street\",\"address_two\":null,\"city\":\"Franklin Square\",\"state\":\"New York\",\"postal_code\":\"11010\",\"country\":\"US\",\"long_name\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"short_name\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"latitude\":40.70327,\"longitude\":-73.66735,\"date_created\":\"2017-03-08 23:28:42\",\"date_updated\":\"2017-04-26 04:12:10\",\"_type\":\"location\"}},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"39ef4b1f-6814-49af-8051-f142c1f5af9f"},{"name":"Driver Opt In to Job","id":"451eb270-d3be-4be9-9210-d83fab3c69f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"distance","value":"10","description":"<p>In miles</p>\n","type":"text"},{"key":"response","value":"decline","description":"<p>valid values: 'opt_in', 'ignore'</p>\n","type":"text"}]},"url":"{{host}}/job/:job_id/opt-in","urlObject":{"path":["job",":job_id","opt-in"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"565152","key":"job_id"}]}},"response":[{"id":"0d310f72-b659-4e1f-bb89-9abf69bbd6f8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjE4NiwiZXhwIjoxNTI4NjU3MTg2MTc2LCJhcHBsaWNhdGlvbl9pZCI6MSwiYWNjb3VudF90eXBlIjoiZW1wbG95ZWUiLCJjb21wYW55X2lkIjoxfQ.FUXAxqasTI0mog9D3hwiHfqdqhMzzqUHI2t22TQUS_s"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/job/:job_id/driveraccepted","host":["{{host}}"],"path":["job",":job_id","driveraccepted"],"variable":[{"key":"job_id","value":"562519"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"6708","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 11 Jun 2017 00:20:23 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1a34-LApRAUxA0pA8f1Gv4eteDxNBx1M\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1497140423212492","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ASU46z9XcZE4mSV1fX_egO4KwIzbXjB6p.VZjc3YLbs6Be1fWJ2ebTeCYwd7kiM5IQgWSWXxYzrow","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"job_id\":562519,\"job_number\":562502,\"origin_job_number\":null,\"hash\":\"BkRMCkGMW\",\"user_id\":null,\"contact_name\":\"\",\"account_id\":0,\"phone\":\"9175677735\",\"company_id\":1,\"origin_company_id\":null,\"application_id\":4,\"driver_id\":186,\"pickup_location_id\":386435,\"actual_pickup_location_id\":null,\"dropoff_location_id\":386303,\"actual_dropoff_location_id\":null,\"pickup_location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"pickup_location_name\":null,\"pickup_location_notes\":\"\",\"dropoff_location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"dropoff_location_name\":null,\"pickup_date\":\"2017-06-04 20:31:17\",\"actual_pickup_date\":null,\"dropoff_date\":null,\"car_type_id\":0,\"passengers\":1,\"status_id\":4,\"in_progress_date\":\"2017-06-11 00:20:23\",\"infront_date\":null,\"cancelled_date\":null,\"driver_notes\":\"\",\"internal_notes\":\"\",\"is_reservation\":0,\"reservation_confirmation\":null,\"entered_by_employee_id\":704,\"updated_by_employee_id\":704,\"date_timezone_offset\":0,\"notify_passenger\":0,\"passenger_notified_date\":null,\"estimated_price\":null,\"show_estimated_price\":0,\"suggested_actual_price\":null,\"actual_price\":null,\"tip\":null,\"pricing_data\":null,\"payment_processor\":null,\"payment_method\":\"cash\",\"payment_status\":\"pending\",\"payment_confirmation\":null,\"payment_authorized_amount\":null,\"payment_authorized_date\":null,\"payment_paid_date\":null,\"payment_refunded_amount\":null,\"payment_refunded_date\":null,\"start_date\":null,\"driver_reminded_date\":null,\"date_created\":\"2017-06-04 20:31:17\",\"date_updated\":\"2017-06-11 00:20:23\",\"autodispatch_date\":null,\"autodispatch_config_id\":null,\"exclude_from_autodispatcher\":0,\"driver\":{\"employee_id\":186,\"driver_number\":999,\"first_name\":\"Ash\",\"last_name\":\"Driver\",\"username\":\"ashdriver@mlcabs\",\"email\":\"ashwin@liverydesk.com\",\"password\":\"$2a$08$Mh4Pa42iVcl9YGwapTopReliWPZsOGWQudFluoDzyM1JtTAj/QGW.\",\"password_hint\":\"pa*****4\",\"hash\":\"g1bW2sG6Zl\",\"company_id\":1,\"location_id\":451,\"primary_phone\":\"1234445959\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":\"2017-05-18\",\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"123\",\"hack_license_expiration\":\"2020-07-22\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2020-07-22\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"1.3.8-android-development-build-34\",\"device_id\":null,\"date_created\":\"2014-07-22 15:00:29\",\"date_updated\":\"2017-06-10 18:59:46\",\"car_type_id\":191,\"new_car_type_id\":1,\"car_make\":\"BMW\",\"car_model\":\"M3\",\"car_year\":2015,\"car_color\":\"White\",\"registration_number\":\"123\",\"registration_expiration\":\"2020-07-22\",\"registration_owner_name\":\"Test Driver\",\"license_plate_number\":\"65464\",\"insurance_policy_number\":\"123\",\"insurance_provider_name\":\"123\",\"insurance_expiration_date\":\"2020-07-22\",\"tlc_number\":\"123\",\"tlc_expiration_date\":\"2020-07-22\",\"tlc_inspection_date\":\"2020-07-22\",\"tlc_inspection_expiration_date\":\"2020-07-22\",\"_type\":\"employee\"},\"driver_base\":{\"base_id\":1,\"name\":\"B01534 - Liverydesk Drivers\"},\"job_status\":{\"status_id\":4,\"name\":\"In Progress\",\"slug\":\"in-progress\",\"order\":40},\"application\":{\"application_id\":4,\"name\":\"Metroline Passenger App Android\",\"role_name\":\"api-public\",\"api_key\":\"166982d0c74906f525ee25000b4b0693\",\"company_id\":1,\"base_id\":1,\"is_active\":1,\"icon\":\"fa fa-sm fa-user\",\"type\":null,\"is_internal\":0,\"date_created\":\"2015-06-05 15:00:18\",\"date_updated\":\"2017-03-04 17:28:48\",\"_type\":\"application\"},\"employee\":{\"employee_id\":704,\"first_name\":\"UNITTEST\",\"last_name\":\"DRIVER\",\"email\":\"\",\"company_id\":1,\"_type\":\"employee\"},\"job_options\":null,\"car_types\":[{\"type_id\":\"1\",\"name\":\"Sedan\",\"order\":\"1\",\"icon\":\"sedan.png\",\"_type\":\"generic\"},{\"type_id\":\"2\",\"name\":\"SUV\",\"order\":\"500\",\"icon\":\"suv.png\",\"_type\":\"generic\"}],\"_type\":\"job\",\"status\":{\"status_id\":4,\"name\":\"In Progress\",\"slug\":\"in-progress\",\"order\":40},\"stops\":[{\"job_stop_id\":1179635,\"company_id\":1,\"job_id\":562519,\"location_id\":386435,\"actual_location_id\":null,\"user_id\":null,\"type\":\"dropoff\",\"meta\":null,\"status_id\":1,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":null,\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":\"dropopff ph\",\"contact_name\":\"dropoff loc person\",\"driver_notes\":null,\"internal_notes\":null,\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-04 20:31:18\",\"date_updated\":\"2017-06-04 20:31:18\",\"date_deleted\":null,\"location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"_type\":\"job_stop\"},{\"job_stop_id\":1179636,\"company_id\":1,\"job_id\":562519,\"location_id\":386303,\"actual_location_id\":null,\"user_id\":null,\"type\":\"pickup\",\"meta\":null,\"status_id\":4,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":\"2017-06-11 00:20:22\",\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":null,\"contact_name\":null,\"driver_notes\":\"walk with a bat\",\"internal_notes\":\"shady location\",\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-04 20:31:18\",\"date_updated\":\"2017-06-11 00:20:22\",\"date_deleted\":null,\"location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"_type\":\"job_stop\"}]},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"451eb270-d3be-4be9-9210-d83fab3c69f3"},{"name":"Driver Accept Job","id":"3e1cbfe7-ba56-49c7-9ab7-63bec9ac9ec8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/job/:job_id/driveraccepted","urlObject":{"path":["job",":job_id","driveraccepted"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"562520","key":"job_id"}]}},"response":[{"id":"8543b7e2-14a9-434e-a1de-10680dd6fc9b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjE4NiwiZXhwIjoxNTI4NjU3MTg2MTc2LCJhcHBsaWNhdGlvbl9pZCI6MSwiYWNjb3VudF90eXBlIjoiZW1wbG95ZWUiLCJjb21wYW55X2lkIjoxfQ.FUXAxqasTI0mog9D3hwiHfqdqhMzzqUHI2t22TQUS_s"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{host}}/job/:job_id/driveraccepted","host":["{{host}}"],"path":["job",":job_id","driveraccepted"],"variable":[{"key":"job_id","value":"562519"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"6708","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 11 Jun 2017 00:20:23 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1a34-LApRAUxA0pA8f1Gv4eteDxNBx1M\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1497140423212492","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ASU46z9XcZE4mSV1fX_egO4KwIzbXjB6p.VZjc3YLbs6Be1fWJ2ebTeCYwd7kiM5IQgWSWXxYzrow","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"job_id\":562519,\"job_number\":562502,\"origin_job_number\":null,\"hash\":\"BkRMCkGMW\",\"user_id\":null,\"contact_name\":\"\",\"account_id\":0,\"phone\":\"9175677735\",\"company_id\":1,\"origin_company_id\":null,\"application_id\":4,\"driver_id\":186,\"pickup_location_id\":386435,\"actual_pickup_location_id\":null,\"dropoff_location_id\":386303,\"actual_dropoff_location_id\":null,\"pickup_location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"pickup_location_name\":null,\"pickup_location_notes\":\"\",\"dropoff_location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"dropoff_location_name\":null,\"pickup_date\":\"2017-06-04 20:31:17\",\"actual_pickup_date\":null,\"dropoff_date\":null,\"car_type_id\":0,\"passengers\":1,\"status_id\":4,\"in_progress_date\":\"2017-06-11 00:20:23\",\"infront_date\":null,\"cancelled_date\":null,\"driver_notes\":\"\",\"internal_notes\":\"\",\"is_reservation\":0,\"reservation_confirmation\":null,\"entered_by_employee_id\":704,\"updated_by_employee_id\":704,\"date_timezone_offset\":0,\"notify_passenger\":0,\"passenger_notified_date\":null,\"estimated_price\":null,\"show_estimated_price\":0,\"suggested_actual_price\":null,\"actual_price\":null,\"tip\":null,\"pricing_data\":null,\"payment_processor\":null,\"payment_method\":\"cash\",\"payment_status\":\"pending\",\"payment_confirmation\":null,\"payment_authorized_amount\":null,\"payment_authorized_date\":null,\"payment_paid_date\":null,\"payment_refunded_amount\":null,\"payment_refunded_date\":null,\"start_date\":null,\"driver_reminded_date\":null,\"date_created\":\"2017-06-04 20:31:17\",\"date_updated\":\"2017-06-11 00:20:23\",\"autodispatch_date\":null,\"autodispatch_config_id\":null,\"exclude_from_autodispatcher\":0,\"driver\":{\"employee_id\":186,\"driver_number\":999,\"first_name\":\"Ash\",\"last_name\":\"Driver\",\"username\":\"ashdriver@mlcabs\",\"email\":\"ashwin@liverydesk.com\",\"password\":\"$2a$08$Mh4Pa42iVcl9YGwapTopReliWPZsOGWQudFluoDzyM1JtTAj/QGW.\",\"password_hint\":\"pa*****4\",\"hash\":\"g1bW2sG6Zl\",\"company_id\":1,\"location_id\":451,\"primary_phone\":\"1234445959\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":\"2017-05-18\",\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"123\",\"hack_license_expiration\":\"2020-07-22\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2020-07-22\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"1.3.8-android-development-build-34\",\"device_id\":null,\"date_created\":\"2014-07-22 15:00:29\",\"date_updated\":\"2017-06-10 18:59:46\",\"car_type_id\":191,\"new_car_type_id\":1,\"car_make\":\"BMW\",\"car_model\":\"M3\",\"car_year\":2015,\"car_color\":\"White\",\"registration_number\":\"123\",\"registration_expiration\":\"2020-07-22\",\"registration_owner_name\":\"Test Driver\",\"license_plate_number\":\"65464\",\"insurance_policy_number\":\"123\",\"insurance_provider_name\":\"123\",\"insurance_expiration_date\":\"2020-07-22\",\"tlc_number\":\"123\",\"tlc_expiration_date\":\"2020-07-22\",\"tlc_inspection_date\":\"2020-07-22\",\"tlc_inspection_expiration_date\":\"2020-07-22\",\"_type\":\"employee\"},\"driver_base\":{\"base_id\":1,\"name\":\"B01534 - Liverydesk Drivers\"},\"job_status\":{\"status_id\":4,\"name\":\"In Progress\",\"slug\":\"in-progress\",\"order\":40},\"application\":{\"application_id\":4,\"name\":\"Metroline Passenger App Android\",\"role_name\":\"api-public\",\"api_key\":\"166982d0c74906f525ee25000b4b0693\",\"company_id\":1,\"base_id\":1,\"is_active\":1,\"icon\":\"fa fa-sm fa-user\",\"type\":null,\"is_internal\":0,\"date_created\":\"2015-06-05 15:00:18\",\"date_updated\":\"2017-03-04 17:28:48\",\"_type\":\"application\"},\"employee\":{\"employee_id\":704,\"first_name\":\"UNITTEST\",\"last_name\":\"DRIVER\",\"email\":\"\",\"company_id\":1,\"_type\":\"employee\"},\"job_options\":null,\"car_types\":[{\"type_id\":\"1\",\"name\":\"Sedan\",\"order\":\"1\",\"icon\":\"sedan.png\",\"_type\":\"generic\"},{\"type_id\":\"2\",\"name\":\"SUV\",\"order\":\"500\",\"icon\":\"suv.png\",\"_type\":\"generic\"}],\"_type\":\"job\",\"status\":{\"status_id\":4,\"name\":\"In Progress\",\"slug\":\"in-progress\",\"order\":40},\"stops\":[{\"job_stop_id\":1179635,\"company_id\":1,\"job_id\":562519,\"location_id\":386435,\"actual_location_id\":null,\"user_id\":null,\"type\":\"dropoff\",\"meta\":null,\"status_id\":1,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":null,\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":\"dropopff ph\",\"contact_name\":\"dropoff loc person\",\"driver_notes\":null,\"internal_notes\":null,\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-04 20:31:18\",\"date_updated\":\"2017-06-04 20:31:18\",\"date_deleted\":null,\"location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"_type\":\"job_stop\"},{\"job_stop_id\":1179636,\"company_id\":1,\"job_id\":562519,\"location_id\":386303,\"actual_location_id\":null,\"user_id\":null,\"type\":\"pickup\",\"meta\":null,\"status_id\":4,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":\"2017-06-11 00:20:22\",\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":null,\"contact_name\":null,\"driver_notes\":\"walk with a bat\",\"internal_notes\":\"shady location\",\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-04 20:31:18\",\"date_updated\":\"2017-06-11 00:20:22\",\"date_deleted\":null,\"location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"_type\":\"job_stop\"}]},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"3e1cbfe7-ba56-49c7-9ab7-63bec9ac9ec8"},{"name":"Driver Decline Job","id":"296b787c-8159-4134-99f0-f7336743d81f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/job/:job_id/driverdeclined","urlObject":{"path":["job",":job_id","driverdeclined"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"562520","key":"job_id"}]}},"response":[],"_postman_id":"296b787c-8159-4134-99f0-f7336743d81f"},{"name":"Return job to pending","id":"b142a4d8-b33a-440b-9bdc-2672cbe163c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"final_price","value":"25","type":"text"}]},"url":"{{host}}/job/:job_id/pending","urlObject":{"path":["job",":job_id","pending"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"562662","key":"job_id"}]}},"response":[],"_postman_id":"b142a4d8-b33a-440b-9bdc-2672cbe163c6"},{"name":"Add Tip","id":"1a9703d6-28ed-4f49-a679-249337fabbf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_id","value":"564415","type":"text"},{"key":"amount","value":"50","type":"text"}]},"url":"{{host}}/job/tip","urlObject":{"path":["job","tip"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a9703d6-28ed-4f49-a679-249337fabbf5"},{"name":"Notify Base","id":"0b93d08d-e66e-49ac-9fdc-453483a8df69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/job/:job_id/notifybase","urlObject":{"path":["job",":job_id","notifybase"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"562531","key":"job_id"}]}},"response":[],"_postman_id":"0b93d08d-e66e-49ac-9fdc-453483a8df69"},{"name":"Force Complete","id":"5745de0e-fa89-4915-8035-79583cf9055e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/job/:job_id/force-complete","urlObject":{"path":["job",":job_id","force-complete"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"565736","key":"job_id"}]}},"response":[],"_postman_id":"5745de0e-fa89-4915-8035-79583cf9055e"},{"name":"Set Job Override Price","id":"3a990600-32a6-47f0-9664-4aed229ab71f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"override_price","value":"11.00","type":"text"}]},"url":"{{host}}/job/:job_id/override-price","urlObject":{"path":["job",":job_id","override-price"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"565738","key":"job_id"}]}},"response":[],"_postman_id":"3a990600-32a6-47f0-9664-4aed229ab71f"},{"name":"Get Job Route","id":"483b1e7b-af5c-47df-996c-f165a46a8b8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/:job_id/route","description":"<p>Get the route for a specific job</p>\n","urlObject":{"path":["job",":job_id","route"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"123884","key":"job_id"}]}},"response":[],"_postman_id":"483b1e7b-af5c-47df-996c-f165a46a8b8a"},{"name":"Get Job ETA","id":"b3628f5e-09d0-4667-b568-46e1c2ac486e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/job/:job_id/eta","description":"<p>Get the real time ETA for a specific job. If the job is part of a batch, ETA's for all jobs in that batch will be returned.</p>\n","urlObject":{"path":["job",":job_id","eta"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"565239","key":"job_id"}]}},"response":[],"_postman_id":"b3628f5e-09d0-4667-b568-46e1c2ac486e"}],"id":"e1410063-8def-4e21-b280-ebbd208e075e","description":"<p>Jobs are a collection of stops of multiple types. To create a job, an array of stops needs to be supplied. The minimum properties of a stop are latitude, longitude and type. The stop type can be either pickup or dropoff. If additional address details are missing like address, city, state etc, a reverse geo lookup will be made on the <code>latitude</code> and <code>longitude</code> to get the missing details.\nJobs are created on behalf of the user determined by the access token supplied. </p>\n<p>If no access token is supplied when creating a job, the job will NOT be tied to a user. A user account will be created for the phone number and contact name provided when creating a job as a guest. </p>\n<p>If a job is being created on behalf of a user, we must take into account the payment_method. If the system is configured to accept cash payments, no payment method needs to be specified. If the user is paying via credit card or another electronic method, the payment_method needs to dictate that. eg. payment_method = 'credit'. If a specific payment method is specified, the payment source also needs to be specified using the payment_source_reference parameter. When a user adds a payment method to their account, these properties will be available on the user object.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"1128be61-2729-43e9-a5a5-56256d250509"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"685fa957-1e07-4557-a5c3-ac09d597a297"}}],"_postman_id":"e1410063-8def-4e21-b280-ebbd208e075e"},{"name":"Location","item":[{"name":"Google Specific","item":[{"name":"Place details","id":"26ae9d02-d889-436a-b05f-4871bb9dee04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/location/placedetails?placeid=ChIJA8i4uyVjwokRJ9S5kKEVU44","urlObject":{"path":["location","placedetails"],"host":["{{host}}"],"query":[{"key":"placeid","value":"ChIJA8i4uyVjwokRJ9S5kKEVU44"}],"variable":[]}},"response":[{"id":"7573bb1b-61a8-429d-a6ac-551fbe9c8bc3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/static-map?markers[0][label]=1&markers[0][latitude]=40.74485&markers[0][longitude]=-73.65318","host":["{{host}}"],"path":["location","static-map"],"query":[{"key":"markers[0][label]","value":"1"},{"key":"markers[0][latitude]","value":"40.74485"},{"key":"markers[0][longitude]","value":"-73.65318"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"155","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 31 Jul 2017 16:43:31 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"9b-ZqOgW2RYRmmslmlBN6wUxzmA3gw\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1501519411915437","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AG39GFXPrBTBiWMAINlUKNGr4M4-lzNkq.AJm%2BnrfseDHfnJXSZzZ%2BXIsWGwJZF3r2NvMmS%2BGl96Q","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"url\":\"http://d2u9wtvq2reskn.cloudfront.net/location/staticmap/63694fd65bd9261f1c6307d2ecbac63c.png\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"26ae9d02-d889-436a-b05f-4871bb9dee04"},{"name":"Get directions","id":"bb577e2a-88cb-4088-8220-cb2d7b366840","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/location/directions?origin=40.73008,-73.95532&destination=40.74303,-73.62057&waypoints=40.70327,-73.66735","description":"<p>Get directions by passing n an <code>origin</code>, <code>destination</code> and <code>waypoints</code> similar to the Google directions API.</p>\n","urlObject":{"path":["location","directions"],"host":["{{host}}"],"query":[{"key":"origin","value":"40.73008,-73.95532"},{"key":"destination","value":"40.74303,-73.62057"},{"key":"waypoints","value":"40.70327,-73.66735"}],"variable":[]}},"response":[{"id":"4b881768-97ba-4c80-a0fd-e9396cafceac","name":"Multiple Stops","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?origin=169 grange street, franklin square ny&destination=390 metropolitan ave, brooklyn ny&waypoints=optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"origin","value":"169 grange street, franklin square ny"},{"key":"destination","value":"390 metropolitan ave, brooklyn ny"},{"key":"waypoints","value":"optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"19792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 14 Jul 2017 20:33:00 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"4d50-lJsgQV89afgR1l+sPqnzbzwraJ4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500064380997144","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ATVpbf1cRC0QEosrtcIsVEPOn4Cja5a3X.L7WpJEMLRaqsmCtLI3k0w39S6p6hlSsHTZgI1bo8sco","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"geocoded_waypoints\":[{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJA8i4uyVjwokRJ9S5kKEVU44\",\"types\":[\"premise\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJcbQT1ltiwokRdt6BWSHC_G0\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJsdUw6zRnwokRA2KesL5h97s\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJmdrtHl9ZwokR1sv9Yomflyw\",\"types\":[\"premise\"]}],\"routes\":[{\"bounds\":{\"northeast\":{\"lat\":40.7438783,\"lng\":-73.66746549999999},\"southwest\":{\"lat\":40.6655454,\"lng\":-73.95531129999999}},\"copyrights\":\"Map data ©2017 Google\",\"legs\":[{\"distance\":{\"text\":\"3.2 mi\",\"value\":5174},\"duration\":{\"text\":\"14 mins\",\"value\":815},\"end_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"start_address\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"steps\":[{\"distance\":{\"text\":\"0.2 mi\",\"value\":395},\"duration\":{\"text\":\"1 min\",\"value\":64},\"end_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"html_instructions\":\"Head <b>north</b> on <b>Grange St</b> toward <b>Benris Ave</b>\",\"polyline\":{\"points\":\"qzlwFpes`MuGKoLO\"},\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":719},\"duration\":{\"text\":\"3 mins\",\"value\":150},\"end_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"html_instructions\":\"Turn <b>left</b> onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wpmwFtds`MA~ACrAAhAETErAC`BEvAEzAEhA?@?JGvADPAf@Al@GlAA\\\\Ex@C^E|@?JAJCl@Cj@E`AAXE`AEt@I|AG~A\"},\"start_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"440 ft\",\"value\":134},\"duration\":{\"text\":\"1 min\",\"value\":29},\"end_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"html_instructions\":\"Turn <b>right</b> onto <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"qtmwFryt`MUWw@Q_ASwAY\"},\"start_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":539},\"duration\":{\"text\":\"1 min\",\"value\":62},\"end_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"html_instructions\":\"Slight <b>left</b> to stay on <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-slight-left\",\"polyline\":{\"points\":\"w{mwFzvt`MMBI@I@OBoCr@oCt@kCt@SF{@VC?UFQD_@Ja@Hi@JO@M?cAPs@JoAT\"},\"start_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.7 mi\",\"value\":2770},\"duration\":{\"text\":\"6 mins\",\"value\":351},\"end_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"html_instructions\":\"Turn <b>left</b> onto <b>Tulip Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cynwFl`u`M?N?PA^KzEEpBA|@Ab@CZATE^Ej@[pDMrA[jDAXCRAJCJAHCFADCFELe@hAk@tAWl@Uf@aAzBITQZIPEFEFCDCDKLOPW^UXc@j@}@jASVQVKLILQXINILYj@aAbBk@fAyAhC]p@OTOVIJGNQd@Sh@[|@GJ]pAm@hB[z@ENoAtDyAfEKZg@xAeA|Cw@|Bo@pBO`@eAzCcAzCcAzCIT{@dCcAzCeAzCcA|CKZw@zBw@hC{@vCaA`DGTSt@[hA\"},\"start_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"413 ft\",\"value\":126},\"duration\":{\"text\":\"1 min\",\"value\":26},\"end_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"html_instructions\":\"Turn <b>right</b> onto <b>Tyson Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"ubqwFfqz`MUy@E]m@aE\"},\"start_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":335},\"duration\":{\"text\":\"2 mins\",\"value\":91},\"end_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"html_instructions\":\"Turn <b>left</b> onto <b>S Tyson Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"_eqwFlhz`Mm@NiCt@WHe@HaAXeCn@{@TiAZ\"},\"start_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":156},\"duration\":{\"text\":\"1 min\",\"value\":42},\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"html_instructions\":\"Turn <b>left</b> onto <b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cwqwFboz`MYHd@tDTbBFd@\"},\"start_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"10.6 mi\",\"value\":17066},\"duration\":{\"text\":\"20 mins\",\"value\":1176},\"end_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"start_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"1.0 mi\",\"value\":1620},\"duration\":{\"text\":\"4 mins\",\"value\":219},\"end_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"html_instructions\":\"Head <b>west</b> on <b>Jericho Turnpike</b> toward <b>Brokaw Ave</b>\",\"polyline\":{\"points\":\"yuqwFlyz`MHj@Nz@TnBf@lDTxAHn@Hl@f@tD?XT~CNlBHzADd@BZPhCPlCTrDDl@PdCHbBFz@D\\\\Hr@ZtB\\\\rBDTlArGb@`CJn@F\\\\FXDZFZ^zBLt@ZhB?@DPLl@TdBZnBPt@XnAXnA\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"420 ft\",\"value\":128},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"html_instructions\":\"Continue onto <b>Jamaica Ave</b>\",\"polyline\":{\"points\":\"o}pwFxl~`MHb@VnAPv@b@hB\"},\"start_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"184 ft\",\"value\":56},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"html_instructions\":\"Turn <b>left</b> onto <b>241st St</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wzpwFnu~`MRGTGt@W\"},\"start_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.4 mi\",\"value\":3886},\"duration\":{\"text\":\"3 mins\",\"value\":173},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Slight <b>left</b> to merge onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"wwpwFft~`MP[FKFMBKDKDODMDMFKFKDGDEDEDEFEDCDCFCLCPC^A@?BAPCfCd@hB`@fAZXJVHTJh@TTLFBFDHDXLl@`@p@b@@@j@^f@^l@h@`@^pAhAbA~@r@l@d@\\\\RLJF\\\\PdAb@l@Tj@Ph@NTFz@Th@HT@TB|@DT?z@AbAGz@Gp@It@K`@Gh@K~@SpA_@HEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":519},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"html_instructions\":\"Take the <b>Brooklyn</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"aejwF`w~`Mb@?VAZATAXCdAIzC]tAKHAfAEJ?vACfD@jABD?FAh@?\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2090},\"duration\":{\"text\":\"1 min\",\"value\":86},\"end_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"html_instructions\":\"Continue onto <b>Belt Pkwy</b>/<b>Laurelton Pkwy</b>\",\"polyline\":{\"points\":\"_hiwFzt~`Mf@At@F`BVt@Pp@TbAb@vBhAlFvCrEtC|DjCb@Zh@d@PP@@xBlBRT|A|Az@|@~AdB|@r@fGzFvAjAf@d@f@`@jBvA@??@DDdAp@^Vj@\\\\fXvPtA|@\"},\"start_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4588},\"duration\":{\"text\":\"4 mins\",\"value\":213},\"end_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_bfwFf_aaMPBdAn@NH~@n@|@r@~@z@f@f@RPTTp@z@FFFJHNFJJPJTj@|ALXFRL\\\\BFDJNj@Nt@Hr@@^?`@Av@UxHYdKCn@?P?P?P?P?NGvG?rG?hA?fL@nF@zB?tJEbBErAIjBIlA?@CXCd@KhBKtBGt@_Crb@SzDOpCGdAWxEWvEIjAErAEr@E~ACxAIjDCpCApA?z@@dH@jABnAL|H?ZAPRlHJxC?R@T@LB~@BjAP~FR|Cd@zK\\\\`HLdCHnARdEHxC@d@B~@FbB\"},\"start_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":802},\"duration\":{\"text\":\"1 min\",\"value\":47},\"end_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"html_instructions\":\"Take exit <b>19</b> toward <b>Van Wyck Expy</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"usewFrekaMGBA??@A?A@?@?BAB?H?N?TA`@AXAXGr@Gx@Ir@Ej@I`AEd@Cd@APCZ?NAf@?DCLBlBBbC?h@@vGBlH?\\\\?N@`A?rA?t@ANAPCPALELENGPKN\"},\"start_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":522},\"duration\":{\"text\":\"1 min\",\"value\":30},\"end_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Interstate 678 N</b>/<b>Van Wyck Expwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"ewewF~_maMSRGHMLs@n@e@`@m@f@YRSJUHWFa@FO@uAGiBGsACkACm@Ao@?eA?u@@\"},\"start_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":1034},\"duration\":{\"text\":\"1 min\",\"value\":58},\"end_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>I-678 N</b>/<b>Van Wyck Expy</b>/<b>Bronx</b> and merge onto <b>I-678 N</b>/<b>Van Wyck Expy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_sfwFhfmaM}CP{@DW@OB[B[Ba@Hc@Hc@Jq@Nk@REBEBGHa@Fe@Jq@Ts@TcA^sEfBkE`BWHu@V?@g@PeC~@cBl@cFnB\"},\"start_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":259},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"html_instructions\":\"Take exit <b>3</b> toward <b>Linden Blvd</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"kjhwFb|maMY@gCp@SDE@KBOBIBG?m@H{ARe@FIBA?A?A@AA[A\"},\"start_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":569},\"duration\":{\"text\":\"1 min\",\"value\":76},\"end_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"html_instructions\":\"Merge onto <b>Van Wyck Expy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"sxhwFr_naMYJ}Al@eDvAYH{CjAqDlBkHjD\"},\"start_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":236},\"duration\":{\"text\":\"1 min\",\"value\":67},\"end_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"html_instructions\":\"Turn <b>left</b> onto <b>109th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"eviwFtonaMRv@@DBNFV@@Pt@|@rDx@jD\"},\"start_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":185},\"duration\":{\"text\":\"1 min\",\"value\":31},\"end_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"html_instructions\":\"Turn <b>right</b> at the 3rd cross street onto <b>134th St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"wpiwFr_oaMuH|C\"},\"start_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":241},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"html_instructions\":\"Turn <b>left</b> at the 1st cross street onto <b>107th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"mziwFpdoaMn@nDl@~Cn@bDJ`@\"},\"start_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":240},\"duration\":{\"text\":\"1 min\",\"value\":40},\"end_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Van Siclen St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"suiwFfuoaMwAEm@A{GKC?C?E?\"},\"start_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"299 ft\",\"value\":91},\"duration\":{\"text\":\"1 min\",\"value\":21},\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"html_instructions\":\"<b>Van Siclen St</b> turns slightly <b>left</b> and becomes <b>132nd St</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"polyline\":{\"points\":\"ccjwFrtoaM[L}@\\\\e@PYL\"},\"start_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"11.5 mi\",\"value\":18481},\"duration\":{\"text\":\"28 mins\",\"value\":1659},\"end_address\":\"390 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"start_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"steps\":[{\"distance\":{\"text\":\"210 ft\",\"value\":64},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"html_instructions\":\"Head <b>north</b> on <b>132nd St</b> toward <b>Liberty Ave</b>\",\"polyline\":{\"points\":\"}gjwF~voaMC?eBv@\"},\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":363},\"duration\":{\"text\":\"2 mins\",\"value\":143},\"end_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"html_instructions\":\"Turn <b>right</b> onto <b>Liberty Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"gkjwFvxoaMyAaCs@oAOi@GSg@cDe@uC@]Ku@?A?ACOEUKo@\"},\"start_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"121 ft\",\"value\":37},\"duration\":{\"text\":\"1 min\",\"value\":12},\"end_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"html_instructions\":\"Turn <b>left</b> onto <b>Van Wyck Expy</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"{sjwF~`oaMUJMFYL\"},\"start_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":219},\"duration\":{\"text\":\"1 min\",\"value\":25},\"end_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"html_instructions\":\"Slight <b>left</b> onto the <b>Route 678</b> ramp\",\"polyline\":{\"points\":\"yujwF`boaMGN?BEDEDCBGDIFOHqAn@A?aCjAIBGDKHIHEBA@UV\"},\"start_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.6 mi\",\"value\":5790},\"duration\":{\"text\":\"6 mins\",\"value\":348},\"end_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"html_instructions\":\"Merge onto <b>I-678 N</b> (signs for <b>Route 678</b>)\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"o`kwFtioaMEBIDc@PoAn@m@Zq@X}@b@eB|@yBnA_@Tq@Za@TSLC@u@^i@XaAd@kAf@YLaBv@gChAuAh@QDk@RaA\\\\w@\\\\_GtBKDiDlAu@ZwAd@G@w@XiAb@mBx@qCnAk@ZGBkCpAEB}At@MHo@^y@`@EDIDKBmA`@iAp@uAp@ULuA|@cBlAq@p@ONOR_@d@}DnFORONUXQRONQPMLONSPQLCBKHMJm@`@OJKL[T]\\\\IFIFMJOHcAn@QJQJSLSNUPSNa@ZUPoA`AQLSLSLSLWLQH[LWHQFUFQDUDUDU@UBUBU@U?U@U?WAS?UAYCUAiBOSAWASAU?WAU?U?UAS?W@W@Q@WBUBUDSDUDUFQFUFUHEBMFSHSJwBhAoAj@e@TSHSJUHSJQJQLOJUNONQLSPONSNQPQRQPOPQROPOPORSVKNORQVOTMRMTMTMRMTkBbDWd@U\\\\SVQVORSRONSROLSNOLSNSJSLQJSJQHUJUJSH}NfGm@VuCjAiKlEYNy@\\\\{@\\\\]NSF[Ji@NMBc@J_@Fi@FMBM@K@Q@kBHqFPG?aBFiAFe@D]DWBm@J}AT}@P}Cp@qB\\\\A@A?E?WFWD\"},\"start_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":866},\"duration\":{\"text\":\"3 mins\",\"value\":157},\"end_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"html_instructions\":\"Take exit <b>12B</b> for <b>Interstate 495 W</b>/<b>Long Is Expwy</b> toward <b>Midtown Tun</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"agtwFnjtaMSDgAFG@E?U@M@OAM?QCSEa@QIGA?SMYU?AYY?Ac@[QESEQAS@A?KBIBA?GBSLSRKR?@ABITG^CT?Z@TBTBNDLN^FPfAnCLf@Zt@@D?@pCzGzBtFJVDNFJDHDD?@RR\"},\"start_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.4 mi\",\"value\":5456},\"duration\":{\"text\":\"4 mins\",\"value\":268},\"end_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"html_instructions\":\"Merge onto <b>I-495 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"citwF`kuaMx@zBx@xBt@nBpAdDDH?@BFJX@B@BJV@D@BJV@D\\\\|@|BdGJV?@BDj@xA~@tCh@fBb@|AfAhEPt@\\\\`BTlA?@PdARrADVJ~@VvBNpBJbAHx@RbBXdBPdAj@zCfAvFVhA?B@@@Ft@tDf@bCd@xBl@xCh@jCDNDRpB|Jb@bCBPFRF^fArEbAhEXnABJ@DHZ?@@BDP?@@DJ^?@H`@@?DRPt@?BFVRx@Px@r@lDZtA?@Nv@VnAl@tCdBvIb@rBn@~C^hBVlAPr@Pr@ZjAh@dB?@h@`Bp@|BRr@Pp@Nt@Lp@Lx@Ht@Hv@Ft@Dt@FlABn@?@@p@`@|KDv@Dv@Fv@Ht@Jv@Jv@Nv@Nr@Np@JZHVJ\\\\FVHRL\\\\P`@Rd@Vh@Vf@j@jAZp@b@x@Vf@Vf@Tf@Rb@Pf@Tp@Nb@Lb@J^F\\\\H^Lj@Hd@Hl@Fd@Dd@D`@Df@Dl@Bz@Bt@@x@?t@Ap@Aj@Cr@Cf@Cj@q@tOSjFSlEOzC[nH\"},\"start_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2375},\"duration\":{\"text\":\"5 mins\",\"value\":311},\"end_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"html_instructions\":\"Take exit <b>17W</b> toward <b>Brooklyn</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"eiqwFxaabMSrBCb@E`@CXEXE`@ETG\\\\E\\\\GXETGZIVGZIXIXIVGVKXIXKVIVKVKXKTITKTQ`@S`@g@bA]j@MTMTMVMVMVKVKVKVeA|BMXQ^KXEPIXMZKXMXIPKVKXKTIVKVIXIVIVI\\\\GXGZGREVEVGXETEXsAzIEXGZGZgAdG_BvIEVGZGXGVIZIZIXIXIVIXKVITIRENINGLGJEFGHEFGFe@VQJOLQLQNSLQNsBtAQNIFUPOLSRMRMRKTMXGRCJENE\\\\E`@AXA^?^?V@XDd@D\\\\DXFTFXHVJXJVJVLTLRLTLRNRNRPRLNNPPNPPPLPNPLPLRLRJTLTLRLRJb@L\"},\"start_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2534},\"duration\":{\"text\":\"4 mins\",\"value\":211},\"end_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"html_instructions\":\"Merge onto <b>I-278 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"unrwFxqebMVN`E|BhAn@|@h@x@f@FD\\\\Th@^\\\\V`Az@v@x@nApArA~AZ^V^VZTXPRPTb@n@JLPRVZLP?@LNBDRVZb@DFDHLPZj@Td@Tj@@BLZDHDNNZRp@Nh@VdAHd@DTDTF\\\\BNBNx@zEF^F`@BHr@hEj@lDRbAPf@JXJ\\\\v@`B`AxBx@hBhAfC`@z@f@|@lCdEbA`BvBlErArC|A~CzDvHrAdCzBfE\\\\n@\"},\"start_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":415},\"duration\":{\"text\":\"1 min\",\"value\":59},\"end_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"html_instructions\":\"Take exit <b>32B</b> toward <b>Metropolitan Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"suowFn~ibM?BAB@D?D@B?B@@Td@`@t@\\\\l@p@pAf@~@Vf@`@r@f@|@j@~@l@~@v@jA^h@HN?B@B@L\"},\"start_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":210},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"html_instructions\":\"Merge onto <b>Meeker Ave</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}fowF~ujbMl@z@hBxBlBzBPZ\"},\"start_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"499 ft\",\"value\":152},\"duration\":{\"text\":\"1 min\",\"value\":45},\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"e~nwFl`kbM?fDA|@?dA@p@?H\"},\"start_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]}],\"overview_polyline\":{\"points\":\"qzlwFpes`MeU[ErDG~AItDQ~FGbBBx@QrEKtBm@jNUWw@QwCm@q@JgPlE{Bb@uEr@[lOyA`QKh@q@dBgErJ{BxCoBhCo@dAiHlMiA|CoBbGqKp[mLh]_E~LyCdK[hAUy@s@_FuFxAmIzBYHd@tD\\\\hCvAdKpAlJ|A|Uv@jMr@bGvDbTzB~M`BdIvAtGh@Ot@WP[NYHWXw@X_@XSTGp@EDAPCfCd@pD|@p@T|Ar@xAz@fCdBdFrExB`B|D|AdDv@~BJ~BIlBQ`Es@bDgA~Ao@vCcA~Bi@vC[dIMn`@m@t\\\\o@t^i@`JQfEEbBI`Iu@rAE~FAbC@|ADvCh@tBx@dJ`FpK`HlA`A`DvCvHtHnLnKrB~Ax\\\\~StA|@PBtAx@|BbBfBbBbBjBd@x@lA`Df@|AXhB@`Au@fX?fAGdSBhc@_@pJCZoEby@_ApQYxKCdQRtNh@|ShBza@VtE\\\\~IDdBFbBGBA@C@ARC`Bu@tJGdBBdGFhZI`A_@~@}AzAaChB_BZ_JWyE?aG\\\\}BZgCr@MLgAR}JrDoWtJ{Dz@m@JaEh@[AYJcGdCuDtA}MxG`@dBjCvKuH|Cn@nD|AbIJ`@wAEiIMi@LaC|@eBv@yAaCcAyBo@wDe@uC@]Kw@?AUuAc@RYLGNEHIHsBfAuCtAcAz@sEvB}HfEkB`AmFfCyIxDwDtAmUjIkHdDwFnC}BpAUHmA`@iAp@kB~@yDjCqBzBsFlHaAbAqCvBoAhAkBlAmDdCiCjByAr@qA^wAPwAFwACgG]uAAyAHuATsA`@}HvDoAl@gAx@oChCcC~CyEhIkA`BgAdAkAx@kAn@ed@jRgDrAwBj@eBT{J^yETaEj@wIbBkCZq@DcAKaAg@s@s@u@a@e@GU@WF[P_@f@Sz@Cp@Dj@X|@xB~FnGxO^|@DFRRx@zBnBhFvAnDPf@^bAfD|IxC|IzC~Lz@hFx@`IbAfIvEfVfIha@~EbTvF~WxEtUvA`GdCfIbAlEh@|EPtDh@fOb@|Ez@tEh@hB|@xBvBnEhBpDjA`Dj@`Ch@dDV|CH`FKxD}Az^k@jMWvCUvB{@pEqAfEgCzF{BnEqBnEi@`B}A|DeAhEcCnOyEzVmAvD_@p@{@p@qFzDcAz@u@vAWlAIzBLtB^`Bp@~Ax@pA~@hAfA~@~CjBz@\\\\jGlD|ClBfAv@xBtBbDpDr@~@pA~AxAlBzAvBtAnCZx@jA|DTpApCnP~@pF\\\\`A~DbJjBbEtDbGzDnHpDrHhLtT?RrDdHlCxEnCdE@F@Ll@z@vEtFPZ?fDAbC@z@\"},\"summary\":\"Tulip Ave\",\"warnings\":[],\"waypoint_order\":[1,0]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"bb577e2a-88cb-4088-8220-cb2d7b366840"}],"id":"0eaaab4b-322c-4c06-9606-77ba1e4dd75c","_postman_id":"0eaaab4b-322c-4c06-9606-77ba1e4dd75c","description":""},{"name":"Custom Addresses","item":[{"name":"Create Custom Location","id":"bcdfca8a-1a41-4b65-b42b-0261c148b4bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"latitude","value":"40.70327","description":"<p>required</p>\n","type":"text"},{"key":"longitude","value":"-73.667351","description":"<p>required</p>\n","type":"text"},{"key":"long_name","value":"My Custom Place","description":"<p>required</p>\n","type":"text"},{"key":"country","value":"US","description":"<p>required</p>\n","type":"text"},{"key":"address","value":"","description":"<p>optional, defaults to long_name</p>\n","type":"text","disabled":true},{"key":"short_name","value":"","description":"<p>optional, defaults to long_name</p>\n","type":"text","disabled":true},{"key":"address_two","value":"","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"city","value":"","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"state","value":"","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"postal_code","value":"","description":"<p>optional</p>\n","type":"text","disabled":true},{"key":"apartment_number","value":"","description":"<p>optional</p>\n","type":"text","disabled":true}]},"url":"{{host}}/location/custom","description":"<p>Create a custom location for a this company. Admins only</p>\n","urlObject":{"path":["location","custom"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"44d89547-5e44-4f47-b224-fe6824a8bfb1","name":"Multiple Stops","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?origin=169 grange street, franklin square ny&destination=390 metropolitan ave, brooklyn ny&waypoints=optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"origin","value":"169 grange street, franklin square ny"},{"key":"destination","value":"390 metropolitan ave, brooklyn ny"},{"key":"waypoints","value":"optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"19792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 14 Jul 2017 20:33:00 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"4d50-lJsgQV89afgR1l+sPqnzbzwraJ4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500064380997144","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ATVpbf1cRC0QEosrtcIsVEPOn4Cja5a3X.L7WpJEMLRaqsmCtLI3k0w39S6p6hlSsHTZgI1bo8sco","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"geocoded_waypoints\":[{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJA8i4uyVjwokRJ9S5kKEVU44\",\"types\":[\"premise\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJcbQT1ltiwokRdt6BWSHC_G0\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJsdUw6zRnwokRA2KesL5h97s\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJmdrtHl9ZwokR1sv9Yomflyw\",\"types\":[\"premise\"]}],\"routes\":[{\"bounds\":{\"northeast\":{\"lat\":40.7438783,\"lng\":-73.66746549999999},\"southwest\":{\"lat\":40.6655454,\"lng\":-73.95531129999999}},\"copyrights\":\"Map data ©2017 Google\",\"legs\":[{\"distance\":{\"text\":\"3.2 mi\",\"value\":5174},\"duration\":{\"text\":\"14 mins\",\"value\":815},\"end_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"start_address\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"steps\":[{\"distance\":{\"text\":\"0.2 mi\",\"value\":395},\"duration\":{\"text\":\"1 min\",\"value\":64},\"end_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"html_instructions\":\"Head <b>north</b> on <b>Grange St</b> toward <b>Benris Ave</b>\",\"polyline\":{\"points\":\"qzlwFpes`MuGKoLO\"},\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":719},\"duration\":{\"text\":\"3 mins\",\"value\":150},\"end_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"html_instructions\":\"Turn <b>left</b> onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wpmwFtds`MA~ACrAAhAETErAC`BEvAEzAEhA?@?JGvADPAf@Al@GlAA\\\\Ex@C^E|@?JAJCl@Cj@E`AAXE`AEt@I|AG~A\"},\"start_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"440 ft\",\"value\":134},\"duration\":{\"text\":\"1 min\",\"value\":29},\"end_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"html_instructions\":\"Turn <b>right</b> onto <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"qtmwFryt`MUWw@Q_ASwAY\"},\"start_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":539},\"duration\":{\"text\":\"1 min\",\"value\":62},\"end_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"html_instructions\":\"Slight <b>left</b> to stay on <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-slight-left\",\"polyline\":{\"points\":\"w{mwFzvt`MMBI@I@OBoCr@oCt@kCt@SF{@VC?UFQD_@Ja@Hi@JO@M?cAPs@JoAT\"},\"start_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.7 mi\",\"value\":2770},\"duration\":{\"text\":\"6 mins\",\"value\":351},\"end_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"html_instructions\":\"Turn <b>left</b> onto <b>Tulip Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cynwFl`u`M?N?PA^KzEEpBA|@Ab@CZATE^Ej@[pDMrA[jDAXCRAJCJAHCFADCFELe@hAk@tAWl@Uf@aAzBITQZIPEFEFCDCDKLOPW^UXc@j@}@jASVQVKLILQXINILYj@aAbBk@fAyAhC]p@OTOVIJGNQd@Sh@[|@GJ]pAm@hB[z@ENoAtDyAfEKZg@xAeA|Cw@|Bo@pBO`@eAzCcAzCcAzCIT{@dCcAzCeAzCcA|CKZw@zBw@hC{@vCaA`DGTSt@[hA\"},\"start_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"413 ft\",\"value\":126},\"duration\":{\"text\":\"1 min\",\"value\":26},\"end_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"html_instructions\":\"Turn <b>right</b> onto <b>Tyson Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"ubqwFfqz`MUy@E]m@aE\"},\"start_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":335},\"duration\":{\"text\":\"2 mins\",\"value\":91},\"end_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"html_instructions\":\"Turn <b>left</b> onto <b>S Tyson Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"_eqwFlhz`Mm@NiCt@WHe@HaAXeCn@{@TiAZ\"},\"start_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":156},\"duration\":{\"text\":\"1 min\",\"value\":42},\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"html_instructions\":\"Turn <b>left</b> onto <b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cwqwFboz`MYHd@tDTbBFd@\"},\"start_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"10.6 mi\",\"value\":17066},\"duration\":{\"text\":\"20 mins\",\"value\":1176},\"end_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"start_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"1.0 mi\",\"value\":1620},\"duration\":{\"text\":\"4 mins\",\"value\":219},\"end_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"html_instructions\":\"Head <b>west</b> on <b>Jericho Turnpike</b> toward <b>Brokaw Ave</b>\",\"polyline\":{\"points\":\"yuqwFlyz`MHj@Nz@TnBf@lDTxAHn@Hl@f@tD?XT~CNlBHzADd@BZPhCPlCTrDDl@PdCHbBFz@D\\\\Hr@ZtB\\\\rBDTlArGb@`CJn@F\\\\FXDZFZ^zBLt@ZhB?@DPLl@TdBZnBPt@XnAXnA\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"420 ft\",\"value\":128},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"html_instructions\":\"Continue onto <b>Jamaica Ave</b>\",\"polyline\":{\"points\":\"o}pwFxl~`MHb@VnAPv@b@hB\"},\"start_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"184 ft\",\"value\":56},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"html_instructions\":\"Turn <b>left</b> onto <b>241st St</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wzpwFnu~`MRGTGt@W\"},\"start_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.4 mi\",\"value\":3886},\"duration\":{\"text\":\"3 mins\",\"value\":173},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Slight <b>left</b> to merge onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"wwpwFft~`MP[FKFMBKDKDODMDMFKFKDGDEDEDEFEDCDCFCLCPC^A@?BAPCfCd@hB`@fAZXJVHTJh@TTLFBFDHDXLl@`@p@b@@@j@^f@^l@h@`@^pAhAbA~@r@l@d@\\\\RLJF\\\\PdAb@l@Tj@Ph@NTFz@Th@HT@TB|@DT?z@AbAGz@Gp@It@K`@Gh@K~@SpA_@HEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":519},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"html_instructions\":\"Take the <b>Brooklyn</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"aejwF`w~`Mb@?VAZATAXCdAIzC]tAKHAfAEJ?vACfD@jABD?FAh@?\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2090},\"duration\":{\"text\":\"1 min\",\"value\":86},\"end_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"html_instructions\":\"Continue onto <b>Belt Pkwy</b>/<b>Laurelton Pkwy</b>\",\"polyline\":{\"points\":\"_hiwFzt~`Mf@At@F`BVt@Pp@TbAb@vBhAlFvCrEtC|DjCb@Zh@d@PP@@xBlBRT|A|Az@|@~AdB|@r@fGzFvAjAf@d@f@`@jBvA@??@DDdAp@^Vj@\\\\fXvPtA|@\"},\"start_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4588},\"duration\":{\"text\":\"4 mins\",\"value\":213},\"end_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_bfwFf_aaMPBdAn@NH~@n@|@r@~@z@f@f@RPTTp@z@FFFJHNFJJPJTj@|ALXFRL\\\\BFDJNj@Nt@Hr@@^?`@Av@UxHYdKCn@?P?P?P?P?NGvG?rG?hA?fL@nF@zB?tJEbBErAIjBIlA?@CXCd@KhBKtBGt@_Crb@SzDOpCGdAWxEWvEIjAErAEr@E~ACxAIjDCpCApA?z@@dH@jABnAL|H?ZAPRlHJxC?R@T@LB~@BjAP~FR|Cd@zK\\\\`HLdCHnARdEHxC@d@B~@FbB\"},\"start_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":802},\"duration\":{\"text\":\"1 min\",\"value\":47},\"end_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"html_instructions\":\"Take exit <b>19</b> toward <b>Van Wyck Expy</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"usewFrekaMGBA??@A?A@?@?BAB?H?N?TA`@AXAXGr@Gx@Ir@Ej@I`AEd@Cd@APCZ?NAf@?DCLBlBBbC?h@@vGBlH?\\\\?N@`A?rA?t@ANAPCPALELENGPKN\"},\"start_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":522},\"duration\":{\"text\":\"1 min\",\"value\":30},\"end_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Interstate 678 N</b>/<b>Van Wyck Expwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"ewewF~_maMSRGHMLs@n@e@`@m@f@YRSJUHWFa@FO@uAGiBGsACkACm@Ao@?eA?u@@\"},\"start_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":1034},\"duration\":{\"text\":\"1 min\",\"value\":58},\"end_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>I-678 N</b>/<b>Van Wyck Expy</b>/<b>Bronx</b> and merge onto <b>I-678 N</b>/<b>Van Wyck Expy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_sfwFhfmaM}CP{@DW@OB[B[Ba@Hc@Hc@Jq@Nk@REBEBGHa@Fe@Jq@Ts@TcA^sEfBkE`BWHu@V?@g@PeC~@cBl@cFnB\"},\"start_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":259},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"html_instructions\":\"Take exit <b>3</b> toward <b>Linden Blvd</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"kjhwFb|maMY@gCp@SDE@KBOBIBG?m@H{ARe@FIBA?A?A@AA[A\"},\"start_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":569},\"duration\":{\"text\":\"1 min\",\"value\":76},\"end_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"html_instructions\":\"Merge onto <b>Van Wyck Expy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"sxhwFr_naMYJ}Al@eDvAYH{CjAqDlBkHjD\"},\"start_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":236},\"duration\":{\"text\":\"1 min\",\"value\":67},\"end_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"html_instructions\":\"Turn <b>left</b> onto <b>109th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"eviwFtonaMRv@@DBNFV@@Pt@|@rDx@jD\"},\"start_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":185},\"duration\":{\"text\":\"1 min\",\"value\":31},\"end_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"html_instructions\":\"Turn <b>right</b> at the 3rd cross street onto <b>134th St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"wpiwFr_oaMuH|C\"},\"start_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":241},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"html_instructions\":\"Turn <b>left</b> at the 1st cross street onto <b>107th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"mziwFpdoaMn@nDl@~Cn@bDJ`@\"},\"start_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":240},\"duration\":{\"text\":\"1 min\",\"value\":40},\"end_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Van Siclen St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"suiwFfuoaMwAEm@A{GKC?C?E?\"},\"start_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"299 ft\",\"value\":91},\"duration\":{\"text\":\"1 min\",\"value\":21},\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"html_instructions\":\"<b>Van Siclen St</b> turns slightly <b>left</b> and becomes <b>132nd St</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"polyline\":{\"points\":\"ccjwFrtoaM[L}@\\\\e@PYL\"},\"start_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"11.5 mi\",\"value\":18481},\"duration\":{\"text\":\"28 mins\",\"value\":1659},\"end_address\":\"390 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"start_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"steps\":[{\"distance\":{\"text\":\"210 ft\",\"value\":64},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"html_instructions\":\"Head <b>north</b> on <b>132nd St</b> toward <b>Liberty Ave</b>\",\"polyline\":{\"points\":\"}gjwF~voaMC?eBv@\"},\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":363},\"duration\":{\"text\":\"2 mins\",\"value\":143},\"end_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"html_instructions\":\"Turn <b>right</b> onto <b>Liberty Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"gkjwFvxoaMyAaCs@oAOi@GSg@cDe@uC@]Ku@?A?ACOEUKo@\"},\"start_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"121 ft\",\"value\":37},\"duration\":{\"text\":\"1 min\",\"value\":12},\"end_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"html_instructions\":\"Turn <b>left</b> onto <b>Van Wyck Expy</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"{sjwF~`oaMUJMFYL\"},\"start_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":219},\"duration\":{\"text\":\"1 min\",\"value\":25},\"end_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"html_instructions\":\"Slight <b>left</b> onto the <b>Route 678</b> ramp\",\"polyline\":{\"points\":\"yujwF`boaMGN?BEDEDCBGDIFOHqAn@A?aCjAIBGDKHIHEBA@UV\"},\"start_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.6 mi\",\"value\":5790},\"duration\":{\"text\":\"6 mins\",\"value\":348},\"end_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"html_instructions\":\"Merge onto <b>I-678 N</b> (signs for <b>Route 678</b>)\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"o`kwFtioaMEBIDc@PoAn@m@Zq@X}@b@eB|@yBnA_@Tq@Za@TSLC@u@^i@XaAd@kAf@YLaBv@gChAuAh@QDk@RaA\\\\w@\\\\_GtBKDiDlAu@ZwAd@G@w@XiAb@mBx@qCnAk@ZGBkCpAEB}At@MHo@^y@`@EDIDKBmA`@iAp@uAp@ULuA|@cBlAq@p@ONOR_@d@}DnFORONUXQRONQPMLONSPQLCBKHMJm@`@OJKL[T]\\\\IFIFMJOHcAn@QJQJSLSNUPSNa@ZUPoA`AQLSLSLSLWLQH[LWHQFUFQDUDUDU@UBUBU@U?U@U?WAS?UAYCUAiBOSAWASAU?WAU?U?UAS?W@W@Q@WBUBUDSDUDUFQFUFUHEBMFSHSJwBhAoAj@e@TSHSJUHSJQJQLOJUNONQLSPONSNQPQRQPOPQROPOPORSVKNORQVOTMRMTMTMRMTkBbDWd@U\\\\SVQVORSRONSROLSNOLSNSJSLQJSJQHUJUJSH}NfGm@VuCjAiKlEYNy@\\\\{@\\\\]NSF[Ji@NMBc@J_@Fi@FMBM@K@Q@kBHqFPG?aBFiAFe@D]DWBm@J}AT}@P}Cp@qB\\\\A@A?E?WFWD\"},\"start_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":866},\"duration\":{\"text\":\"3 mins\",\"value\":157},\"end_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"html_instructions\":\"Take exit <b>12B</b> for <b>Interstate 495 W</b>/<b>Long Is Expwy</b> toward <b>Midtown Tun</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"agtwFnjtaMSDgAFG@E?U@M@OAM?QCSEa@QIGA?SMYU?AYY?Ac@[QESEQAS@A?KBIBA?GBSLSRKR?@ABITG^CT?Z@TBTBNDLN^FPfAnCLf@Zt@@D?@pCzGzBtFJVDNFJDHDD?@RR\"},\"start_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.4 mi\",\"value\":5456},\"duration\":{\"text\":\"4 mins\",\"value\":268},\"end_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"html_instructions\":\"Merge onto <b>I-495 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"citwF`kuaMx@zBx@xBt@nBpAdDDH?@BFJX@B@BJV@D@BJV@D\\\\|@|BdGJV?@BDj@xA~@tCh@fBb@|AfAhEPt@\\\\`BTlA?@PdARrADVJ~@VvBNpBJbAHx@RbBXdBPdAj@zCfAvFVhA?B@@@Ft@tDf@bCd@xBl@xCh@jCDNDRpB|Jb@bCBPFRF^fArEbAhEXnABJ@DHZ?@@BDP?@@DJ^?@H`@@?DRPt@?BFVRx@Px@r@lDZtA?@Nv@VnAl@tCdBvIb@rBn@~C^hBVlAPr@Pr@ZjAh@dB?@h@`Bp@|BRr@Pp@Nt@Lp@Lx@Ht@Hv@Ft@Dt@FlABn@?@@p@`@|KDv@Dv@Fv@Ht@Jv@Jv@Nv@Nr@Np@JZHVJ\\\\FVHRL\\\\P`@Rd@Vh@Vf@j@jAZp@b@x@Vf@Vf@Tf@Rb@Pf@Tp@Nb@Lb@J^F\\\\H^Lj@Hd@Hl@Fd@Dd@D`@Df@Dl@Bz@Bt@@x@?t@Ap@Aj@Cr@Cf@Cj@q@tOSjFSlEOzC[nH\"},\"start_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2375},\"duration\":{\"text\":\"5 mins\",\"value\":311},\"end_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"html_instructions\":\"Take exit <b>17W</b> toward <b>Brooklyn</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"eiqwFxaabMSrBCb@E`@CXEXE`@ETG\\\\E\\\\GXETGZIVGZIXIXIVGVKXIXKVIVKVKXKTITKTQ`@S`@g@bA]j@MTMTMVMVMVKVKVKVeA|BMXQ^KXEPIXMZKXMXIPKVKXKTIVKVIXIVIVI\\\\GXGZGREVEVGXETEXsAzIEXGZGZgAdG_BvIEVGZGXGVIZIZIXIXIVIXKVITIRENINGLGJEFGHEFGFe@VQJOLQLQNSLQNsBtAQNIFUPOLSRMRMRKTMXGRCJENE\\\\E`@AXA^?^?V@XDd@D\\\\DXFTFXHVJXJVJVLTLRLTLRNRNRPRLNNPPNPPPLPNPLPLRLRJTLTLRLRJb@L\"},\"start_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2534},\"duration\":{\"text\":\"4 mins\",\"value\":211},\"end_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"html_instructions\":\"Merge onto <b>I-278 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"unrwFxqebMVN`E|BhAn@|@h@x@f@FD\\\\Th@^\\\\V`Az@v@x@nApArA~AZ^V^VZTXPRPTb@n@JLPRVZLP?@LNBDRVZb@DFDHLPZj@Td@Tj@@BLZDHDNNZRp@Nh@VdAHd@DTDTF\\\\BNBNx@zEF^F`@BHr@hEj@lDRbAPf@JXJ\\\\v@`B`AxBx@hBhAfC`@z@f@|@lCdEbA`BvBlErArC|A~CzDvHrAdCzBfE\\\\n@\"},\"start_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":415},\"duration\":{\"text\":\"1 min\",\"value\":59},\"end_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"html_instructions\":\"Take exit <b>32B</b> toward <b>Metropolitan Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"suowFn~ibM?BAB@D?D@B?B@@Td@`@t@\\\\l@p@pAf@~@Vf@`@r@f@|@j@~@l@~@v@jA^h@HN?B@B@L\"},\"start_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":210},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"html_instructions\":\"Merge onto <b>Meeker Ave</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}fowF~ujbMl@z@hBxBlBzBPZ\"},\"start_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"499 ft\",\"value\":152},\"duration\":{\"text\":\"1 min\",\"value\":45},\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"e~nwFl`kbM?fDA|@?dA@p@?H\"},\"start_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]}],\"overview_polyline\":{\"points\":\"qzlwFpes`MeU[ErDG~AItDQ~FGbBBx@QrEKtBm@jNUWw@QwCm@q@JgPlE{Bb@uEr@[lOyA`QKh@q@dBgErJ{BxCoBhCo@dAiHlMiA|CoBbGqKp[mLh]_E~LyCdK[hAUy@s@_FuFxAmIzBYHd@tD\\\\hCvAdKpAlJ|A|Uv@jMr@bGvDbTzB~M`BdIvAtGh@Ot@WP[NYHWXw@X_@XSTGp@EDAPCfCd@pD|@p@T|Ar@xAz@fCdBdFrExB`B|D|AdDv@~BJ~BIlBQ`Es@bDgA~Ao@vCcA~Bi@vC[dIMn`@m@t\\\\o@t^i@`JQfEEbBI`Iu@rAE~FAbC@|ADvCh@tBx@dJ`FpK`HlA`A`DvCvHtHnLnKrB~Ax\\\\~StA|@PBtAx@|BbBfBbBbBjBd@x@lA`Df@|AXhB@`Au@fX?fAGdSBhc@_@pJCZoEby@_ApQYxKCdQRtNh@|ShBza@VtE\\\\~IDdBFbBGBA@C@ARC`Bu@tJGdBBdGFhZI`A_@~@}AzAaChB_BZ_JWyE?aG\\\\}BZgCr@MLgAR}JrDoWtJ{Dz@m@JaEh@[AYJcGdCuDtA}MxG`@dBjCvKuH|Cn@nD|AbIJ`@wAEiIMi@LaC|@eBv@yAaCcAyBo@wDe@uC@]Kw@?AUuAc@RYLGNEHIHsBfAuCtAcAz@sEvB}HfEkB`AmFfCyIxDwDtAmUjIkHdDwFnC}BpAUHmA`@iAp@kB~@yDjCqBzBsFlHaAbAqCvBoAhAkBlAmDdCiCjByAr@qA^wAPwAFwACgG]uAAyAHuATsA`@}HvDoAl@gAx@oChCcC~CyEhIkA`BgAdAkAx@kAn@ed@jRgDrAwBj@eBT{J^yETaEj@wIbBkCZq@DcAKaAg@s@s@u@a@e@GU@WF[P_@f@Sz@Cp@Dj@X|@xB~FnGxO^|@DFRRx@zBnBhFvAnDPf@^bAfD|IxC|IzC~Lz@hFx@`IbAfIvEfVfIha@~EbTvF~WxEtUvA`GdCfIbAlEh@|EPtDh@fOb@|Ez@tEh@hB|@xBvBnEhBpDjA`Dj@`Ch@dDV|CH`FKxD}Az^k@jMWvCUvB{@pEqAfEgCzF{BnEqBnEi@`B}A|DeAhEcCnOyEzVmAvD_@p@{@p@qFzDcAz@u@vAWlAIzBLtB^`Bp@~Ax@pA~@hAfA~@~CjBz@\\\\jGlD|ClBfAv@xBtBbDpDr@~@pA~AxAlBzAvBtAnCZx@jA|DTpApCnP~@pF\\\\`A~DbJjBbEtDbGzDnHpDrHhLtT?RrDdHlCxEnCdE@F@Ll@z@vEtFPZ?fDAbC@z@\"},\"summary\":\"Tulip Ave\",\"warnings\":[],\"waypoint_order\":[1,0]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"bcdfca8a-1a41-4b65-b42b-0261c148b4bf"},{"name":"Search Custom Location","id":"df89c66e-780d-4f2b-a1ac-eb66eaa79c0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"long_name","value":"837 Jersey Ave","type":"text"},{"key":"_page","value":"1","type":"text"},{"key":"_limit","value":"25","type":"text"},{"key":"_start","value":"0","type":"text"}]},"url":"{{host}}/location/custom/search","urlObject":{"path":["location","custom","search"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1e556307-e642-4a5f-980e-cd95211cb821","name":"Multiple Stops","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?origin=169 grange street, franklin square ny&destination=390 metropolitan ave, brooklyn ny&waypoints=optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"origin","value":"169 grange street, franklin square ny"},{"key":"destination","value":"390 metropolitan ave, brooklyn ny"},{"key":"waypoints","value":"optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"19792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 14 Jul 2017 20:33:00 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"4d50-lJsgQV89afgR1l+sPqnzbzwraJ4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500064380997144","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ATVpbf1cRC0QEosrtcIsVEPOn4Cja5a3X.L7WpJEMLRaqsmCtLI3k0w39S6p6hlSsHTZgI1bo8sco","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"geocoded_waypoints\":[{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJA8i4uyVjwokRJ9S5kKEVU44\",\"types\":[\"premise\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJcbQT1ltiwokRdt6BWSHC_G0\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJsdUw6zRnwokRA2KesL5h97s\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJmdrtHl9ZwokR1sv9Yomflyw\",\"types\":[\"premise\"]}],\"routes\":[{\"bounds\":{\"northeast\":{\"lat\":40.7438783,\"lng\":-73.66746549999999},\"southwest\":{\"lat\":40.6655454,\"lng\":-73.95531129999999}},\"copyrights\":\"Map data ©2017 Google\",\"legs\":[{\"distance\":{\"text\":\"3.2 mi\",\"value\":5174},\"duration\":{\"text\":\"14 mins\",\"value\":815},\"end_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"start_address\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"steps\":[{\"distance\":{\"text\":\"0.2 mi\",\"value\":395},\"duration\":{\"text\":\"1 min\",\"value\":64},\"end_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"html_instructions\":\"Head <b>north</b> on <b>Grange St</b> toward <b>Benris Ave</b>\",\"polyline\":{\"points\":\"qzlwFpes`MuGKoLO\"},\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":719},\"duration\":{\"text\":\"3 mins\",\"value\":150},\"end_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"html_instructions\":\"Turn <b>left</b> onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wpmwFtds`MA~ACrAAhAETErAC`BEvAEzAEhA?@?JGvADPAf@Al@GlAA\\\\Ex@C^E|@?JAJCl@Cj@E`AAXE`AEt@I|AG~A\"},\"start_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"440 ft\",\"value\":134},\"duration\":{\"text\":\"1 min\",\"value\":29},\"end_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"html_instructions\":\"Turn <b>right</b> onto <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"qtmwFryt`MUWw@Q_ASwAY\"},\"start_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":539},\"duration\":{\"text\":\"1 min\",\"value\":62},\"end_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"html_instructions\":\"Slight <b>left</b> to stay on <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-slight-left\",\"polyline\":{\"points\":\"w{mwFzvt`MMBI@I@OBoCr@oCt@kCt@SF{@VC?UFQD_@Ja@Hi@JO@M?cAPs@JoAT\"},\"start_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.7 mi\",\"value\":2770},\"duration\":{\"text\":\"6 mins\",\"value\":351},\"end_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"html_instructions\":\"Turn <b>left</b> onto <b>Tulip Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cynwFl`u`M?N?PA^KzEEpBA|@Ab@CZATE^Ej@[pDMrA[jDAXCRAJCJAHCFADCFELe@hAk@tAWl@Uf@aAzBITQZIPEFEFCDCDKLOPW^UXc@j@}@jASVQVKLILQXINILYj@aAbBk@fAyAhC]p@OTOVIJGNQd@Sh@[|@GJ]pAm@hB[z@ENoAtDyAfEKZg@xAeA|Cw@|Bo@pBO`@eAzCcAzCcAzCIT{@dCcAzCeAzCcA|CKZw@zBw@hC{@vCaA`DGTSt@[hA\"},\"start_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"413 ft\",\"value\":126},\"duration\":{\"text\":\"1 min\",\"value\":26},\"end_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"html_instructions\":\"Turn <b>right</b> onto <b>Tyson Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"ubqwFfqz`MUy@E]m@aE\"},\"start_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":335},\"duration\":{\"text\":\"2 mins\",\"value\":91},\"end_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"html_instructions\":\"Turn <b>left</b> onto <b>S Tyson Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"_eqwFlhz`Mm@NiCt@WHe@HaAXeCn@{@TiAZ\"},\"start_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":156},\"duration\":{\"text\":\"1 min\",\"value\":42},\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"html_instructions\":\"Turn <b>left</b> onto <b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cwqwFboz`MYHd@tDTbBFd@\"},\"start_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"10.6 mi\",\"value\":17066},\"duration\":{\"text\":\"20 mins\",\"value\":1176},\"end_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"start_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"1.0 mi\",\"value\":1620},\"duration\":{\"text\":\"4 mins\",\"value\":219},\"end_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"html_instructions\":\"Head <b>west</b> on <b>Jericho Turnpike</b> toward <b>Brokaw Ave</b>\",\"polyline\":{\"points\":\"yuqwFlyz`MHj@Nz@TnBf@lDTxAHn@Hl@f@tD?XT~CNlBHzADd@BZPhCPlCTrDDl@PdCHbBFz@D\\\\Hr@ZtB\\\\rBDTlArGb@`CJn@F\\\\FXDZFZ^zBLt@ZhB?@DPLl@TdBZnBPt@XnAXnA\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"420 ft\",\"value\":128},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"html_instructions\":\"Continue onto <b>Jamaica Ave</b>\",\"polyline\":{\"points\":\"o}pwFxl~`MHb@VnAPv@b@hB\"},\"start_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"184 ft\",\"value\":56},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"html_instructions\":\"Turn <b>left</b> onto <b>241st St</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wzpwFnu~`MRGTGt@W\"},\"start_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.4 mi\",\"value\":3886},\"duration\":{\"text\":\"3 mins\",\"value\":173},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Slight <b>left</b> to merge onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"wwpwFft~`MP[FKFMBKDKDODMDMFKFKDGDEDEDEFEDCDCFCLCPC^A@?BAPCfCd@hB`@fAZXJVHTJh@TTLFBFDHDXLl@`@p@b@@@j@^f@^l@h@`@^pAhAbA~@r@l@d@\\\\RLJF\\\\PdAb@l@Tj@Ph@NTFz@Th@HT@TB|@DT?z@AbAGz@Gp@It@K`@Gh@K~@SpA_@HEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":519},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"html_instructions\":\"Take the <b>Brooklyn</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"aejwF`w~`Mb@?VAZATAXCdAIzC]tAKHAfAEJ?vACfD@jABD?FAh@?\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2090},\"duration\":{\"text\":\"1 min\",\"value\":86},\"end_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"html_instructions\":\"Continue onto <b>Belt Pkwy</b>/<b>Laurelton Pkwy</b>\",\"polyline\":{\"points\":\"_hiwFzt~`Mf@At@F`BVt@Pp@TbAb@vBhAlFvCrEtC|DjCb@Zh@d@PP@@xBlBRT|A|Az@|@~AdB|@r@fGzFvAjAf@d@f@`@jBvA@??@DDdAp@^Vj@\\\\fXvPtA|@\"},\"start_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4588},\"duration\":{\"text\":\"4 mins\",\"value\":213},\"end_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_bfwFf_aaMPBdAn@NH~@n@|@r@~@z@f@f@RPTTp@z@FFFJHNFJJPJTj@|ALXFRL\\\\BFDJNj@Nt@Hr@@^?`@Av@UxHYdKCn@?P?P?P?P?NGvG?rG?hA?fL@nF@zB?tJEbBErAIjBIlA?@CXCd@KhBKtBGt@_Crb@SzDOpCGdAWxEWvEIjAErAEr@E~ACxAIjDCpCApA?z@@dH@jABnAL|H?ZAPRlHJxC?R@T@LB~@BjAP~FR|Cd@zK\\\\`HLdCHnARdEHxC@d@B~@FbB\"},\"start_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":802},\"duration\":{\"text\":\"1 min\",\"value\":47},\"end_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"html_instructions\":\"Take exit <b>19</b> toward <b>Van Wyck Expy</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"usewFrekaMGBA??@A?A@?@?BAB?H?N?TA`@AXAXGr@Gx@Ir@Ej@I`AEd@Cd@APCZ?NAf@?DCLBlBBbC?h@@vGBlH?\\\\?N@`A?rA?t@ANAPCPALELENGPKN\"},\"start_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":522},\"duration\":{\"text\":\"1 min\",\"value\":30},\"end_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Interstate 678 N</b>/<b>Van Wyck Expwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"ewewF~_maMSRGHMLs@n@e@`@m@f@YRSJUHWFa@FO@uAGiBGsACkACm@Ao@?eA?u@@\"},\"start_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":1034},\"duration\":{\"text\":\"1 min\",\"value\":58},\"end_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>I-678 N</b>/<b>Van Wyck Expy</b>/<b>Bronx</b> and merge onto <b>I-678 N</b>/<b>Van Wyck Expy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_sfwFhfmaM}CP{@DW@OB[B[Ba@Hc@Hc@Jq@Nk@REBEBGHa@Fe@Jq@Ts@TcA^sEfBkE`BWHu@V?@g@PeC~@cBl@cFnB\"},\"start_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":259},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"html_instructions\":\"Take exit <b>3</b> toward <b>Linden Blvd</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"kjhwFb|maMY@gCp@SDE@KBOBIBG?m@H{ARe@FIBA?A?A@AA[A\"},\"start_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":569},\"duration\":{\"text\":\"1 min\",\"value\":76},\"end_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"html_instructions\":\"Merge onto <b>Van Wyck Expy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"sxhwFr_naMYJ}Al@eDvAYH{CjAqDlBkHjD\"},\"start_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":236},\"duration\":{\"text\":\"1 min\",\"value\":67},\"end_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"html_instructions\":\"Turn <b>left</b> onto <b>109th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"eviwFtonaMRv@@DBNFV@@Pt@|@rDx@jD\"},\"start_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":185},\"duration\":{\"text\":\"1 min\",\"value\":31},\"end_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"html_instructions\":\"Turn <b>right</b> at the 3rd cross street onto <b>134th St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"wpiwFr_oaMuH|C\"},\"start_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":241},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"html_instructions\":\"Turn <b>left</b> at the 1st cross street onto <b>107th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"mziwFpdoaMn@nDl@~Cn@bDJ`@\"},\"start_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":240},\"duration\":{\"text\":\"1 min\",\"value\":40},\"end_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Van Siclen St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"suiwFfuoaMwAEm@A{GKC?C?E?\"},\"start_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"299 ft\",\"value\":91},\"duration\":{\"text\":\"1 min\",\"value\":21},\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"html_instructions\":\"<b>Van Siclen St</b> turns slightly <b>left</b> and becomes <b>132nd St</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"polyline\":{\"points\":\"ccjwFrtoaM[L}@\\\\e@PYL\"},\"start_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"11.5 mi\",\"value\":18481},\"duration\":{\"text\":\"28 mins\",\"value\":1659},\"end_address\":\"390 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"start_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"steps\":[{\"distance\":{\"text\":\"210 ft\",\"value\":64},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"html_instructions\":\"Head <b>north</b> on <b>132nd St</b> toward <b>Liberty Ave</b>\",\"polyline\":{\"points\":\"}gjwF~voaMC?eBv@\"},\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":363},\"duration\":{\"text\":\"2 mins\",\"value\":143},\"end_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"html_instructions\":\"Turn <b>right</b> onto <b>Liberty Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"gkjwFvxoaMyAaCs@oAOi@GSg@cDe@uC@]Ku@?A?ACOEUKo@\"},\"start_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"121 ft\",\"value\":37},\"duration\":{\"text\":\"1 min\",\"value\":12},\"end_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"html_instructions\":\"Turn <b>left</b> onto <b>Van Wyck Expy</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"{sjwF~`oaMUJMFYL\"},\"start_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":219},\"duration\":{\"text\":\"1 min\",\"value\":25},\"end_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"html_instructions\":\"Slight <b>left</b> onto the <b>Route 678</b> ramp\",\"polyline\":{\"points\":\"yujwF`boaMGN?BEDEDCBGDIFOHqAn@A?aCjAIBGDKHIHEBA@UV\"},\"start_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.6 mi\",\"value\":5790},\"duration\":{\"text\":\"6 mins\",\"value\":348},\"end_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"html_instructions\":\"Merge onto <b>I-678 N</b> (signs for <b>Route 678</b>)\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"o`kwFtioaMEBIDc@PoAn@m@Zq@X}@b@eB|@yBnA_@Tq@Za@TSLC@u@^i@XaAd@kAf@YLaBv@gChAuAh@QDk@RaA\\\\w@\\\\_GtBKDiDlAu@ZwAd@G@w@XiAb@mBx@qCnAk@ZGBkCpAEB}At@MHo@^y@`@EDIDKBmA`@iAp@uAp@ULuA|@cBlAq@p@ONOR_@d@}DnFORONUXQRONQPMLONSPQLCBKHMJm@`@OJKL[T]\\\\IFIFMJOHcAn@QJQJSLSNUPSNa@ZUPoA`AQLSLSLSLWLQH[LWHQFUFQDUDUDU@UBUBU@U?U@U?WAS?UAYCUAiBOSAWASAU?WAU?U?UAS?W@W@Q@WBUBUDSDUDUFQFUFUHEBMFSHSJwBhAoAj@e@TSHSJUHSJQJQLOJUNONQLSPONSNQPQRQPOPQROPOPORSVKNORQVOTMRMTMTMRMTkBbDWd@U\\\\SVQVORSRONSROLSNOLSNSJSLQJSJQHUJUJSH}NfGm@VuCjAiKlEYNy@\\\\{@\\\\]NSF[Ji@NMBc@J_@Fi@FMBM@K@Q@kBHqFPG?aBFiAFe@D]DWBm@J}AT}@P}Cp@qB\\\\A@A?E?WFWD\"},\"start_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":866},\"duration\":{\"text\":\"3 mins\",\"value\":157},\"end_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"html_instructions\":\"Take exit <b>12B</b> for <b>Interstate 495 W</b>/<b>Long Is Expwy</b> toward <b>Midtown Tun</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"agtwFnjtaMSDgAFG@E?U@M@OAM?QCSEa@QIGA?SMYU?AYY?Ac@[QESEQAS@A?KBIBA?GBSLSRKR?@ABITG^CT?Z@TBTBNDLN^FPfAnCLf@Zt@@D?@pCzGzBtFJVDNFJDHDD?@RR\"},\"start_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.4 mi\",\"value\":5456},\"duration\":{\"text\":\"4 mins\",\"value\":268},\"end_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"html_instructions\":\"Merge onto <b>I-495 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"citwF`kuaMx@zBx@xBt@nBpAdDDH?@BFJX@B@BJV@D@BJV@D\\\\|@|BdGJV?@BDj@xA~@tCh@fBb@|AfAhEPt@\\\\`BTlA?@PdARrADVJ~@VvBNpBJbAHx@RbBXdBPdAj@zCfAvFVhA?B@@@Ft@tDf@bCd@xBl@xCh@jCDNDRpB|Jb@bCBPFRF^fArEbAhEXnABJ@DHZ?@@BDP?@@DJ^?@H`@@?DRPt@?BFVRx@Px@r@lDZtA?@Nv@VnAl@tCdBvIb@rBn@~C^hBVlAPr@Pr@ZjAh@dB?@h@`Bp@|BRr@Pp@Nt@Lp@Lx@Ht@Hv@Ft@Dt@FlABn@?@@p@`@|KDv@Dv@Fv@Ht@Jv@Jv@Nv@Nr@Np@JZHVJ\\\\FVHRL\\\\P`@Rd@Vh@Vf@j@jAZp@b@x@Vf@Vf@Tf@Rb@Pf@Tp@Nb@Lb@J^F\\\\H^Lj@Hd@Hl@Fd@Dd@D`@Df@Dl@Bz@Bt@@x@?t@Ap@Aj@Cr@Cf@Cj@q@tOSjFSlEOzC[nH\"},\"start_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2375},\"duration\":{\"text\":\"5 mins\",\"value\":311},\"end_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"html_instructions\":\"Take exit <b>17W</b> toward <b>Brooklyn</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"eiqwFxaabMSrBCb@E`@CXEXE`@ETG\\\\E\\\\GXETGZIVGZIXIXIVGVKXIXKVIVKVKXKTITKTQ`@S`@g@bA]j@MTMTMVMVMVKVKVKVeA|BMXQ^KXEPIXMZKXMXIPKVKXKTIVKVIXIVIVI\\\\GXGZGREVEVGXETEXsAzIEXGZGZgAdG_BvIEVGZGXGVIZIZIXIXIVIXKVITIRENINGLGJEFGHEFGFe@VQJOLQLQNSLQNsBtAQNIFUPOLSRMRMRKTMXGRCJENE\\\\E`@AXA^?^?V@XDd@D\\\\DXFTFXHVJXJVJVLTLRLTLRNRNRPRLNNPPNPPPLPNPLPLRLRJTLTLRLRJb@L\"},\"start_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2534},\"duration\":{\"text\":\"4 mins\",\"value\":211},\"end_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"html_instructions\":\"Merge onto <b>I-278 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"unrwFxqebMVN`E|BhAn@|@h@x@f@FD\\\\Th@^\\\\V`Az@v@x@nApArA~AZ^V^VZTXPRPTb@n@JLPRVZLP?@LNBDRVZb@DFDHLPZj@Td@Tj@@BLZDHDNNZRp@Nh@VdAHd@DTDTF\\\\BNBNx@zEF^F`@BHr@hEj@lDRbAPf@JXJ\\\\v@`B`AxBx@hBhAfC`@z@f@|@lCdEbA`BvBlErArC|A~CzDvHrAdCzBfE\\\\n@\"},\"start_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":415},\"duration\":{\"text\":\"1 min\",\"value\":59},\"end_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"html_instructions\":\"Take exit <b>32B</b> toward <b>Metropolitan Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"suowFn~ibM?BAB@D?D@B?B@@Td@`@t@\\\\l@p@pAf@~@Vf@`@r@f@|@j@~@l@~@v@jA^h@HN?B@B@L\"},\"start_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":210},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"html_instructions\":\"Merge onto <b>Meeker Ave</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}fowF~ujbMl@z@hBxBlBzBPZ\"},\"start_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"499 ft\",\"value\":152},\"duration\":{\"text\":\"1 min\",\"value\":45},\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"e~nwFl`kbM?fDA|@?dA@p@?H\"},\"start_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]}],\"overview_polyline\":{\"points\":\"qzlwFpes`MeU[ErDG~AItDQ~FGbBBx@QrEKtBm@jNUWw@QwCm@q@JgPlE{Bb@uEr@[lOyA`QKh@q@dBgErJ{BxCoBhCo@dAiHlMiA|CoBbGqKp[mLh]_E~LyCdK[hAUy@s@_FuFxAmIzBYHd@tD\\\\hCvAdKpAlJ|A|Uv@jMr@bGvDbTzB~M`BdIvAtGh@Ot@WP[NYHWXw@X_@XSTGp@EDAPCfCd@pD|@p@T|Ar@xAz@fCdBdFrExB`B|D|AdDv@~BJ~BIlBQ`Es@bDgA~Ao@vCcA~Bi@vC[dIMn`@m@t\\\\o@t^i@`JQfEEbBI`Iu@rAE~FAbC@|ADvCh@tBx@dJ`FpK`HlA`A`DvCvHtHnLnKrB~Ax\\\\~StA|@PBtAx@|BbBfBbBbBjBd@x@lA`Df@|AXhB@`Au@fX?fAGdSBhc@_@pJCZoEby@_ApQYxKCdQRtNh@|ShBza@VtE\\\\~IDdBFbBGBA@C@ARC`Bu@tJGdBBdGFhZI`A_@~@}AzAaChB_BZ_JWyE?aG\\\\}BZgCr@MLgAR}JrDoWtJ{Dz@m@JaEh@[AYJcGdCuDtA}MxG`@dBjCvKuH|Cn@nD|AbIJ`@wAEiIMi@LaC|@eBv@yAaCcAyBo@wDe@uC@]Kw@?AUuAc@RYLGNEHIHsBfAuCtAcAz@sEvB}HfEkB`AmFfCyIxDwDtAmUjIkHdDwFnC}BpAUHmA`@iAp@kB~@yDjCqBzBsFlHaAbAqCvBoAhAkBlAmDdCiCjByAr@qA^wAPwAFwACgG]uAAyAHuATsA`@}HvDoAl@gAx@oChCcC~CyEhIkA`BgAdAkAx@kAn@ed@jRgDrAwBj@eBT{J^yETaEj@wIbBkCZq@DcAKaAg@s@s@u@a@e@GU@WF[P_@f@Sz@Cp@Dj@X|@xB~FnGxO^|@DFRRx@zBnBhFvAnDPf@^bAfD|IxC|IzC~Lz@hFx@`IbAfIvEfVfIha@~EbTvF~WxEtUvA`GdCfIbAlEh@|EPtDh@fOb@|Ez@tEh@hB|@xBvBnEhBpDjA`Dj@`Ch@dDV|CH`FKxD}Az^k@jMWvCUvB{@pEqAfEgCzF{BnEqBnEi@`B}A|DeAhEcCnOyEzVmAvD_@p@{@p@qFzDcAz@u@vAWlAIzBLtB^`Bp@~Ax@pA~@hAfA~@~CjBz@\\\\jGlD|ClBfAv@xBtBbDpDr@~@pA~AxAlBzAvBtAnCZx@jA|DTpApCnP~@pF\\\\`A~DbJjBbEtDbGzDnHpDrHhLtT?RrDdHlCxEnCdE@F@Ll@z@vEtFPZ?fDAbC@z@\"},\"summary\":\"Tulip Ave\",\"warnings\":[],\"waypoint_order\":[1,0]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"df89c66e-780d-4f2b-a1ac-eb66eaa79c0f"}],"id":"139cb982-d626-46bf-8d34-7d32abbe9860","_postman_id":"139cb982-d626-46bf-8d34-7d32abbe9860","description":""},{"name":"Flagged Addresses","item":[{"name":"Add Flagged Locations","id":"f019238c-ee51-4433-b04f-51fc78280736","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"locations[0][long_name]","value":"43-10 Crescent St, Long Island City, NY 11101, USA","type":"text"},{"key":"locations[1][long_name]","value":"555 Bergen Ave, The Bronx, NY 10455, USA","type":"text"},{"key":"locations[1][notes]","value":"This location might be a hospital","description":"<p>optional</p>\n","type":"text"},{"key":"type","value":"gray","type":"text"}]},"url":"{{host}}/location/flagged","description":"<p>Used to create flagged locations for a specific company. Either a location object with a location_id can be sent in the locations array or an object with a latitude/longitude pair or a long_name to be used for geocoding.</p>\n<p>The type field will determine how this location is used for the company.</p>\n<p>Types:</p>\n<p>white: This location will be allowed to be created as a stop even if it is in a banned or restricted zone.</p>\n<p>gray: This if this location is created as a stop it will send an email to company admins to check on this location</p>\n<p>black: This location will always be rejected when trying to create a job</p>\n","urlObject":{"path":["location","flagged"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f019238c-ee51-4433-b04f-51fc78280736"},{"name":"Delete Flagged Locations","id":"603e8f11-bf8a-4a09-9a21-84586381ae33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"location_ids","value":"388104","type":"text"},{"key":"location_ids","value":"388109","type":"text"}]},"url":"{{host}}/location/flagged","urlObject":{"path":["location","flagged"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e6715b8d-e658-4650-92fa-148c63b78177","name":"Multiple Stops","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?origin=169 grange street, franklin square ny&destination=390 metropolitan ave, brooklyn ny&waypoints=optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"origin","value":"169 grange street, franklin square ny"},{"key":"destination","value":"390 metropolitan ave, brooklyn ny"},{"key":"waypoints","value":"optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"19792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 14 Jul 2017 20:33:00 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"4d50-lJsgQV89afgR1l+sPqnzbzwraJ4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500064380997144","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ATVpbf1cRC0QEosrtcIsVEPOn4Cja5a3X.L7WpJEMLRaqsmCtLI3k0w39S6p6hlSsHTZgI1bo8sco","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"geocoded_waypoints\":[{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJA8i4uyVjwokRJ9S5kKEVU44\",\"types\":[\"premise\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJcbQT1ltiwokRdt6BWSHC_G0\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJsdUw6zRnwokRA2KesL5h97s\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJmdrtHl9ZwokR1sv9Yomflyw\",\"types\":[\"premise\"]}],\"routes\":[{\"bounds\":{\"northeast\":{\"lat\":40.7438783,\"lng\":-73.66746549999999},\"southwest\":{\"lat\":40.6655454,\"lng\":-73.95531129999999}},\"copyrights\":\"Map data ©2017 Google\",\"legs\":[{\"distance\":{\"text\":\"3.2 mi\",\"value\":5174},\"duration\":{\"text\":\"14 mins\",\"value\":815},\"end_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"start_address\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"steps\":[{\"distance\":{\"text\":\"0.2 mi\",\"value\":395},\"duration\":{\"text\":\"1 min\",\"value\":64},\"end_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"html_instructions\":\"Head <b>north</b> on <b>Grange St</b> toward <b>Benris Ave</b>\",\"polyline\":{\"points\":\"qzlwFpes`MuGKoLO\"},\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":719},\"duration\":{\"text\":\"3 mins\",\"value\":150},\"end_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"html_instructions\":\"Turn <b>left</b> onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wpmwFtds`MA~ACrAAhAETErAC`BEvAEzAEhA?@?JGvADPAf@Al@GlAA\\\\Ex@C^E|@?JAJCl@Cj@E`AAXE`AEt@I|AG~A\"},\"start_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"440 ft\",\"value\":134},\"duration\":{\"text\":\"1 min\",\"value\":29},\"end_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"html_instructions\":\"Turn <b>right</b> onto <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"qtmwFryt`MUWw@Q_ASwAY\"},\"start_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":539},\"duration\":{\"text\":\"1 min\",\"value\":62},\"end_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"html_instructions\":\"Slight <b>left</b> to stay on <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-slight-left\",\"polyline\":{\"points\":\"w{mwFzvt`MMBI@I@OBoCr@oCt@kCt@SF{@VC?UFQD_@Ja@Hi@JO@M?cAPs@JoAT\"},\"start_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.7 mi\",\"value\":2770},\"duration\":{\"text\":\"6 mins\",\"value\":351},\"end_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"html_instructions\":\"Turn <b>left</b> onto <b>Tulip Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cynwFl`u`M?N?PA^KzEEpBA|@Ab@CZATE^Ej@[pDMrA[jDAXCRAJCJAHCFADCFELe@hAk@tAWl@Uf@aAzBITQZIPEFEFCDCDKLOPW^UXc@j@}@jASVQVKLILQXINILYj@aAbBk@fAyAhC]p@OTOVIJGNQd@Sh@[|@GJ]pAm@hB[z@ENoAtDyAfEKZg@xAeA|Cw@|Bo@pBO`@eAzCcAzCcAzCIT{@dCcAzCeAzCcA|CKZw@zBw@hC{@vCaA`DGTSt@[hA\"},\"start_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"413 ft\",\"value\":126},\"duration\":{\"text\":\"1 min\",\"value\":26},\"end_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"html_instructions\":\"Turn <b>right</b> onto <b>Tyson Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"ubqwFfqz`MUy@E]m@aE\"},\"start_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":335},\"duration\":{\"text\":\"2 mins\",\"value\":91},\"end_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"html_instructions\":\"Turn <b>left</b> onto <b>S Tyson Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"_eqwFlhz`Mm@NiCt@WHe@HaAXeCn@{@TiAZ\"},\"start_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":156},\"duration\":{\"text\":\"1 min\",\"value\":42},\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"html_instructions\":\"Turn <b>left</b> onto <b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cwqwFboz`MYHd@tDTbBFd@\"},\"start_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"10.6 mi\",\"value\":17066},\"duration\":{\"text\":\"20 mins\",\"value\":1176},\"end_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"start_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"1.0 mi\",\"value\":1620},\"duration\":{\"text\":\"4 mins\",\"value\":219},\"end_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"html_instructions\":\"Head <b>west</b> on <b>Jericho Turnpike</b> toward <b>Brokaw Ave</b>\",\"polyline\":{\"points\":\"yuqwFlyz`MHj@Nz@TnBf@lDTxAHn@Hl@f@tD?XT~CNlBHzADd@BZPhCPlCTrDDl@PdCHbBFz@D\\\\Hr@ZtB\\\\rBDTlArGb@`CJn@F\\\\FXDZFZ^zBLt@ZhB?@DPLl@TdBZnBPt@XnAXnA\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"420 ft\",\"value\":128},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"html_instructions\":\"Continue onto <b>Jamaica Ave</b>\",\"polyline\":{\"points\":\"o}pwFxl~`MHb@VnAPv@b@hB\"},\"start_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"184 ft\",\"value\":56},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"html_instructions\":\"Turn <b>left</b> onto <b>241st St</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wzpwFnu~`MRGTGt@W\"},\"start_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.4 mi\",\"value\":3886},\"duration\":{\"text\":\"3 mins\",\"value\":173},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Slight <b>left</b> to merge onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"wwpwFft~`MP[FKFMBKDKDODMDMFKFKDGDEDEDEFEDCDCFCLCPC^A@?BAPCfCd@hB`@fAZXJVHTJh@TTLFBFDHDXLl@`@p@b@@@j@^f@^l@h@`@^pAhAbA~@r@l@d@\\\\RLJF\\\\PdAb@l@Tj@Ph@NTFz@Th@HT@TB|@DT?z@AbAGz@Gp@It@K`@Gh@K~@SpA_@HEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":519},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"html_instructions\":\"Take the <b>Brooklyn</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"aejwF`w~`Mb@?VAZATAXCdAIzC]tAKHAfAEJ?vACfD@jABD?FAh@?\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2090},\"duration\":{\"text\":\"1 min\",\"value\":86},\"end_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"html_instructions\":\"Continue onto <b>Belt Pkwy</b>/<b>Laurelton Pkwy</b>\",\"polyline\":{\"points\":\"_hiwFzt~`Mf@At@F`BVt@Pp@TbAb@vBhAlFvCrEtC|DjCb@Zh@d@PP@@xBlBRT|A|Az@|@~AdB|@r@fGzFvAjAf@d@f@`@jBvA@??@DDdAp@^Vj@\\\\fXvPtA|@\"},\"start_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4588},\"duration\":{\"text\":\"4 mins\",\"value\":213},\"end_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_bfwFf_aaMPBdAn@NH~@n@|@r@~@z@f@f@RPTTp@z@FFFJHNFJJPJTj@|ALXFRL\\\\BFDJNj@Nt@Hr@@^?`@Av@UxHYdKCn@?P?P?P?P?NGvG?rG?hA?fL@nF@zB?tJEbBErAIjBIlA?@CXCd@KhBKtBGt@_Crb@SzDOpCGdAWxEWvEIjAErAEr@E~ACxAIjDCpCApA?z@@dH@jABnAL|H?ZAPRlHJxC?R@T@LB~@BjAP~FR|Cd@zK\\\\`HLdCHnARdEHxC@d@B~@FbB\"},\"start_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":802},\"duration\":{\"text\":\"1 min\",\"value\":47},\"end_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"html_instructions\":\"Take exit <b>19</b> toward <b>Van Wyck Expy</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"usewFrekaMGBA??@A?A@?@?BAB?H?N?TA`@AXAXGr@Gx@Ir@Ej@I`AEd@Cd@APCZ?NAf@?DCLBlBBbC?h@@vGBlH?\\\\?N@`A?rA?t@ANAPCPALELENGPKN\"},\"start_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":522},\"duration\":{\"text\":\"1 min\",\"value\":30},\"end_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Interstate 678 N</b>/<b>Van Wyck Expwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"ewewF~_maMSRGHMLs@n@e@`@m@f@YRSJUHWFa@FO@uAGiBGsACkACm@Ao@?eA?u@@\"},\"start_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":1034},\"duration\":{\"text\":\"1 min\",\"value\":58},\"end_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>I-678 N</b>/<b>Van Wyck Expy</b>/<b>Bronx</b> and merge onto <b>I-678 N</b>/<b>Van Wyck Expy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_sfwFhfmaM}CP{@DW@OB[B[Ba@Hc@Hc@Jq@Nk@REBEBGHa@Fe@Jq@Ts@TcA^sEfBkE`BWHu@V?@g@PeC~@cBl@cFnB\"},\"start_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":259},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"html_instructions\":\"Take exit <b>3</b> toward <b>Linden Blvd</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"kjhwFb|maMY@gCp@SDE@KBOBIBG?m@H{ARe@FIBA?A?A@AA[A\"},\"start_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":569},\"duration\":{\"text\":\"1 min\",\"value\":76},\"end_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"html_instructions\":\"Merge onto <b>Van Wyck Expy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"sxhwFr_naMYJ}Al@eDvAYH{CjAqDlBkHjD\"},\"start_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":236},\"duration\":{\"text\":\"1 min\",\"value\":67},\"end_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"html_instructions\":\"Turn <b>left</b> onto <b>109th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"eviwFtonaMRv@@DBNFV@@Pt@|@rDx@jD\"},\"start_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":185},\"duration\":{\"text\":\"1 min\",\"value\":31},\"end_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"html_instructions\":\"Turn <b>right</b> at the 3rd cross street onto <b>134th St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"wpiwFr_oaMuH|C\"},\"start_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":241},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"html_instructions\":\"Turn <b>left</b> at the 1st cross street onto <b>107th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"mziwFpdoaMn@nDl@~Cn@bDJ`@\"},\"start_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":240},\"duration\":{\"text\":\"1 min\",\"value\":40},\"end_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Van Siclen St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"suiwFfuoaMwAEm@A{GKC?C?E?\"},\"start_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"299 ft\",\"value\":91},\"duration\":{\"text\":\"1 min\",\"value\":21},\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"html_instructions\":\"<b>Van Siclen St</b> turns slightly <b>left</b> and becomes <b>132nd St</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"polyline\":{\"points\":\"ccjwFrtoaM[L}@\\\\e@PYL\"},\"start_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"11.5 mi\",\"value\":18481},\"duration\":{\"text\":\"28 mins\",\"value\":1659},\"end_address\":\"390 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"start_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"steps\":[{\"distance\":{\"text\":\"210 ft\",\"value\":64},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"html_instructions\":\"Head <b>north</b> on <b>132nd St</b> toward <b>Liberty Ave</b>\",\"polyline\":{\"points\":\"}gjwF~voaMC?eBv@\"},\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":363},\"duration\":{\"text\":\"2 mins\",\"value\":143},\"end_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"html_instructions\":\"Turn <b>right</b> onto <b>Liberty Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"gkjwFvxoaMyAaCs@oAOi@GSg@cDe@uC@]Ku@?A?ACOEUKo@\"},\"start_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"121 ft\",\"value\":37},\"duration\":{\"text\":\"1 min\",\"value\":12},\"end_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"html_instructions\":\"Turn <b>left</b> onto <b>Van Wyck Expy</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"{sjwF~`oaMUJMFYL\"},\"start_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":219},\"duration\":{\"text\":\"1 min\",\"value\":25},\"end_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"html_instructions\":\"Slight <b>left</b> onto the <b>Route 678</b> ramp\",\"polyline\":{\"points\":\"yujwF`boaMGN?BEDEDCBGDIFOHqAn@A?aCjAIBGDKHIHEBA@UV\"},\"start_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.6 mi\",\"value\":5790},\"duration\":{\"text\":\"6 mins\",\"value\":348},\"end_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"html_instructions\":\"Merge onto <b>I-678 N</b> (signs for <b>Route 678</b>)\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"o`kwFtioaMEBIDc@PoAn@m@Zq@X}@b@eB|@yBnA_@Tq@Za@TSLC@u@^i@XaAd@kAf@YLaBv@gChAuAh@QDk@RaA\\\\w@\\\\_GtBKDiDlAu@ZwAd@G@w@XiAb@mBx@qCnAk@ZGBkCpAEB}At@MHo@^y@`@EDIDKBmA`@iAp@uAp@ULuA|@cBlAq@p@ONOR_@d@}DnFORONUXQRONQPMLONSPQLCBKHMJm@`@OJKL[T]\\\\IFIFMJOHcAn@QJQJSLSNUPSNa@ZUPoA`AQLSLSLSLWLQH[LWHQFUFQDUDUDU@UBUBU@U?U@U?WAS?UAYCUAiBOSAWASAU?WAU?U?UAS?W@W@Q@WBUBUDSDUDUFQFUFUHEBMFSHSJwBhAoAj@e@TSHSJUHSJQJQLOJUNONQLSPONSNQPQRQPOPQROPOPORSVKNORQVOTMRMTMTMRMTkBbDWd@U\\\\SVQVORSRONSROLSNOLSNSJSLQJSJQHUJUJSH}NfGm@VuCjAiKlEYNy@\\\\{@\\\\]NSF[Ji@NMBc@J_@Fi@FMBM@K@Q@kBHqFPG?aBFiAFe@D]DWBm@J}AT}@P}Cp@qB\\\\A@A?E?WFWD\"},\"start_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":866},\"duration\":{\"text\":\"3 mins\",\"value\":157},\"end_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"html_instructions\":\"Take exit <b>12B</b> for <b>Interstate 495 W</b>/<b>Long Is Expwy</b> toward <b>Midtown Tun</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"agtwFnjtaMSDgAFG@E?U@M@OAM?QCSEa@QIGA?SMYU?AYY?Ac@[QESEQAS@A?KBIBA?GBSLSRKR?@ABITG^CT?Z@TBTBNDLN^FPfAnCLf@Zt@@D?@pCzGzBtFJVDNFJDHDD?@RR\"},\"start_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.4 mi\",\"value\":5456},\"duration\":{\"text\":\"4 mins\",\"value\":268},\"end_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"html_instructions\":\"Merge onto <b>I-495 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"citwF`kuaMx@zBx@xBt@nBpAdDDH?@BFJX@B@BJV@D@BJV@D\\\\|@|BdGJV?@BDj@xA~@tCh@fBb@|AfAhEPt@\\\\`BTlA?@PdARrADVJ~@VvBNpBJbAHx@RbBXdBPdAj@zCfAvFVhA?B@@@Ft@tDf@bCd@xBl@xCh@jCDNDRpB|Jb@bCBPFRF^fArEbAhEXnABJ@DHZ?@@BDP?@@DJ^?@H`@@?DRPt@?BFVRx@Px@r@lDZtA?@Nv@VnAl@tCdBvIb@rBn@~C^hBVlAPr@Pr@ZjAh@dB?@h@`Bp@|BRr@Pp@Nt@Lp@Lx@Ht@Hv@Ft@Dt@FlABn@?@@p@`@|KDv@Dv@Fv@Ht@Jv@Jv@Nv@Nr@Np@JZHVJ\\\\FVHRL\\\\P`@Rd@Vh@Vf@j@jAZp@b@x@Vf@Vf@Tf@Rb@Pf@Tp@Nb@Lb@J^F\\\\H^Lj@Hd@Hl@Fd@Dd@D`@Df@Dl@Bz@Bt@@x@?t@Ap@Aj@Cr@Cf@Cj@q@tOSjFSlEOzC[nH\"},\"start_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2375},\"duration\":{\"text\":\"5 mins\",\"value\":311},\"end_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"html_instructions\":\"Take exit <b>17W</b> toward <b>Brooklyn</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"eiqwFxaabMSrBCb@E`@CXEXE`@ETG\\\\E\\\\GXETGZIVGZIXIXIVGVKXIXKVIVKVKXKTITKTQ`@S`@g@bA]j@MTMTMVMVMVKVKVKVeA|BMXQ^KXEPIXMZKXMXIPKVKXKTIVKVIXIVIVI\\\\GXGZGREVEVGXETEXsAzIEXGZGZgAdG_BvIEVGZGXGVIZIZIXIXIVIXKVITIRENINGLGJEFGHEFGFe@VQJOLQLQNSLQNsBtAQNIFUPOLSRMRMRKTMXGRCJENE\\\\E`@AXA^?^?V@XDd@D\\\\DXFTFXHVJXJVJVLTLRLTLRNRNRPRLNNPPNPPPLPNPLPLRLRJTLTLRLRJb@L\"},\"start_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2534},\"duration\":{\"text\":\"4 mins\",\"value\":211},\"end_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"html_instructions\":\"Merge onto <b>I-278 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"unrwFxqebMVN`E|BhAn@|@h@x@f@FD\\\\Th@^\\\\V`Az@v@x@nApArA~AZ^V^VZTXPRPTb@n@JLPRVZLP?@LNBDRVZb@DFDHLPZj@Td@Tj@@BLZDHDNNZRp@Nh@VdAHd@DTDTF\\\\BNBNx@zEF^F`@BHr@hEj@lDRbAPf@JXJ\\\\v@`B`AxBx@hBhAfC`@z@f@|@lCdEbA`BvBlErArC|A~CzDvHrAdCzBfE\\\\n@\"},\"start_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":415},\"duration\":{\"text\":\"1 min\",\"value\":59},\"end_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"html_instructions\":\"Take exit <b>32B</b> toward <b>Metropolitan Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"suowFn~ibM?BAB@D?D@B?B@@Td@`@t@\\\\l@p@pAf@~@Vf@`@r@f@|@j@~@l@~@v@jA^h@HN?B@B@L\"},\"start_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":210},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"html_instructions\":\"Merge onto <b>Meeker Ave</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}fowF~ujbMl@z@hBxBlBzBPZ\"},\"start_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"499 ft\",\"value\":152},\"duration\":{\"text\":\"1 min\",\"value\":45},\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"e~nwFl`kbM?fDA|@?dA@p@?H\"},\"start_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]}],\"overview_polyline\":{\"points\":\"qzlwFpes`MeU[ErDG~AItDQ~FGbBBx@QrEKtBm@jNUWw@QwCm@q@JgPlE{Bb@uEr@[lOyA`QKh@q@dBgErJ{BxCoBhCo@dAiHlMiA|CoBbGqKp[mLh]_E~LyCdK[hAUy@s@_FuFxAmIzBYHd@tD\\\\hCvAdKpAlJ|A|Uv@jMr@bGvDbTzB~M`BdIvAtGh@Ot@WP[NYHWXw@X_@XSTGp@EDAPCfCd@pD|@p@T|Ar@xAz@fCdBdFrExB`B|D|AdDv@~BJ~BIlBQ`Es@bDgA~Ao@vCcA~Bi@vC[dIMn`@m@t\\\\o@t^i@`JQfEEbBI`Iu@rAE~FAbC@|ADvCh@tBx@dJ`FpK`HlA`A`DvCvHtHnLnKrB~Ax\\\\~StA|@PBtAx@|BbBfBbBbBjBd@x@lA`Df@|AXhB@`Au@fX?fAGdSBhc@_@pJCZoEby@_ApQYxKCdQRtNh@|ShBza@VtE\\\\~IDdBFbBGBA@C@ARC`Bu@tJGdBBdGFhZI`A_@~@}AzAaChB_BZ_JWyE?aG\\\\}BZgCr@MLgAR}JrDoWtJ{Dz@m@JaEh@[AYJcGdCuDtA}MxG`@dBjCvKuH|Cn@nD|AbIJ`@wAEiIMi@LaC|@eBv@yAaCcAyBo@wDe@uC@]Kw@?AUuAc@RYLGNEHIHsBfAuCtAcAz@sEvB}HfEkB`AmFfCyIxDwDtAmUjIkHdDwFnC}BpAUHmA`@iAp@kB~@yDjCqBzBsFlHaAbAqCvBoAhAkBlAmDdCiCjByAr@qA^wAPwAFwACgG]uAAyAHuATsA`@}HvDoAl@gAx@oChCcC~CyEhIkA`BgAdAkAx@kAn@ed@jRgDrAwBj@eBT{J^yETaEj@wIbBkCZq@DcAKaAg@s@s@u@a@e@GU@WF[P_@f@Sz@Cp@Dj@X|@xB~FnGxO^|@DFRRx@zBnBhFvAnDPf@^bAfD|IxC|IzC~Lz@hFx@`IbAfIvEfVfIha@~EbTvF~WxEtUvA`GdCfIbAlEh@|EPtDh@fOb@|Ez@tEh@hB|@xBvBnEhBpDjA`Dj@`Ch@dDV|CH`FKxD}Az^k@jMWvCUvB{@pEqAfEgCzF{BnEqBnEi@`B}A|DeAhEcCnOyEzVmAvD_@p@{@p@qFzDcAz@u@vAWlAIzBLtB^`Bp@~Ax@pA~@hAfA~@~CjBz@\\\\jGlD|ClBfAv@xBtBbDpDr@~@pA~AxAlBzAvBtAnCZx@jA|DTpApCnP~@pF\\\\`A~DbJjBbEtDbGzDnHpDrHhLtT?RrDdHlCxEnCdE@F@Ll@z@vEtFPZ?fDAbC@z@\"},\"summary\":\"Tulip Ave\",\"warnings\":[],\"waypoint_order\":[1,0]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"603e8f11-bf8a-4a09-9a21-84586381ae33"},{"name":"Search Flagged Locations","id":"5ad0d3a9-57c3-4d14-92ac-78c918c903b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"type","value":"black","description":"<p>can be string or array of strings. black, white, gray</p>\n","type":"text"},{"key":"type","value":"gray","type":"text"}]},"url":"{{host}}/location/flagged/search","urlObject":{"path":["location","flagged","search"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"25284634-44ef-47a3-8617-23808cb4e271","name":"Multiple Stops","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?origin=169 grange street, franklin square ny&destination=390 metropolitan ave, brooklyn ny&waypoints=optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"origin","value":"169 grange street, franklin square ny"},{"key":"destination","value":"390 metropolitan ave, brooklyn ny"},{"key":"waypoints","value":"optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"19792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 14 Jul 2017 20:33:00 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"4d50-lJsgQV89afgR1l+sPqnzbzwraJ4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500064380997144","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ATVpbf1cRC0QEosrtcIsVEPOn4Cja5a3X.L7WpJEMLRaqsmCtLI3k0w39S6p6hlSsHTZgI1bo8sco","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"geocoded_waypoints\":[{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJA8i4uyVjwokRJ9S5kKEVU44\",\"types\":[\"premise\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJcbQT1ltiwokRdt6BWSHC_G0\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJsdUw6zRnwokRA2KesL5h97s\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJmdrtHl9ZwokR1sv9Yomflyw\",\"types\":[\"premise\"]}],\"routes\":[{\"bounds\":{\"northeast\":{\"lat\":40.7438783,\"lng\":-73.66746549999999},\"southwest\":{\"lat\":40.6655454,\"lng\":-73.95531129999999}},\"copyrights\":\"Map data ©2017 Google\",\"legs\":[{\"distance\":{\"text\":\"3.2 mi\",\"value\":5174},\"duration\":{\"text\":\"14 mins\",\"value\":815},\"end_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"start_address\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"steps\":[{\"distance\":{\"text\":\"0.2 mi\",\"value\":395},\"duration\":{\"text\":\"1 min\",\"value\":64},\"end_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"html_instructions\":\"Head <b>north</b> on <b>Grange St</b> toward <b>Benris Ave</b>\",\"polyline\":{\"points\":\"qzlwFpes`MuGKoLO\"},\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":719},\"duration\":{\"text\":\"3 mins\",\"value\":150},\"end_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"html_instructions\":\"Turn <b>left</b> onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wpmwFtds`MA~ACrAAhAETErAC`BEvAEzAEhA?@?JGvADPAf@Al@GlAA\\\\Ex@C^E|@?JAJCl@Cj@E`AAXE`AEt@I|AG~A\"},\"start_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"440 ft\",\"value\":134},\"duration\":{\"text\":\"1 min\",\"value\":29},\"end_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"html_instructions\":\"Turn <b>right</b> onto <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"qtmwFryt`MUWw@Q_ASwAY\"},\"start_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":539},\"duration\":{\"text\":\"1 min\",\"value\":62},\"end_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"html_instructions\":\"Slight <b>left</b> to stay on <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-slight-left\",\"polyline\":{\"points\":\"w{mwFzvt`MMBI@I@OBoCr@oCt@kCt@SF{@VC?UFQD_@Ja@Hi@JO@M?cAPs@JoAT\"},\"start_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.7 mi\",\"value\":2770},\"duration\":{\"text\":\"6 mins\",\"value\":351},\"end_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"html_instructions\":\"Turn <b>left</b> onto <b>Tulip Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cynwFl`u`M?N?PA^KzEEpBA|@Ab@CZATE^Ej@[pDMrA[jDAXCRAJCJAHCFADCFELe@hAk@tAWl@Uf@aAzBITQZIPEFEFCDCDKLOPW^UXc@j@}@jASVQVKLILQXINILYj@aAbBk@fAyAhC]p@OTOVIJGNQd@Sh@[|@GJ]pAm@hB[z@ENoAtDyAfEKZg@xAeA|Cw@|Bo@pBO`@eAzCcAzCcAzCIT{@dCcAzCeAzCcA|CKZw@zBw@hC{@vCaA`DGTSt@[hA\"},\"start_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"413 ft\",\"value\":126},\"duration\":{\"text\":\"1 min\",\"value\":26},\"end_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"html_instructions\":\"Turn <b>right</b> onto <b>Tyson Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"ubqwFfqz`MUy@E]m@aE\"},\"start_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":335},\"duration\":{\"text\":\"2 mins\",\"value\":91},\"end_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"html_instructions\":\"Turn <b>left</b> onto <b>S Tyson Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"_eqwFlhz`Mm@NiCt@WHe@HaAXeCn@{@TiAZ\"},\"start_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":156},\"duration\":{\"text\":\"1 min\",\"value\":42},\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"html_instructions\":\"Turn <b>left</b> onto <b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cwqwFboz`MYHd@tDTbBFd@\"},\"start_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"10.6 mi\",\"value\":17066},\"duration\":{\"text\":\"20 mins\",\"value\":1176},\"end_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"start_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"1.0 mi\",\"value\":1620},\"duration\":{\"text\":\"4 mins\",\"value\":219},\"end_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"html_instructions\":\"Head <b>west</b> on <b>Jericho Turnpike</b> toward <b>Brokaw Ave</b>\",\"polyline\":{\"points\":\"yuqwFlyz`MHj@Nz@TnBf@lDTxAHn@Hl@f@tD?XT~CNlBHzADd@BZPhCPlCTrDDl@PdCHbBFz@D\\\\Hr@ZtB\\\\rBDTlArGb@`CJn@F\\\\FXDZFZ^zBLt@ZhB?@DPLl@TdBZnBPt@XnAXnA\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"420 ft\",\"value\":128},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"html_instructions\":\"Continue onto <b>Jamaica Ave</b>\",\"polyline\":{\"points\":\"o}pwFxl~`MHb@VnAPv@b@hB\"},\"start_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"184 ft\",\"value\":56},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"html_instructions\":\"Turn <b>left</b> onto <b>241st St</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wzpwFnu~`MRGTGt@W\"},\"start_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.4 mi\",\"value\":3886},\"duration\":{\"text\":\"3 mins\",\"value\":173},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Slight <b>left</b> to merge onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"wwpwFft~`MP[FKFMBKDKDODMDMFKFKDGDEDEDEFEDCDCFCLCPC^A@?BAPCfCd@hB`@fAZXJVHTJh@TTLFBFDHDXLl@`@p@b@@@j@^f@^l@h@`@^pAhAbA~@r@l@d@\\\\RLJF\\\\PdAb@l@Tj@Ph@NTFz@Th@HT@TB|@DT?z@AbAGz@Gp@It@K`@Gh@K~@SpA_@HEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":519},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"html_instructions\":\"Take the <b>Brooklyn</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"aejwF`w~`Mb@?VAZATAXCdAIzC]tAKHAfAEJ?vACfD@jABD?FAh@?\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2090},\"duration\":{\"text\":\"1 min\",\"value\":86},\"end_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"html_instructions\":\"Continue onto <b>Belt Pkwy</b>/<b>Laurelton Pkwy</b>\",\"polyline\":{\"points\":\"_hiwFzt~`Mf@At@F`BVt@Pp@TbAb@vBhAlFvCrEtC|DjCb@Zh@d@PP@@xBlBRT|A|Az@|@~AdB|@r@fGzFvAjAf@d@f@`@jBvA@??@DDdAp@^Vj@\\\\fXvPtA|@\"},\"start_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4588},\"duration\":{\"text\":\"4 mins\",\"value\":213},\"end_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_bfwFf_aaMPBdAn@NH~@n@|@r@~@z@f@f@RPTTp@z@FFFJHNFJJPJTj@|ALXFRL\\\\BFDJNj@Nt@Hr@@^?`@Av@UxHYdKCn@?P?P?P?P?NGvG?rG?hA?fL@nF@zB?tJEbBErAIjBIlA?@CXCd@KhBKtBGt@_Crb@SzDOpCGdAWxEWvEIjAErAEr@E~ACxAIjDCpCApA?z@@dH@jABnAL|H?ZAPRlHJxC?R@T@LB~@BjAP~FR|Cd@zK\\\\`HLdCHnARdEHxC@d@B~@FbB\"},\"start_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":802},\"duration\":{\"text\":\"1 min\",\"value\":47},\"end_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"html_instructions\":\"Take exit <b>19</b> toward <b>Van Wyck Expy</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"usewFrekaMGBA??@A?A@?@?BAB?H?N?TA`@AXAXGr@Gx@Ir@Ej@I`AEd@Cd@APCZ?NAf@?DCLBlBBbC?h@@vGBlH?\\\\?N@`A?rA?t@ANAPCPALELENGPKN\"},\"start_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":522},\"duration\":{\"text\":\"1 min\",\"value\":30},\"end_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Interstate 678 N</b>/<b>Van Wyck Expwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"ewewF~_maMSRGHMLs@n@e@`@m@f@YRSJUHWFa@FO@uAGiBGsACkACm@Ao@?eA?u@@\"},\"start_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":1034},\"duration\":{\"text\":\"1 min\",\"value\":58},\"end_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>I-678 N</b>/<b>Van Wyck Expy</b>/<b>Bronx</b> and merge onto <b>I-678 N</b>/<b>Van Wyck Expy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_sfwFhfmaM}CP{@DW@OB[B[Ba@Hc@Hc@Jq@Nk@REBEBGHa@Fe@Jq@Ts@TcA^sEfBkE`BWHu@V?@g@PeC~@cBl@cFnB\"},\"start_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":259},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"html_instructions\":\"Take exit <b>3</b> toward <b>Linden Blvd</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"kjhwFb|maMY@gCp@SDE@KBOBIBG?m@H{ARe@FIBA?A?A@AA[A\"},\"start_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":569},\"duration\":{\"text\":\"1 min\",\"value\":76},\"end_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"html_instructions\":\"Merge onto <b>Van Wyck Expy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"sxhwFr_naMYJ}Al@eDvAYH{CjAqDlBkHjD\"},\"start_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":236},\"duration\":{\"text\":\"1 min\",\"value\":67},\"end_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"html_instructions\":\"Turn <b>left</b> onto <b>109th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"eviwFtonaMRv@@DBNFV@@Pt@|@rDx@jD\"},\"start_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":185},\"duration\":{\"text\":\"1 min\",\"value\":31},\"end_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"html_instructions\":\"Turn <b>right</b> at the 3rd cross street onto <b>134th St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"wpiwFr_oaMuH|C\"},\"start_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":241},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"html_instructions\":\"Turn <b>left</b> at the 1st cross street onto <b>107th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"mziwFpdoaMn@nDl@~Cn@bDJ`@\"},\"start_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":240},\"duration\":{\"text\":\"1 min\",\"value\":40},\"end_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Van Siclen St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"suiwFfuoaMwAEm@A{GKC?C?E?\"},\"start_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"299 ft\",\"value\":91},\"duration\":{\"text\":\"1 min\",\"value\":21},\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"html_instructions\":\"<b>Van Siclen St</b> turns slightly <b>left</b> and becomes <b>132nd St</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"polyline\":{\"points\":\"ccjwFrtoaM[L}@\\\\e@PYL\"},\"start_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"11.5 mi\",\"value\":18481},\"duration\":{\"text\":\"28 mins\",\"value\":1659},\"end_address\":\"390 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"start_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"steps\":[{\"distance\":{\"text\":\"210 ft\",\"value\":64},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"html_instructions\":\"Head <b>north</b> on <b>132nd St</b> toward <b>Liberty Ave</b>\",\"polyline\":{\"points\":\"}gjwF~voaMC?eBv@\"},\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":363},\"duration\":{\"text\":\"2 mins\",\"value\":143},\"end_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"html_instructions\":\"Turn <b>right</b> onto <b>Liberty Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"gkjwFvxoaMyAaCs@oAOi@GSg@cDe@uC@]Ku@?A?ACOEUKo@\"},\"start_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"121 ft\",\"value\":37},\"duration\":{\"text\":\"1 min\",\"value\":12},\"end_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"html_instructions\":\"Turn <b>left</b> onto <b>Van Wyck Expy</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"{sjwF~`oaMUJMFYL\"},\"start_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":219},\"duration\":{\"text\":\"1 min\",\"value\":25},\"end_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"html_instructions\":\"Slight <b>left</b> onto the <b>Route 678</b> ramp\",\"polyline\":{\"points\":\"yujwF`boaMGN?BEDEDCBGDIFOHqAn@A?aCjAIBGDKHIHEBA@UV\"},\"start_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.6 mi\",\"value\":5790},\"duration\":{\"text\":\"6 mins\",\"value\":348},\"end_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"html_instructions\":\"Merge onto <b>I-678 N</b> (signs for <b>Route 678</b>)\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"o`kwFtioaMEBIDc@PoAn@m@Zq@X}@b@eB|@yBnA_@Tq@Za@TSLC@u@^i@XaAd@kAf@YLaBv@gChAuAh@QDk@RaA\\\\w@\\\\_GtBKDiDlAu@ZwAd@G@w@XiAb@mBx@qCnAk@ZGBkCpAEB}At@MHo@^y@`@EDIDKBmA`@iAp@uAp@ULuA|@cBlAq@p@ONOR_@d@}DnFORONUXQRONQPMLONSPQLCBKHMJm@`@OJKL[T]\\\\IFIFMJOHcAn@QJQJSLSNUPSNa@ZUPoA`AQLSLSLSLWLQH[LWHQFUFQDUDUDU@UBUBU@U?U@U?WAS?UAYCUAiBOSAWASAU?WAU?U?UAS?W@W@Q@WBUBUDSDUDUFQFUFUHEBMFSHSJwBhAoAj@e@TSHSJUHSJQJQLOJUNONQLSPONSNQPQRQPOPQROPOPORSVKNORQVOTMRMTMTMRMTkBbDWd@U\\\\SVQVORSRONSROLSNOLSNSJSLQJSJQHUJUJSH}NfGm@VuCjAiKlEYNy@\\\\{@\\\\]NSF[Ji@NMBc@J_@Fi@FMBM@K@Q@kBHqFPG?aBFiAFe@D]DWBm@J}AT}@P}Cp@qB\\\\A@A?E?WFWD\"},\"start_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":866},\"duration\":{\"text\":\"3 mins\",\"value\":157},\"end_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"html_instructions\":\"Take exit <b>12B</b> for <b>Interstate 495 W</b>/<b>Long Is Expwy</b> toward <b>Midtown Tun</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"agtwFnjtaMSDgAFG@E?U@M@OAM?QCSEa@QIGA?SMYU?AYY?Ac@[QESEQAS@A?KBIBA?GBSLSRKR?@ABITG^CT?Z@TBTBNDLN^FPfAnCLf@Zt@@D?@pCzGzBtFJVDNFJDHDD?@RR\"},\"start_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.4 mi\",\"value\":5456},\"duration\":{\"text\":\"4 mins\",\"value\":268},\"end_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"html_instructions\":\"Merge onto <b>I-495 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"citwF`kuaMx@zBx@xBt@nBpAdDDH?@BFJX@B@BJV@D@BJV@D\\\\|@|BdGJV?@BDj@xA~@tCh@fBb@|AfAhEPt@\\\\`BTlA?@PdARrADVJ~@VvBNpBJbAHx@RbBXdBPdAj@zCfAvFVhA?B@@@Ft@tDf@bCd@xBl@xCh@jCDNDRpB|Jb@bCBPFRF^fArEbAhEXnABJ@DHZ?@@BDP?@@DJ^?@H`@@?DRPt@?BFVRx@Px@r@lDZtA?@Nv@VnAl@tCdBvIb@rBn@~C^hBVlAPr@Pr@ZjAh@dB?@h@`Bp@|BRr@Pp@Nt@Lp@Lx@Ht@Hv@Ft@Dt@FlABn@?@@p@`@|KDv@Dv@Fv@Ht@Jv@Jv@Nv@Nr@Np@JZHVJ\\\\FVHRL\\\\P`@Rd@Vh@Vf@j@jAZp@b@x@Vf@Vf@Tf@Rb@Pf@Tp@Nb@Lb@J^F\\\\H^Lj@Hd@Hl@Fd@Dd@D`@Df@Dl@Bz@Bt@@x@?t@Ap@Aj@Cr@Cf@Cj@q@tOSjFSlEOzC[nH\"},\"start_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2375},\"duration\":{\"text\":\"5 mins\",\"value\":311},\"end_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"html_instructions\":\"Take exit <b>17W</b> toward <b>Brooklyn</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"eiqwFxaabMSrBCb@E`@CXEXE`@ETG\\\\E\\\\GXETGZIVGZIXIXIVGVKXIXKVIVKVKXKTITKTQ`@S`@g@bA]j@MTMTMVMVMVKVKVKVeA|BMXQ^KXEPIXMZKXMXIPKVKXKTIVKVIXIVIVI\\\\GXGZGREVEVGXETEXsAzIEXGZGZgAdG_BvIEVGZGXGVIZIZIXIXIVIXKVITIRENINGLGJEFGHEFGFe@VQJOLQLQNSLQNsBtAQNIFUPOLSRMRMRKTMXGRCJENE\\\\E`@AXA^?^?V@XDd@D\\\\DXFTFXHVJXJVJVLTLRLTLRNRNRPRLNNPPNPPPLPNPLPLRLRJTLTLRLRJb@L\"},\"start_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2534},\"duration\":{\"text\":\"4 mins\",\"value\":211},\"end_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"html_instructions\":\"Merge onto <b>I-278 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"unrwFxqebMVN`E|BhAn@|@h@x@f@FD\\\\Th@^\\\\V`Az@v@x@nApArA~AZ^V^VZTXPRPTb@n@JLPRVZLP?@LNBDRVZb@DFDHLPZj@Td@Tj@@BLZDHDNNZRp@Nh@VdAHd@DTDTF\\\\BNBNx@zEF^F`@BHr@hEj@lDRbAPf@JXJ\\\\v@`B`AxBx@hBhAfC`@z@f@|@lCdEbA`BvBlErArC|A~CzDvHrAdCzBfE\\\\n@\"},\"start_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":415},\"duration\":{\"text\":\"1 min\",\"value\":59},\"end_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"html_instructions\":\"Take exit <b>32B</b> toward <b>Metropolitan Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"suowFn~ibM?BAB@D?D@B?B@@Td@`@t@\\\\l@p@pAf@~@Vf@`@r@f@|@j@~@l@~@v@jA^h@HN?B@B@L\"},\"start_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":210},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"html_instructions\":\"Merge onto <b>Meeker Ave</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}fowF~ujbMl@z@hBxBlBzBPZ\"},\"start_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"499 ft\",\"value\":152},\"duration\":{\"text\":\"1 min\",\"value\":45},\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"e~nwFl`kbM?fDA|@?dA@p@?H\"},\"start_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]}],\"overview_polyline\":{\"points\":\"qzlwFpes`MeU[ErDG~AItDQ~FGbBBx@QrEKtBm@jNUWw@QwCm@q@JgPlE{Bb@uEr@[lOyA`QKh@q@dBgErJ{BxCoBhCo@dAiHlMiA|CoBbGqKp[mLh]_E~LyCdK[hAUy@s@_FuFxAmIzBYHd@tD\\\\hCvAdKpAlJ|A|Uv@jMr@bGvDbTzB~M`BdIvAtGh@Ot@WP[NYHWXw@X_@XSTGp@EDAPCfCd@pD|@p@T|Ar@xAz@fCdBdFrExB`B|D|AdDv@~BJ~BIlBQ`Es@bDgA~Ao@vCcA~Bi@vC[dIMn`@m@t\\\\o@t^i@`JQfEEbBI`Iu@rAE~FAbC@|ADvCh@tBx@dJ`FpK`HlA`A`DvCvHtHnLnKrB~Ax\\\\~StA|@PBtAx@|BbBfBbBbBjBd@x@lA`Df@|AXhB@`Au@fX?fAGdSBhc@_@pJCZoEby@_ApQYxKCdQRtNh@|ShBza@VtE\\\\~IDdBFbBGBA@C@ARC`Bu@tJGdBBdGFhZI`A_@~@}AzAaChB_BZ_JWyE?aG\\\\}BZgCr@MLgAR}JrDoWtJ{Dz@m@JaEh@[AYJcGdCuDtA}MxG`@dBjCvKuH|Cn@nD|AbIJ`@wAEiIMi@LaC|@eBv@yAaCcAyBo@wDe@uC@]Kw@?AUuAc@RYLGNEHIHsBfAuCtAcAz@sEvB}HfEkB`AmFfCyIxDwDtAmUjIkHdDwFnC}BpAUHmA`@iAp@kB~@yDjCqBzBsFlHaAbAqCvBoAhAkBlAmDdCiCjByAr@qA^wAPwAFwACgG]uAAyAHuATsA`@}HvDoAl@gAx@oChCcC~CyEhIkA`BgAdAkAx@kAn@ed@jRgDrAwBj@eBT{J^yETaEj@wIbBkCZq@DcAKaAg@s@s@u@a@e@GU@WF[P_@f@Sz@Cp@Dj@X|@xB~FnGxO^|@DFRRx@zBnBhFvAnDPf@^bAfD|IxC|IzC~Lz@hFx@`IbAfIvEfVfIha@~EbTvF~WxEtUvA`GdCfIbAlEh@|EPtDh@fOb@|Ez@tEh@hB|@xBvBnEhBpDjA`Dj@`Ch@dDV|CH`FKxD}Az^k@jMWvCUvB{@pEqAfEgCzF{BnEqBnEi@`B}A|DeAhEcCnOyEzVmAvD_@p@{@p@qFzDcAz@u@vAWlAIzBLtB^`Bp@~Ax@pA~@hAfA~@~CjBz@\\\\jGlD|ClBfAv@xBtBbDpDr@~@pA~AxAlBzAvBtAnCZx@jA|DTpApCnP~@pF\\\\`A~DbJjBbEtDbGzDnHpDrHhLtT?RrDdHlCxEnCdE@F@Ll@z@vEtFPZ?fDAbC@z@\"},\"summary\":\"Tulip Ave\",\"warnings\":[],\"waypoint_order\":[1,0]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"5ad0d3a9-57c3-4d14-92ac-78c918c903b3"},{"name":"Match Flagged Locations","id":"4cca4754-d45e-494e-845d-12652a9f3c53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"type","value":"black","description":"<p>can be string or array of strings. black, white, gray</p>\n","type":"text"},{"key":"type","value":"gray","type":"text"}]},"url":"{{host}}/location/flagged/search","urlObject":{"path":["location","flagged","search"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d95a5ba4-6c8b-496e-9304-563bfca38f85","name":"Multiple Stops","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?origin=169 grange street, franklin square ny&destination=390 metropolitan ave, brooklyn ny&waypoints=optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"origin","value":"169 grange street, franklin square ny"},{"key":"destination","value":"390 metropolitan ave, brooklyn ny"},{"key":"waypoints","value":"optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"19792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 14 Jul 2017 20:33:00 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"4d50-lJsgQV89afgR1l+sPqnzbzwraJ4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500064380997144","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ATVpbf1cRC0QEosrtcIsVEPOn4Cja5a3X.L7WpJEMLRaqsmCtLI3k0w39S6p6hlSsHTZgI1bo8sco","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"geocoded_waypoints\":[{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJA8i4uyVjwokRJ9S5kKEVU44\",\"types\":[\"premise\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJcbQT1ltiwokRdt6BWSHC_G0\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJsdUw6zRnwokRA2KesL5h97s\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJmdrtHl9ZwokR1sv9Yomflyw\",\"types\":[\"premise\"]}],\"routes\":[{\"bounds\":{\"northeast\":{\"lat\":40.7438783,\"lng\":-73.66746549999999},\"southwest\":{\"lat\":40.6655454,\"lng\":-73.95531129999999}},\"copyrights\":\"Map data ©2017 Google\",\"legs\":[{\"distance\":{\"text\":\"3.2 mi\",\"value\":5174},\"duration\":{\"text\":\"14 mins\",\"value\":815},\"end_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"start_address\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"steps\":[{\"distance\":{\"text\":\"0.2 mi\",\"value\":395},\"duration\":{\"text\":\"1 min\",\"value\":64},\"end_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"html_instructions\":\"Head <b>north</b> on <b>Grange St</b> toward <b>Benris Ave</b>\",\"polyline\":{\"points\":\"qzlwFpes`MuGKoLO\"},\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":719},\"duration\":{\"text\":\"3 mins\",\"value\":150},\"end_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"html_instructions\":\"Turn <b>left</b> onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wpmwFtds`MA~ACrAAhAETErAC`BEvAEzAEhA?@?JGvADPAf@Al@GlAA\\\\Ex@C^E|@?JAJCl@Cj@E`AAXE`AEt@I|AG~A\"},\"start_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"440 ft\",\"value\":134},\"duration\":{\"text\":\"1 min\",\"value\":29},\"end_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"html_instructions\":\"Turn <b>right</b> onto <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"qtmwFryt`MUWw@Q_ASwAY\"},\"start_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":539},\"duration\":{\"text\":\"1 min\",\"value\":62},\"end_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"html_instructions\":\"Slight <b>left</b> to stay on <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-slight-left\",\"polyline\":{\"points\":\"w{mwFzvt`MMBI@I@OBoCr@oCt@kCt@SF{@VC?UFQD_@Ja@Hi@JO@M?cAPs@JoAT\"},\"start_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.7 mi\",\"value\":2770},\"duration\":{\"text\":\"6 mins\",\"value\":351},\"end_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"html_instructions\":\"Turn <b>left</b> onto <b>Tulip Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cynwFl`u`M?N?PA^KzEEpBA|@Ab@CZATE^Ej@[pDMrA[jDAXCRAJCJAHCFADCFELe@hAk@tAWl@Uf@aAzBITQZIPEFEFCDCDKLOPW^UXc@j@}@jASVQVKLILQXINILYj@aAbBk@fAyAhC]p@OTOVIJGNQd@Sh@[|@GJ]pAm@hB[z@ENoAtDyAfEKZg@xAeA|Cw@|Bo@pBO`@eAzCcAzCcAzCIT{@dCcAzCeAzCcA|CKZw@zBw@hC{@vCaA`DGTSt@[hA\"},\"start_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"413 ft\",\"value\":126},\"duration\":{\"text\":\"1 min\",\"value\":26},\"end_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"html_instructions\":\"Turn <b>right</b> onto <b>Tyson Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"ubqwFfqz`MUy@E]m@aE\"},\"start_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":335},\"duration\":{\"text\":\"2 mins\",\"value\":91},\"end_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"html_instructions\":\"Turn <b>left</b> onto <b>S Tyson Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"_eqwFlhz`Mm@NiCt@WHe@HaAXeCn@{@TiAZ\"},\"start_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":156},\"duration\":{\"text\":\"1 min\",\"value\":42},\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"html_instructions\":\"Turn <b>left</b> onto <b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cwqwFboz`MYHd@tDTbBFd@\"},\"start_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"10.6 mi\",\"value\":17066},\"duration\":{\"text\":\"20 mins\",\"value\":1176},\"end_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"start_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"1.0 mi\",\"value\":1620},\"duration\":{\"text\":\"4 mins\",\"value\":219},\"end_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"html_instructions\":\"Head <b>west</b> on <b>Jericho Turnpike</b> toward <b>Brokaw Ave</b>\",\"polyline\":{\"points\":\"yuqwFlyz`MHj@Nz@TnBf@lDTxAHn@Hl@f@tD?XT~CNlBHzADd@BZPhCPlCTrDDl@PdCHbBFz@D\\\\Hr@ZtB\\\\rBDTlArGb@`CJn@F\\\\FXDZFZ^zBLt@ZhB?@DPLl@TdBZnBPt@XnAXnA\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"420 ft\",\"value\":128},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"html_instructions\":\"Continue onto <b>Jamaica Ave</b>\",\"polyline\":{\"points\":\"o}pwFxl~`MHb@VnAPv@b@hB\"},\"start_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"184 ft\",\"value\":56},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"html_instructions\":\"Turn <b>left</b> onto <b>241st St</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wzpwFnu~`MRGTGt@W\"},\"start_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.4 mi\",\"value\":3886},\"duration\":{\"text\":\"3 mins\",\"value\":173},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Slight <b>left</b> to merge onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"wwpwFft~`MP[FKFMBKDKDODMDMFKFKDGDEDEDEFEDCDCFCLCPC^A@?BAPCfCd@hB`@fAZXJVHTJh@TTLFBFDHDXLl@`@p@b@@@j@^f@^l@h@`@^pAhAbA~@r@l@d@\\\\RLJF\\\\PdAb@l@Tj@Ph@NTFz@Th@HT@TB|@DT?z@AbAGz@Gp@It@K`@Gh@K~@SpA_@HEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":519},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"html_instructions\":\"Take the <b>Brooklyn</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"aejwF`w~`Mb@?VAZATAXCdAIzC]tAKHAfAEJ?vACfD@jABD?FAh@?\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2090},\"duration\":{\"text\":\"1 min\",\"value\":86},\"end_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"html_instructions\":\"Continue onto <b>Belt Pkwy</b>/<b>Laurelton Pkwy</b>\",\"polyline\":{\"points\":\"_hiwFzt~`Mf@At@F`BVt@Pp@TbAb@vBhAlFvCrEtC|DjCb@Zh@d@PP@@xBlBRT|A|Az@|@~AdB|@r@fGzFvAjAf@d@f@`@jBvA@??@DDdAp@^Vj@\\\\fXvPtA|@\"},\"start_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4588},\"duration\":{\"text\":\"4 mins\",\"value\":213},\"end_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_bfwFf_aaMPBdAn@NH~@n@|@r@~@z@f@f@RPTTp@z@FFFJHNFJJPJTj@|ALXFRL\\\\BFDJNj@Nt@Hr@@^?`@Av@UxHYdKCn@?P?P?P?P?NGvG?rG?hA?fL@nF@zB?tJEbBErAIjBIlA?@CXCd@KhBKtBGt@_Crb@SzDOpCGdAWxEWvEIjAErAEr@E~ACxAIjDCpCApA?z@@dH@jABnAL|H?ZAPRlHJxC?R@T@LB~@BjAP~FR|Cd@zK\\\\`HLdCHnARdEHxC@d@B~@FbB\"},\"start_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":802},\"duration\":{\"text\":\"1 min\",\"value\":47},\"end_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"html_instructions\":\"Take exit <b>19</b> toward <b>Van Wyck Expy</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"usewFrekaMGBA??@A?A@?@?BAB?H?N?TA`@AXAXGr@Gx@Ir@Ej@I`AEd@Cd@APCZ?NAf@?DCLBlBBbC?h@@vGBlH?\\\\?N@`A?rA?t@ANAPCPALELENGPKN\"},\"start_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":522},\"duration\":{\"text\":\"1 min\",\"value\":30},\"end_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Interstate 678 N</b>/<b>Van Wyck Expwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"ewewF~_maMSRGHMLs@n@e@`@m@f@YRSJUHWFa@FO@uAGiBGsACkACm@Ao@?eA?u@@\"},\"start_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":1034},\"duration\":{\"text\":\"1 min\",\"value\":58},\"end_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>I-678 N</b>/<b>Van Wyck Expy</b>/<b>Bronx</b> and merge onto <b>I-678 N</b>/<b>Van Wyck Expy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_sfwFhfmaM}CP{@DW@OB[B[Ba@Hc@Hc@Jq@Nk@REBEBGHa@Fe@Jq@Ts@TcA^sEfBkE`BWHu@V?@g@PeC~@cBl@cFnB\"},\"start_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":259},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"html_instructions\":\"Take exit <b>3</b> toward <b>Linden Blvd</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"kjhwFb|maMY@gCp@SDE@KBOBIBG?m@H{ARe@FIBA?A?A@AA[A\"},\"start_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":569},\"duration\":{\"text\":\"1 min\",\"value\":76},\"end_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"html_instructions\":\"Merge onto <b>Van Wyck Expy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"sxhwFr_naMYJ}Al@eDvAYH{CjAqDlBkHjD\"},\"start_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":236},\"duration\":{\"text\":\"1 min\",\"value\":67},\"end_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"html_instructions\":\"Turn <b>left</b> onto <b>109th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"eviwFtonaMRv@@DBNFV@@Pt@|@rDx@jD\"},\"start_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":185},\"duration\":{\"text\":\"1 min\",\"value\":31},\"end_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"html_instructions\":\"Turn <b>right</b> at the 3rd cross street onto <b>134th St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"wpiwFr_oaMuH|C\"},\"start_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":241},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"html_instructions\":\"Turn <b>left</b> at the 1st cross street onto <b>107th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"mziwFpdoaMn@nDl@~Cn@bDJ`@\"},\"start_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":240},\"duration\":{\"text\":\"1 min\",\"value\":40},\"end_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Van Siclen St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"suiwFfuoaMwAEm@A{GKC?C?E?\"},\"start_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"299 ft\",\"value\":91},\"duration\":{\"text\":\"1 min\",\"value\":21},\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"html_instructions\":\"<b>Van Siclen St</b> turns slightly <b>left</b> and becomes <b>132nd St</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"polyline\":{\"points\":\"ccjwFrtoaM[L}@\\\\e@PYL\"},\"start_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"11.5 mi\",\"value\":18481},\"duration\":{\"text\":\"28 mins\",\"value\":1659},\"end_address\":\"390 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"start_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"steps\":[{\"distance\":{\"text\":\"210 ft\",\"value\":64},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"html_instructions\":\"Head <b>north</b> on <b>132nd St</b> toward <b>Liberty Ave</b>\",\"polyline\":{\"points\":\"}gjwF~voaMC?eBv@\"},\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":363},\"duration\":{\"text\":\"2 mins\",\"value\":143},\"end_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"html_instructions\":\"Turn <b>right</b> onto <b>Liberty Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"gkjwFvxoaMyAaCs@oAOi@GSg@cDe@uC@]Ku@?A?ACOEUKo@\"},\"start_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"121 ft\",\"value\":37},\"duration\":{\"text\":\"1 min\",\"value\":12},\"end_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"html_instructions\":\"Turn <b>left</b> onto <b>Van Wyck Expy</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"{sjwF~`oaMUJMFYL\"},\"start_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":219},\"duration\":{\"text\":\"1 min\",\"value\":25},\"end_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"html_instructions\":\"Slight <b>left</b> onto the <b>Route 678</b> ramp\",\"polyline\":{\"points\":\"yujwF`boaMGN?BEDEDCBGDIFOHqAn@A?aCjAIBGDKHIHEBA@UV\"},\"start_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.6 mi\",\"value\":5790},\"duration\":{\"text\":\"6 mins\",\"value\":348},\"end_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"html_instructions\":\"Merge onto <b>I-678 N</b> (signs for <b>Route 678</b>)\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"o`kwFtioaMEBIDc@PoAn@m@Zq@X}@b@eB|@yBnA_@Tq@Za@TSLC@u@^i@XaAd@kAf@YLaBv@gChAuAh@QDk@RaA\\\\w@\\\\_GtBKDiDlAu@ZwAd@G@w@XiAb@mBx@qCnAk@ZGBkCpAEB}At@MHo@^y@`@EDIDKBmA`@iAp@uAp@ULuA|@cBlAq@p@ONOR_@d@}DnFORONUXQRONQPMLONSPQLCBKHMJm@`@OJKL[T]\\\\IFIFMJOHcAn@QJQJSLSNUPSNa@ZUPoA`AQLSLSLSLWLQH[LWHQFUFQDUDUDU@UBUBU@U?U@U?WAS?UAYCUAiBOSAWASAU?WAU?U?UAS?W@W@Q@WBUBUDSDUDUFQFUFUHEBMFSHSJwBhAoAj@e@TSHSJUHSJQJQLOJUNONQLSPONSNQPQRQPOPQROPOPORSVKNORQVOTMRMTMTMRMTkBbDWd@U\\\\SVQVORSRONSROLSNOLSNSJSLQJSJQHUJUJSH}NfGm@VuCjAiKlEYNy@\\\\{@\\\\]NSF[Ji@NMBc@J_@Fi@FMBM@K@Q@kBHqFPG?aBFiAFe@D]DWBm@J}AT}@P}Cp@qB\\\\A@A?E?WFWD\"},\"start_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":866},\"duration\":{\"text\":\"3 mins\",\"value\":157},\"end_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"html_instructions\":\"Take exit <b>12B</b> for <b>Interstate 495 W</b>/<b>Long Is Expwy</b> toward <b>Midtown Tun</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"agtwFnjtaMSDgAFG@E?U@M@OAM?QCSEa@QIGA?SMYU?AYY?Ac@[QESEQAS@A?KBIBA?GBSLSRKR?@ABITG^CT?Z@TBTBNDLN^FPfAnCLf@Zt@@D?@pCzGzBtFJVDNFJDHDD?@RR\"},\"start_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.4 mi\",\"value\":5456},\"duration\":{\"text\":\"4 mins\",\"value\":268},\"end_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"html_instructions\":\"Merge onto <b>I-495 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"citwF`kuaMx@zBx@xBt@nBpAdDDH?@BFJX@B@BJV@D@BJV@D\\\\|@|BdGJV?@BDj@xA~@tCh@fBb@|AfAhEPt@\\\\`BTlA?@PdARrADVJ~@VvBNpBJbAHx@RbBXdBPdAj@zCfAvFVhA?B@@@Ft@tDf@bCd@xBl@xCh@jCDNDRpB|Jb@bCBPFRF^fArEbAhEXnABJ@DHZ?@@BDP?@@DJ^?@H`@@?DRPt@?BFVRx@Px@r@lDZtA?@Nv@VnAl@tCdBvIb@rBn@~C^hBVlAPr@Pr@ZjAh@dB?@h@`Bp@|BRr@Pp@Nt@Lp@Lx@Ht@Hv@Ft@Dt@FlABn@?@@p@`@|KDv@Dv@Fv@Ht@Jv@Jv@Nv@Nr@Np@JZHVJ\\\\FVHRL\\\\P`@Rd@Vh@Vf@j@jAZp@b@x@Vf@Vf@Tf@Rb@Pf@Tp@Nb@Lb@J^F\\\\H^Lj@Hd@Hl@Fd@Dd@D`@Df@Dl@Bz@Bt@@x@?t@Ap@Aj@Cr@Cf@Cj@q@tOSjFSlEOzC[nH\"},\"start_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2375},\"duration\":{\"text\":\"5 mins\",\"value\":311},\"end_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"html_instructions\":\"Take exit <b>17W</b> toward <b>Brooklyn</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"eiqwFxaabMSrBCb@E`@CXEXE`@ETG\\\\E\\\\GXETGZIVGZIXIXIVGVKXIXKVIVKVKXKTITKTQ`@S`@g@bA]j@MTMTMVMVMVKVKVKVeA|BMXQ^KXEPIXMZKXMXIPKVKXKTIVKVIXIVIVI\\\\GXGZGREVEVGXETEXsAzIEXGZGZgAdG_BvIEVGZGXGVIZIZIXIXIVIXKVITIRENINGLGJEFGHEFGFe@VQJOLQLQNSLQNsBtAQNIFUPOLSRMRMRKTMXGRCJENE\\\\E`@AXA^?^?V@XDd@D\\\\DXFTFXHVJXJVJVLTLRLTLRNRNRPRLNNPPNPPPLPNPLPLRLRJTLTLRLRJb@L\"},\"start_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2534},\"duration\":{\"text\":\"4 mins\",\"value\":211},\"end_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"html_instructions\":\"Merge onto <b>I-278 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"unrwFxqebMVN`E|BhAn@|@h@x@f@FD\\\\Th@^\\\\V`Az@v@x@nApArA~AZ^V^VZTXPRPTb@n@JLPRVZLP?@LNBDRVZb@DFDHLPZj@Td@Tj@@BLZDHDNNZRp@Nh@VdAHd@DTDTF\\\\BNBNx@zEF^F`@BHr@hEj@lDRbAPf@JXJ\\\\v@`B`AxBx@hBhAfC`@z@f@|@lCdEbA`BvBlErArC|A~CzDvHrAdCzBfE\\\\n@\"},\"start_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":415},\"duration\":{\"text\":\"1 min\",\"value\":59},\"end_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"html_instructions\":\"Take exit <b>32B</b> toward <b>Metropolitan Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"suowFn~ibM?BAB@D?D@B?B@@Td@`@t@\\\\l@p@pAf@~@Vf@`@r@f@|@j@~@l@~@v@jA^h@HN?B@B@L\"},\"start_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":210},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"html_instructions\":\"Merge onto <b>Meeker Ave</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}fowF~ujbMl@z@hBxBlBzBPZ\"},\"start_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"499 ft\",\"value\":152},\"duration\":{\"text\":\"1 min\",\"value\":45},\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"e~nwFl`kbM?fDA|@?dA@p@?H\"},\"start_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]}],\"overview_polyline\":{\"points\":\"qzlwFpes`MeU[ErDG~AItDQ~FGbBBx@QrEKtBm@jNUWw@QwCm@q@JgPlE{Bb@uEr@[lOyA`QKh@q@dBgErJ{BxCoBhCo@dAiHlMiA|CoBbGqKp[mLh]_E~LyCdK[hAUy@s@_FuFxAmIzBYHd@tD\\\\hCvAdKpAlJ|A|Uv@jMr@bGvDbTzB~M`BdIvAtGh@Ot@WP[NYHWXw@X_@XSTGp@EDAPCfCd@pD|@p@T|Ar@xAz@fCdBdFrExB`B|D|AdDv@~BJ~BIlBQ`Es@bDgA~Ao@vCcA~Bi@vC[dIMn`@m@t\\\\o@t^i@`JQfEEbBI`Iu@rAE~FAbC@|ADvCh@tBx@dJ`FpK`HlA`A`DvCvHtHnLnKrB~Ax\\\\~StA|@PBtAx@|BbBfBbBbBjBd@x@lA`Df@|AXhB@`Au@fX?fAGdSBhc@_@pJCZoEby@_ApQYxKCdQRtNh@|ShBza@VtE\\\\~IDdBFbBGBA@C@ARC`Bu@tJGdBBdGFhZI`A_@~@}AzAaChB_BZ_JWyE?aG\\\\}BZgCr@MLgAR}JrDoWtJ{Dz@m@JaEh@[AYJcGdCuDtA}MxG`@dBjCvKuH|Cn@nD|AbIJ`@wAEiIMi@LaC|@eBv@yAaCcAyBo@wDe@uC@]Kw@?AUuAc@RYLGNEHIHsBfAuCtAcAz@sEvB}HfEkB`AmFfCyIxDwDtAmUjIkHdDwFnC}BpAUHmA`@iAp@kB~@yDjCqBzBsFlHaAbAqCvBoAhAkBlAmDdCiCjByAr@qA^wAPwAFwACgG]uAAyAHuATsA`@}HvDoAl@gAx@oChCcC~CyEhIkA`BgAdAkAx@kAn@ed@jRgDrAwBj@eBT{J^yETaEj@wIbBkCZq@DcAKaAg@s@s@u@a@e@GU@WF[P_@f@Sz@Cp@Dj@X|@xB~FnGxO^|@DFRRx@zBnBhFvAnDPf@^bAfD|IxC|IzC~Lz@hFx@`IbAfIvEfVfIha@~EbTvF~WxEtUvA`GdCfIbAlEh@|EPtDh@fOb@|Ez@tEh@hB|@xBvBnEhBpDjA`Dj@`Ch@dDV|CH`FKxD}Az^k@jMWvCUvB{@pEqAfEgCzF{BnEqBnEi@`B}A|DeAhEcCnOyEzVmAvD_@p@{@p@qFzDcAz@u@vAWlAIzBLtB^`Bp@~Ax@pA~@hAfA~@~CjBz@\\\\jGlD|ClBfAv@xBtBbDpDr@~@pA~AxAlBzAvBtAnCZx@jA|DTpApCnP~@pF\\\\`A~DbJjBbEtDbGzDnHpDrHhLtT?RrDdHlCxEnCdE@F@Ll@z@vEtFPZ?fDAbC@z@\"},\"summary\":\"Tulip Ave\",\"warnings\":[],\"waypoint_order\":[1,0]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"4cca4754-d45e-494e-845d-12652a9f3c53"}],"id":"ea45282c-f5c3-4ae8-948e-2c39cecd1875","_postman_id":"ea45282c-f5c3-4ae8-948e-2c39cecd1875","description":""},{"name":"Get distance matrix","id":"a1f0fbe8-7e0f-48f6-b95e-5ee884b719b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/location/distancematrix?destinations=40.45546,-73.67660&destinations=40.65446,-73.67660&destinations=40.65546,-73.67660&origins=40.75237,-73.66787&origins=40.72237,-73.66787&origins=40.75237,-73.66787","urlObject":{"path":["location","distancematrix"],"host":["{{host}}"],"query":[{"key":"destinations","value":"40.45546,-73.67660"},{"key":"destinations","value":"40.65446,-73.67660"},{"key":"destinations","value":"40.65546,-73.67660"},{"disabled":true,"key":"destinations","value":"40.65546,-73.67660"},{"disabled":true,"key":"maps_data_format","value":"here_maps"},{"disabled":true,"description":{"content":"<p>google_maps or here_maps</p>\n","type":"text/plain"},"key":"override_adapter","value":"google_maps"},{"key":"origins","value":"40.75237,-73.66787"},{"disabled":true,"key":"origins","value":"40.70637,-73.66787"},{"key":"origins","value":"40.72237,-73.66787"},{"key":"origins","value":"40.75237,-73.66787"},{"disabled":true,"key":"origins","value":"40.55237,-73.66787"}],"variable":[]}},"response":[{"id":"59b08d5f-4117-47aa-a89f-2d0ee14c8c59","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/distance-matrix?origins[]=169 grange street, franklin square ny&origins[]=104-16 132nd street, south rh&destinations[]=1234 jericho turnpike, floral park, ny&destinations=390 metropolitan ave, brooklyn ny","host":["{{host}}"],"path":["location","distance-matrix"],"query":[{"key":"origins[]","value":"169 grange street, franklin square ny"},{"key":"origins[]","value":"104-16 132nd street, south rh"},{"key":"destinations[]","value":"1234 jericho turnpike, floral park, ny"},{"key":"destinations","value":"390 metropolitan ave, brooklyn ny"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"556","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 06 Jul 2017 17:00:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"22c-RWSN81ymVVgGEK2Z9bRLyu3sGCU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1499360401442365","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3Ah2BNshj1MG_MNYxaGuLz2KmeCQ29D65x.blOymujVrMh4IjZXjEoWyqAf7dbW25MOF8AfszQQArg","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"destination_addresses\":[\"1234 Jericho Turnpike, New Hyde Park, NY 11040, USA\",\"390 Metropolitan Ave, Brooklyn, NY 11211, USA\"],\"origin_addresses\":[\"169 Grange St, Franklin Square, NY 11010, USA\",\"\"],\"rows\":[{\"elements\":[{\"distance\":{\"text\":\"4.3 km\",\"value\":4348},\"duration\":{\"text\":\"11 mins\",\"value\":673},\"status\":\"OK\"},{\"distance\":{\"text\":\"37.2 km\",\"value\":37198},\"duration\":{\"text\":\"40 mins\",\"value\":2378},\"status\":\"OK\"}]},{\"elements\":[{\"status\":\"NOT_FOUND\"},{\"status\":\"NOT_FOUND\"}]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"a1f0fbe8-7e0f-48f6-b95e-5ee884b719b3"},{"name":"Get directions from stops","id":"0d5f59fb-b94f-49f3-b48d-40d585ff6885","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/location/directions?stops[0][latitude]=40.72822&stops[0][longitude]=-73.70667000000003&stops[0][type]=pickup&stops[1][latitude]=40.7382953&stops[1][longitude]=-73.64537630000001&stops[1][type]=dropoff&stops[2][latitude]=40.70770399999999&stops[2][longitude]=-73.70693299999999&stops[2][type]=dropoff&stops[3][latitude]=40.690812&stops[3][longitude]=-73.812737&stops[3][type]=dropoff&stops[4][latitude]=40.7295541&stops[4][longitude]=-73.6980212&stops[4][type]=dropoff&stops[5][latitude]=40.7138587&stops[5][longitude]=-73.95531369999999&stops[5][type]=dropoff&stops[6][latitude]=40.70249800000001&stops[6][longitude]=-73.673299&stops[6][type]=dropoff&optimize=true","description":"<p>This endpoint allows you to pass an array of stop objects and in return will get directions through all the stops. The required parameters for a stop are <code>latitude</code>, <code>longitude</code> and <code>type</code>. The <code>type</code> is the stop type which can be either <code>pickup</code> or <code>dropoff</code>. The directions are NOT optimized by default. To get optimized directions through all the stops, set <code>optimize = true</code> in the payload.</p>\n","urlObject":{"path":["location","directions"],"host":["{{host}}"],"query":[{"key":"stops[0][latitude]","value":"40.72822"},{"key":"stops[0][longitude]","value":"-73.70667000000003"},{"key":"stops[0][type]","value":"pickup"},{"key":"stops[1][latitude]","value":"40.7382953"},{"key":"stops[1][longitude]","value":"-73.64537630000001"},{"key":"stops[1][type]","value":"dropoff"},{"key":"stops[2][latitude]","value":"40.70770399999999"},{"key":"stops[2][longitude]","value":"-73.70693299999999"},{"key":"stops[2][type]","value":"dropoff"},{"key":"stops[3][latitude]","value":"40.690812"},{"key":"stops[3][longitude]","value":"-73.812737"},{"key":"stops[3][type]","value":"dropoff"},{"key":"stops[4][latitude]","value":"40.7295541"},{"key":"stops[4][longitude]","value":"-73.6980212"},{"key":"stops[4][type]","value":"dropoff"},{"key":"stops[5][latitude]","value":"40.7138587"},{"key":"stops[5][longitude]","value":"-73.95531369999999"},{"key":"stops[5][type]","value":"dropoff"},{"key":"stops[6][latitude]","value":"40.70249800000001"},{"key":"stops[6][longitude]","value":"-73.673299"},{"key":"stops[6][type]","value":"dropoff"},{"key":"optimize","value":"true"}],"variable":[]}},"response":[{"id":"c65e7a8c-c79c-4220-8a5e-db6b40d78da6","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?stops[0][latitude]=40.72822&stops[0][longitude]=-73.70667000000003&stops[0][type]=pickup&stops[1][latitude]=40.7382953&stops[1][longitude]=-73.64537630000001&stops[1][type]=dropoff&stops[2][latitude]=40.70770399999999&stops[2][longitude]=-73.70693299999999&stops[2][type]=dropoff&stops[3][latitude]=40.690812&stops[3][longitude]=-73.812737&stops[3][type]=dropoff&stops[4][latitude]=40.7295541&stops[4][longitude]=-73.6980212&stops[4][type]=dropoff&stops[5][latitude]=40.7138587&stops[5][longitude]=-73.95531369999999&stops[5][type]=dropoff&stops[6][latitude]=40.70249800000001&stops[6][longitude]=-73.673299&stops[6][type]=dropoff","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"stops[0][latitude]","value":"40.72822"},{"key":"stops[0][longitude]","value":"-73.70667000000003"},{"key":"stops[0][type]","value":"pickup"},{"key":"stops[1][latitude]","value":"40.7382953"},{"key":"stops[1][longitude]","value":"-73.64537630000001"},{"key":"stops[1][type]","value":"dropoff"},{"key":"stops[2][latitude]","value":"40.70770399999999"},{"key":"stops[2][longitude]","value":"-73.70693299999999"},{"key":"stops[2][type]","value":"dropoff"},{"key":"stops[3][latitude]","value":"40.690812"},{"key":"stops[3][longitude]","value":"-73.812737"},{"key":"stops[3][type]","value":"dropoff"},{"key":"stops[4][latitude]","value":"40.7295541"},{"key":"stops[4][longitude]","value":"-73.6980212"},{"key":"stops[4][type]","value":"dropoff"},{"key":"stops[5][latitude]","value":"40.7138587"},{"key":"stops[5][longitude]","value":"-73.95531369999999"},{"key":"stops[5][type]","value":"dropoff"},{"key":"stops[6][latitude]","value":"40.70249800000001"},{"key":"stops[6][longitude]","value":"-73.673299"},{"key":"stops[6][type]","value":"dropoff"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"42272","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 06 Aug 2017 01:04:41 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"a520-9n6Foki2Z3TiBjCCKw3/LLmQJyg\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1501981481159401","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AvjF3-sS5_9w3wFAs0YIJIFAvuT78LPtx.5zjuprX3Fpq6ecqLPIuEcXMZZzcyGKSkYR%2FTlFmlWV8","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"geocoded_waypoints\":[{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJiz1R1ltiwokRBZiTsjy5ufY\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJiz1R1ltiwokRBZiTsjy5ufY\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJrZ_3olF9wokR-3Dfztb2fCQ\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"EigyLTg2IFJvY2ttYXJ0IEF2ZSwgRWxtb250LCBOWSAxMTAwMywgVVNB\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"EjkxMDQtMS0xMDQtMTUgMTM0dGggU3QsIFNvdXRoIFJpY2htb25kIEhpbGwsIE5ZIDExNDE5LCBVU0E\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJNbrS0_ViwokRWUmff1IBmiU\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJjZXiIV9ZwokRyjln-J4IwDU\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJb8sBESNjwokReZv-tFpHUys\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJb8sBESNjwokReZv-tFpHUys\",\"types\":[\"street_address\"]}],\"routes\":[{\"bounds\":{\"northeast\":{\"lat\":40.7553101,\"lng\":-73.64563799999999},\"southwest\":{\"lat\":40.6625975,\"lng\":-73.955007}},\"copyrights\":\"Map data ©2017 Google\",\"legs\":[{\"distance\":{\"text\":\"1 ft\",\"value\":0},\"duration\":{\"text\":\"1 min\",\"value\":0},\"end_address\":\"123 NY-25, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"start_address\":\"123 NY-25, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"1 ft\",\"value\":0},\"duration\":{\"text\":\"1 min\",\"value\":0},\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"html_instructions\":\"Head on <b>Jericho Turnpike</b>\",\"polyline\":{\"points\":\"yuqwFlyz`M\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[],\"stop\":{\"latitude\":\"40.72822\",\"longitude\":\"-73.70667000000003\",\"type\":\"pickup\"}},{\"distance\":{\"text\":\"3.9 mi\",\"value\":6207},\"duration\":{\"text\":\"13 mins\",\"value\":785},\"end_address\":\"41 8th Ave, Mineola, NY 11501, USA\",\"end_location\":{\"lat\":40.73819,\"lng\":-73.64580269999999},\"start_address\":\"123 NY-25, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"308 ft\",\"value\":94},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7278865,\"lng\":-73.7077064},\"html_instructions\":\"Head <b>west</b> on <b>Jericho Turnpike</b> toward <b>Brokaw Ave</b>\",\"polyline\":{\"points\":\"yuqwFlyz`MHj@Nz@TnB\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4680},\"duration\":{\"text\":\"10 mins\",\"value\":629},\"end_location\":{\"lat\":40.74378110000001,\"lng\":-73.6570903},\"html_instructions\":\"Make a <b>U-turn</b> at <b>257th St</b>/<b>Keene Ave</b>\",\"maneuver\":\"uturn-left\",\"polyline\":{\"points\":\"itqwFd`{`MTQQ{AQsAe@oDKq@Y}Bo@cFQuAIs@e@yDOmAWkBg@yDQcBSwASoBM{@E_@CYOeAOiAScBKy@a@cDGi@QuAS_BIo@Km@SqAUcBe@gDGe@CUWsBe@oDWqBEWGa@e@oDWwBKw@S_BQuAGa@UcBIk@YqBKcAWgBOkAScBQsASyAYuBe@{DQwA]kCSgBU}AQuAc@mDUgBMcAGa@CQKe@Ka@GUIW]aA]_A_AgCu@oBEOME[u@iAuC[y@CQCSGOEK]aAuAmDu@qBm@wAkA{Cy@uBUo@q@aB]aAoAaDkA}Cc@mAe@iAiFkNe@qAIUm@uAO]Si@]{@{@}B]_Am@eBO_@Y}@[w@GSaA_CYu@a@cAc@iA_@eAa@aB\"},\"start_location\":{\"lat\":40.7278865,\"lng\":-73.7077064},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":947},\"duration\":{\"text\":\"2 mins\",\"value\":102},\"end_location\":{\"lat\":40.7368908,\"lng\":-73.6507092},\"html_instructions\":\"Turn <b>right</b> onto <b>Herricks Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"swtwFxcq`MTShAcANOj@g@bAaA`Aw@n@i@NMLKh@a@ROXY\\\\Wh@c@\\\\Wr@i@d@_@LM\\\\YjA_A|BgBd@]LM^[~AmAdAy@NCBADCt@m@f@a@\\\\YJIFIPURc@DKBOBOBK@ODY\"},\"start_location\":{\"lat\":40.74378110000001,\"lng\":-73.6570903},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":441},\"duration\":{\"text\":\"1 min\",\"value\":34},\"end_location\":{\"lat\":40.7378071,\"lng\":-73.64563799999999},\"html_instructions\":\"Continue onto <b>Old Country Rd</b>\",\"polyline\":{\"points\":\"qlswF|{o`M?]?OAM?MGc@AOKy@AGSkBEQACEIWmCa@mD]oDWeCKw@\"},\"start_location\":{\"lat\":40.7368908,\"lng\":-73.6507092},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"148 ft\",\"value\":45},\"duration\":{\"text\":\"1 min\",\"value\":7},\"end_location\":{\"lat\":40.73819,\"lng\":-73.64580269999999},\"html_instructions\":\"Turn <b>left</b> onto <b>8th Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"irswFf|n`MkA^\"},\"start_location\":{\"lat\":40.7378071,\"lng\":-73.64563799999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[],\"stop\":{\"latitude\":\"40.7382953\",\"longitude\":\"-73.64537630000001\",\"type\":\"dropoff\"}},{\"distance\":{\"text\":\"5.1 mi\",\"value\":8255},\"duration\":{\"text\":\"16 mins\",\"value\":955},\"end_address\":\"2-86 Rockmart Ave, Elmont, NY 11003, USA\",\"end_location\":{\"lat\":40.7076599,\"lng\":-73.7067941},\"start_address\":\"41 8th Ave, Mineola, NY 11501, USA\",\"start_location\":{\"lat\":40.73819,\"lng\":-73.64580269999999},\"steps\":[{\"distance\":{\"text\":\"148 ft\",\"value\":45},\"duration\":{\"text\":\"1 min\",\"value\":4},\"end_location\":{\"lat\":40.7378071,\"lng\":-73.64563799999999},\"html_instructions\":\"Head <b>south</b> on <b>8th Ave</b> toward <b>Old Country Rd</b>\",\"polyline\":{\"points\":\"utswFf}n`MjA_@\"},\"start_location\":{\"lat\":40.73819,\"lng\":-73.64580269999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":439},\"duration\":{\"text\":\"1 min\",\"value\":43},\"end_location\":{\"lat\":40.736989,\"lng\":-73.6507197},\"html_instructions\":\"Turn <b>right</b> onto <b>Old Country Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"irswFf|n`MJv@VdC\\\\nD`@lDVlCAJ?B@TPhB@FHz@DVB`@@H?J?LAZ\"},\"start_location\":{\"lat\":40.7378071,\"lng\":-73.64563799999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":579},\"duration\":{\"text\":\"1 min\",\"value\":49},\"end_location\":{\"lat\":40.7319385,\"lng\":-73.65200639999999},\"html_instructions\":\"Turn <b>left</b> onto <b>Rockaway Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"emswF~{o`MRAXC\\\\CF?H?J?N@R@J@LBLBj@Pr@TRFxJnC~Ad@HBn@PXFTBH@J?\\\\?V?DA@?TCXE\"},\"start_location\":{\"lat\":40.736989,\"lng\":-73.6507197},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"354 ft\",\"value\":108},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7313882,\"lng\":-73.6528957},\"html_instructions\":\"Slight <b>right</b> to stay on <b>Rockaway Ave</b>\",\"maneuver\":\"turn-slight-right\",\"polyline\":{\"points\":\"smrwF`dp`MVDDDRHNHHFFHFLDNDR@NB|@\"},\"start_location\":{\"lat\":40.7319385,\"lng\":-73.65200639999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":165},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7322482,\"lng\":-73.65447670000002},\"html_instructions\":\"Turn <b>right</b> onto <b>Merillon Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"ejrwFrip`MO^Sd@MH]t@q@bBi@pA\"},\"start_location\":{\"lat\":40.7313882,\"lng\":-73.6528957},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":837},\"duration\":{\"text\":\"1 min\",\"value\":82},\"end_location\":{\"lat\":40.72474080000001,\"lng\":-73.6545666},\"html_instructions\":\"Turn <b>left</b> onto <b>Oxford Blvd</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"qorwFnsp`MPDzA?FHH?tN@~J@fNA\"},\"start_location\":{\"lat\":40.7322482,\"lng\":-73.65447670000002},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.7 mi\",\"value\":2776},\"duration\":{\"text\":\"4 mins\",\"value\":258},\"end_location\":{\"lat\":40.7248341,\"lng\":-73.6875098},\"html_instructions\":\"Turn <b>right</b> onto <b>Stewart Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"s`qwF`tp`M?vEAvE?tEAtD?rD?zA?P?fB?ZA|B?tA?rDAtD?vB?`A?pBArA?`EAbE?`E?`EA`E@vB@|B?jA?bBA|@?tD?rDAtD?xD?rDArD?vA?bB?lA?lB?rDAh@?bA?lA?bE?pD?~D?~D?rD?vC\"},\"start_location\":{\"lat\":40.72474080000001,\"lng\":-73.6545666},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.2 mi\",\"value\":1851},\"duration\":{\"text\":\"4 mins\",\"value\":244},\"end_location\":{\"lat\":40.7086368,\"lng\":-73.6906449},\"html_instructions\":\"Turn <b>left</b> onto <b>Covert Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"eaqwF|aw`MnARhCb@x@LRBJ@b@HbBV`@FbBX`@FdBXbC`@f@J~AVtATvCf@LBJ@J@T@R?VAN?\\\\EPCHCt@ULCf@OdBe@d@MjA[l@OTCTCLAT?N?P?N@@?NBd@Hh@Th@Tt@\\\\x@`@fCfANFNFTFNDLB`@JLBfCb@bARbAPbCb@dCd@j@JvAXl@JxATLB\"},\"start_location\":{\"lat\":40.7248341,\"lng\":-73.6875098},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.9 mi\",\"value\":1423},\"duration\":{\"text\":\"4 mins\",\"value\":235},\"end_location\":{\"lat\":40.707928,\"lng\":-73.70664599999999},\"html_instructions\":\"Continue straight onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"straight\",\"polyline\":{\"points\":\"_|mwFnuw`MrBf@NhAFf@XvBDVXtBZpBRdBBVBZDb@Hl@LzANrALxABr@Bp@@dA?z@C|@C`@Cj@Ef@Gx@IhAMvBCfB?dAIXAbBA`B?dBAfA?NE~DEz@Cj@KlAYpD@f@KpAI`AS~AQpA\"},\"start_location\":{\"lat\":40.7086368,\"lng\":-73.6906449},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"105 ft\",\"value\":32},\"duration\":{\"text\":\"1 min\",\"value\":9},\"end_location\":{\"lat\":40.7076599,\"lng\":-73.7067941},\"html_instructions\":\"Turn <b>left</b> onto <b>Rockmart Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"qwmwFpyz`Mt@Z\"},\"start_location\":{\"lat\":40.707928,\"lng\":-73.70664599999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[],\"stop\":{\"latitude\":\"40.70770399999999\",\"longitude\":\"-73.70693299999999\",\"type\":\"dropoff\"}},{\"distance\":{\"text\":\"10.0 mi\",\"value\":16059},\"duration\":{\"text\":\"19 mins\",\"value\":1118},\"end_address\":\"104-1-104-15 134th St, South Richmond Hill, NY 11419, USA\",\"end_location\":{\"lat\":40.690896,\"lng\":-73.8124848},\"start_address\":\"2-86 Rockmart Ave, Elmont, NY 11003, USA\",\"start_location\":{\"lat\":40.7076599,\"lng\":-73.7067941},\"steps\":[{\"distance\":{\"text\":\"105 ft\",\"value\":32},\"duration\":{\"text\":\"1 min\",\"value\":6},\"end_location\":{\"lat\":40.707928,\"lng\":-73.70664599999999},\"html_instructions\":\"Head <b>northeast</b> on <b>Rockmart Ave</b> toward <b>Hempstead Turnpike</b>\",\"polyline\":{\"points\":\"{umwFlzz`Mu@[\"},\"start_location\":{\"lat\":40.7076599,\"lng\":-73.7067941},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.1 mi\",\"value\":1849},\"duration\":{\"text\":\"4 mins\",\"value\":261},\"end_location\":{\"lat\":40.711057,\"lng\":-73.7276938},\"html_instructions\":\"Turn <b>left</b> onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"qwmwFpyz`MSdBOhAA^MvCAlBAxBGXAn@Et@K~BE|@I|AAb@Ab@?j@?P@b@@TB^@ZHz@J~@LVBVFd@Ft@Dr@Bh@Bn@@d@@d@?|@?n@Ax@AtAInCEx@MdBK~@G`@Ip@UrAUvAa@rBIHA@Ib@[hA[xAGRkAdGWjAUnAa@tB_@tBeAvFQz@Qt@]vAK`@Oh@ENCJADM\\\\\"},\"start_location\":{\"lat\":40.707928,\"lng\":-73.70664599999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":177},\"duration\":{\"text\":\"1 min\",\"value\":27},\"end_location\":{\"lat\":40.7116908,\"lng\":-73.7296095},\"html_instructions\":\"Continue onto <b>Hempstead Ave</b>\",\"polyline\":{\"points\":\"cknwF`}~`MEPIVw@rCABAd@e@jBKj@\"},\"start_location\":{\"lat\":40.711057,\"lng\":-73.7276938},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":234},\"duration\":{\"text\":\"1 min\",\"value\":24},\"end_location\":{\"lat\":40.71206490000001,\"lng\":-73.72873009999999},\"html_instructions\":\"Slight <b>right</b> onto the <b>Cross Island Parkway S</b> ramp to <b>Verrazano Bridge</b>\",\"polyline\":{\"points\":\"aonwF`i_aMSPGHEDEDCDMHIBEBE@E@G@G@G?C?CAKAEACAECECECCCEECGCECGAEAEAIASAK@K?A?C?E@E@G@EBE@GBCBEFGBCDEFEHENINELE@??A@A@C?A@CBG\"},\"start_location\":{\"lat\":40.7116908,\"lng\":-73.7296095},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2513},\"duration\":{\"text\":\"2 mins\",\"value\":106},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Merge onto <b>Cross Island Pkwy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"kqnwFpc_aMHEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.71206490000001,\"lng\":-73.72873009999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":519},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"html_instructions\":\"Take the <b>Brooklyn</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"aejwF`w~`Mb@?VAZATAXCdAIzC]tAKHAfAEJ?vACfD@jABD?FAh@?\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2090},\"duration\":{\"text\":\"1 min\",\"value\":87},\"end_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"html_instructions\":\"Continue onto <b>Belt Pkwy</b>/<b>Laurelton Pkwy</b>\",\"polyline\":{\"points\":\"_hiwFzt~`Mf@At@F`BVt@Pp@TbAb@vBhAlFvCrEtC|DjCb@Zh@d@PP@@xBlBRT|A|Az@|@~AdB|@r@fGzFvAjAf@d@f@`@jBvA@??@DDdAp@^Vj@\\\\fXvPtA|@\"},\"start_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4588},\"duration\":{\"text\":\"4 mins\",\"value\":216},\"end_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_bfwFf_aaMPBdAn@NH~@n@|@r@~@z@f@f@RPTTp@z@FFFJHNFJJPJTj@|ALXFRL\\\\BFDJNj@Nt@Hr@@^?`@Av@UxHYdKCn@?P?P?P?P?NGvG?rG?hA?fL@nF@zB?tJEbBErAIjBIlA?@CXCd@KhBKtBGt@_Crb@SzDOpCGdAWxEWvEIjAErAEr@E~ACxAIjDCpCApA?z@@dH@jABnAL|H?ZAPRlHJxC?R@T@LB~@BjAP~FR|Cd@zK\\\\`HLdCHnARdEHxC@d@B~@FbB\"},\"start_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":802},\"duration\":{\"text\":\"1 min\",\"value\":47},\"end_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"html_instructions\":\"Take exit <b>19</b> toward <b>Van Wyck Expy</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"usewFrekaMGBA??@A?A@?@?BAB?H?N?TA`@AXAXGr@Gx@Ir@Ej@I`AEd@Cd@APCZ?NAf@?DCLBlBBbC?h@@vGBlH?\\\\?N@`A?rA?t@ANAPCPALELENGPKN\"},\"start_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":522},\"duration\":{\"text\":\"1 min\",\"value\":30},\"end_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Interstate 678 N</b>/<b>Van Wyck Expwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"ewewF~_maMSRGHMLs@n@e@`@m@f@YRSJUHWFa@FO@uAGiBGsACkACm@Ao@?eA?u@@\"},\"start_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2076},\"duration\":{\"text\":\"3 mins\",\"value\":154},\"end_location\":{\"lat\":40.6889566,\"lng\":-73.8088035},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>I-678 N</b>/<b>Van Wyck Expy</b>/<b>Bronx</b> and merge onto <b>I-678 N</b>/<b>Van Wyck Expy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_sfwFhfmaM}CP{@DW@OB[B[Ba@Hc@Hc@Jq@Nk@REBEBGHa@Fe@Jq@Ts@TcA^sEfBkE`BWHu@V?@g@PeC~@cBl@cFnBqHnCeE|Ak@VA?_DnA{EhBs@Xk@R{@\\\\eAb@kAf@iAh@mAf@iB|@oB|@qCtA\"},\"start_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":177},\"duration\":{\"text\":\"1 min\",\"value\":16},\"end_location\":{\"lat\":40.690487,\"lng\":-73.80935},\"html_instructions\":\"Take the <b>Liberty Ave</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"_ajwF~wnaMU@C@A?A@QFs@VQFQFc@Jk@Ng@NUFE?C@Q@\"},\"start_location\":{\"lat\":40.6889566,\"lng\":-73.8088035},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":183},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"html_instructions\":\"Merge onto <b>Van Wyck Expy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"qjjwFl{naM[PgAh@q@^SL_CfA\"},\"start_location\":{\"lat\":40.690487,\"lng\":-73.80935},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":236},\"duration\":{\"text\":\"1 min\",\"value\":68},\"end_location\":{\"lat\":40.6913942,\"lng\":-73.8127758},\"html_instructions\":\"Turn <b>left</b> onto <b>Liberty Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"{sjwF~`oaMUJBJ@JFT?@BLFV?@?@Lr@LRd@tCf@bDFR\"},\"start_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"200 ft\",\"value\":61},\"duration\":{\"text\":\"1 min\",\"value\":15},\"end_location\":{\"lat\":40.690896,\"lng\":-73.8124848},\"html_instructions\":\"Turn <b>left</b> onto <b>134th St</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"epjwFzpoaMVOhAk@\"},\"start_location\":{\"lat\":40.6913942,\"lng\":-73.8127758},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[],\"stop\":{\"latitude\":\"40.690812\",\"longitude\":\"-73.812737\",\"type\":\"dropoff\"}},{\"distance\":{\"text\":\"11.4 mi\",\"value\":18273},\"duration\":{\"text\":\"19 mins\",\"value\":1163},\"end_address\":\"338 Jericho Turnpike, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7297632,\"lng\":-73.6981017},\"start_address\":\"104-1-104-15 134th St, South Richmond Hill, NY 11419, USA\",\"start_location\":{\"lat\":40.690896,\"lng\":-73.8124848},\"steps\":[{\"distance\":{\"text\":\"315 ft\",\"value\":96},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.6901048,\"lng\":-73.8120265},\"html_instructions\":\"Head <b>southeast</b> on <b>134th St</b> toward <b>105th Ave</b>\",\"polyline\":{\"points\":\"cmjwF~noaM~CyA\"},\"start_location\":{\"lat\":40.690896,\"lng\":-73.8124848},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":156},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.690652,\"lng\":-73.810322},\"html_instructions\":\"Turn <b>left</b> at the 1st cross street onto <b>105th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"chjwFdloaMy@iDs@kD\"},\"start_location\":{\"lat\":40.6901048,\"lng\":-73.8120265},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"243 ft\",\"value\":74},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.690036,\"lng\":-73.80997669999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Van Wyck Expy</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"qkjwFnaoaMxAq@^Q\"},\"start_location\":{\"lat\":40.690652,\"lng\":-73.810322},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.8 mi\",\"value\":2971},\"duration\":{\"text\":\"3 mins\",\"value\":155},\"end_location\":{\"lat\":40.6646799,\"lng\":-73.8023771},\"html_instructions\":\"Take the ramp on the <b>left</b> onto <b>I-678 S</b>\",\"polyline\":{\"points\":\"wgjwFj_oaMNYFCHGVQ|@m@hAs@b@UXQRUnDcBpBaALGNIxBgAd@Sh@WvB_AzHsCrDwAJEbOmFxAi@~L{Ex@a@\\\\IpCgA~IkDb@OZI@A^Kn@ORGZIXGLCZGLCZEb@If@GZCp@C`EI|G@nDLH?\\\\@@?^@zCH`AJp@FjAPRB^D~Bd@VFRDn@Px@Z|@VlA\\\\\"},\"start_location\":{\"lat\":40.690036,\"lng\":-73.80997669999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":892},\"duration\":{\"text\":\"1 min\",\"value\":46},\"end_location\":{\"lat\":40.6658553,\"lng\":-73.7959783},\"html_instructions\":\"Take exit <b>1</b> on the <b>left</b> for <b>Belt Pkwy E</b>/<b>NY-27 E</b>\",\"maneuver\":\"ramp-left\",\"polyline\":{\"points\":\"giewFzomaMl@Db@HPBP@J@L?NANALCPERERIPIPMLKJKNQNSNWJULYHYFUBODSBWD]@[?]?]C[C_@G_@Ka@Mc@M[KQQWOSQQQOSMSMq@]uAs@UMQKUOsAgA_@_@w@iAOYKWCEKSISIWGSGSI[Ic@Kq@\"},\"start_location\":{\"lat\":40.6646799,\"lng\":-73.8023771},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"4.3 mi\",\"value\":6978},\"duration\":{\"text\":\"6 mins\",\"value\":330},\"end_location\":{\"lat\":40.6833118,\"lng\":-73.7266333},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Belt Pkwy E</b>/<b>Eastern Li</b> and merge onto <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"spewFzglaMI]CQCe@Ce@C_AA_AAi@Ae@As@AaAAg@?Q?g@C]?KGSACCKMyIEgBMyDAa@OcFKqCAOGgBaAwR[yHQ}FI{C?AI_DS}HKeDG{CAiBEeD?iB?qB?iB@_A@mBBgABaBBkA@g@@c@@g@B[@e@@MBk@Do@t@qNDi@TsEFgABWhCqe@RoDD}@?I?ABY?ABa@@[J_BFwABqA@aB?uC?iD?oE?eBAgGB{K?c@HkFHcEH{EN{JH{D@qAA[Ci@Ei@Iw@Ii@Ke@Mg@M]Oc@Yu@OYUa@[g@GIQU?A_@g@{AeBaBsAeA{@y@i@a@YUOCAoAs@uCcBmC}AyBsAWQo@[kBkA_Ak@cCcBgAw@}@q@_@W?AOK_BmASOo@k@mAaAcA}@eFuEqJiJSQw@q@yAeA_C}Ay@g@q@a@{A_AaB_A]UaCsAeAm@_Ag@mB_A\"},\"start_location\":{\"lat\":40.6658553,\"lng\":-73.7959783},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"377 ft\",\"value\":115},\"duration\":{\"text\":\"1 min\",\"value\":6},\"end_location\":{\"lat\":40.68420830000001,\"lng\":-73.7259553},\"html_instructions\":\"Take the exit toward <b>Cross Island Pkwy</b>/<b>Whitestone Br</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"u}hwFlv~`Ma@WYOMGKGMIKIa@[][CA\"},\"start_location\":{\"lat\":40.6833118,\"lng\":-73.7266333},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":766},\"duration\":{\"text\":\"1 min\",\"value\":39},\"end_location\":{\"lat\":40.6902233,\"lng\":-73.726598},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Cross Island Parkway</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"iciwFfr~`MYYIIIIMO[a@U]o@_AMQIKIKGEEEKGGGIGUKKGa@OOCMCOCOCQAQ@Q?]BUDWFa@R[PQN]\\\\w@v@w@x@y@x@c@^EDQLIFKFIDKFKFEBQHKDOHODOFSFSFWDUDIBS@QBU@Q@s@A\"},\"start_location\":{\"lat\":40.68420830000001,\"lng\":-73.7259553},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.3 mi\",\"value\":3677},\"duration\":{\"text\":\"3 mins\",\"value\":161},\"end_location\":{\"lat\":40.7223886,\"lng\":-73.7250241},\"html_instructions\":\"Continue onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"{hjwFfv~`Ms@BmCDsA@uADmAB_@@mA@m@@_ABmDD}IRq@@sEFmADo@@sC@kPTmEDuA@sADoABwFH{BD]@yLRgCBoAFaAJ_ANkAXu@Ty@X}@Z]La@N{@\\\\UJ]Ls@Ti@P}@Ti@JQBm@F_AJ_AH_ADm@BiA?m@Ec@E{@Mk@KcAWk@Ug@Qk@Ww@e@aAq@g@]sDeDyAmAs@g@WQoAy@}@e@OGeAa@[KA?]Mq@SmBc@kDs@\"},\"start_location\":{\"lat\":40.6902233,\"lng\":-73.726598},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":174},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7235848,\"lng\":-73.72381159999999},\"html_instructions\":\"Take exit <b>27</b> toward <b>Jamaica Ave</b>/<b>Jericho Turnpike</b>/<b>NY-25</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"}qpwFjl~`MCOCCAAKEKGMEGEGEIGIIKKKMIIGIGKCGEIIQGOGMCIEGEEECECEAOEQE\"},\"start_location\":{\"lat\":40.7223886,\"lng\":-73.7250241},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"308 ft\",\"value\":94},\"duration\":{\"text\":\"1 min\",\"value\":26},\"end_location\":{\"lat\":40.7243883,\"lng\":-73.72415},\"html_instructions\":\"Merge onto <b>244th St</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"kypwFxd~`MsBn@]JEBIB\"},\"start_location\":{\"lat\":40.7235848,\"lng\":-73.72381159999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.7 mi\",\"value\":1075},\"duration\":{\"text\":\"3 mins\",\"value\":158},\"end_location\":{\"lat\":40.7269587,\"lng\":-73.7119043},\"html_instructions\":\"Turn <b>right</b> onto <b>Jamaica Ave</b>/<b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Continue to follow Jericho Turnpike</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"m~pwF|f~`MKi@_@wBSsAUiAMm@]kBQ{@Mq@M{@Km@SeAqAuHY_BEUc@}BQkAQuAAUQaDYsDIyAGu@SyCASQmCOuC\"},\"start_location\":{\"lat\":40.7243883,\"lng\":-73.72415},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.7 mi\",\"value\":1205},\"duration\":{\"text\":\"3 mins\",\"value\":154},\"end_location\":{\"lat\":40.7297632,\"lng\":-73.6981017},\"html_instructions\":\"Continue straight onto <b>Jamaica Ave</b>/<b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Continue to follow Jericho Turnpike</div><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"straight\",\"polyline\":{\"points\":\"onqwFjz{`MOwBUeDKi@E_@OkAMcAMcA_@gC_@sCQ{AQsAe@oDKq@Y}Bo@cFQuAIs@e@yDOmAWkBg@yDQcBSwASoBM{@E_@CYGa@\"},\"start_location\":{\"lat\":40.7269587,\"lng\":-73.7119043},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[],\"stop\":{\"latitude\":\"40.7295541\",\"longitude\":\"-73.6980212\",\"type\":\"dropoff\"}},{\"distance\":{\"text\":\"16.3 mi\",\"value\":26293},\"duration\":{\"text\":\"33 mins\",\"value\":1992},\"end_address\":\"398 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"end_location\":{\"lat\":40.7138678,\"lng\":-73.955007},\"start_address\":\"338 Jericho Turnpike, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7297632,\"lng\":-73.6981017},\"steps\":[{\"distance\":{\"text\":\"157 ft\",\"value\":48},\"duration\":{\"text\":\"1 min\",\"value\":4},\"end_location\":{\"lat\":40.72988369999999,\"lng\":-73.69755479999999},\"html_instructions\":\"Head <b>east</b> on <b>Jericho Turnpike</b> toward <b>Depan Ave</b>\",\"polyline\":{\"points\":\"_`rwFbdy`MGc@OiA\"},\"start_location\":{\"lat\":40.7297632,\"lng\":-73.6981017},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":603},\"duration\":{\"text\":\"1 min\",\"value\":86},\"end_location\":{\"lat\":40.73507410000001,\"lng\":-73.6995032},\"html_instructions\":\"Turn <b>left</b> onto <b>Willis Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"w`rwFt`y`MUTiHrBgJ`CiDdAsCn@UEQH\"},\"start_location\":{\"lat\":40.72988369999999,\"lng\":-73.69755479999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":352},\"duration\":{\"text\":\"1 min\",\"value\":48},\"end_location\":{\"lat\":40.7342079,\"lng\":-73.70352190000001},\"html_instructions\":\"Turn <b>left</b> onto <b>Whittier Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"easwFzly`MHp@^pCf@vDXtBJ~@d@nDL`A\"},\"start_location\":{\"lat\":40.73507410000001,\"lng\":-73.6995032},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.0 mi\",\"value\":1654},\"duration\":{\"text\":\"3 mins\",\"value\":193},\"end_location\":{\"lat\":40.7316809,\"lng\":-73.7226929},\"html_instructions\":\"Continue onto <b>86th Ave</b>\",\"polyline\":{\"points\":\"y{rwF~ez`MX~Bf@vDd@rDf@vDf@nDd@vDd@rDd@rDd@tDFT`@xC\\\\~D@TNvDPzDT|DNrDP~DTxD^xHB\\\\?HCXMnBa@|F\"},\"start_location\":{\"lat\":40.7342079,\"lng\":-73.70352190000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":303},\"duration\":{\"text\":\"1 min\",\"value\":49},\"end_location\":{\"lat\":40.7343735,\"lng\":-73.7221289},\"html_instructions\":\"Turn <b>right</b> onto <b>Cross Island Pkwy</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"_lrwFx}}`MgC]oAQu@K}@IiAMcC[\"},\"start_location\":{\"lat\":40.7316809,\"lng\":-73.7226929},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.8 mi\",\"value\":2956},\"duration\":{\"text\":\"3 mins\",\"value\":153},\"end_location\":{\"lat\":40.7539779,\"lng\":-73.7445549},\"html_instructions\":\"Take the ramp onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"y|rwFhz}`MOCAAA?A@QFeE`Bi@PWHOFu@V_@NOFGFEDEF]HuGpBa@Pi@XSJ[PQJIHMJy@p@_@XYXk@j@_@b@eArAw@nA]l@Wb@}AzC}@dBcAxBoAzCiCxHq@hBO`@MRYl@w@~AKR[p@MXy@xAi@dAYd@U^g@x@e@t@MJq@`A[d@Y^aAlAk@l@m@p@UR{A`BUXcCrCSXe@l@_ArASZc@t@a@n@c@t@_AfBi@fAc@~@_@r@m@fAiBpCyCbDKF?@oAbAA@SNo@f@{C~BUR_At@GDYTi@^\"},\"start_location\":{\"lat\":40.7343735,\"lng\":-73.7221289},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":427},\"duration\":{\"text\":\"1 min\",\"value\":31},\"end_location\":{\"lat\":40.753905,\"lng\":-73.74418899999999},\"html_instructions\":\"Take exit <b>30W</b> for <b>Interstate 495 W</b>/<b>Long Is Expwy</b> toward <b>Manhattan</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"kwvwFlfbaMKAE@IBg@V[FSDQ@_@?OCMG]UQUIOIUG[EQAW?U@WBUFSDKDGJMJIFADCNAL?L@RFx@n@t@bAZf@RRF@\"},\"start_location\":{\"lat\":40.7539779,\"lng\":-73.7445549},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"8.9 mi\",\"value\":14262},\"duration\":{\"text\":\"12 mins\",\"value\":721},\"end_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"html_instructions\":\"Merge onto <b>I-495 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"{vvwFddbaMDFR^PZLTXj@T\\\\fClElBnD@@T^t@|AXp@Vx@^dA\\\\nANl@Lt@Nt@PpAJ~@Hl@ZjDX|CNvARxALz@T~Af@xCV|AZpB`@nCVxATtAHZVfAH\\\\L`@Nh@HVJ\\\\tAtDtBnG^xABPFXP~@f@rC~@fF`@~BpAjHp@rDt@`EJp@Nr@VfAT`AL`@Tn@HVTj@z@zBjAtCX`A@D@??@?BL^?B?@@?Nl@Ld@Nr@F^V|AHp@RpB@FnAfPx@hLR~BPnBJv@Hj@@DFXZ`B`@xBb@`C^vBPx@bBbJ|ArIBH@L@@Jh@PdAj@|CBTvAjIH^|BvLBLVvAFZV|AjA`HJj@Nx@DZHj@Fb@D^Dh@Dd@P`E@~@CvCU|PIdHS`UA~@IlJ_@hXCtAGrBIvAOhB[|Cg@zC{@`Eu@|C{AjGYnAgBnH?DGTOl@e@pBaEfQO~@SjAQzA[lCUnEc@vIMvB?@ABO`DCd@_@pJEz@KxBKxBGjACz@Ad@?^Ad@?b@?b@@T@f@@^@P?D@XBX@T@RFx@?DBR@F@L@D@N@FHh@XvAF^Rz@HZHVLd@j@`Bb@tAb@pAxClIx@zBx@xBt@nBpAdDj@xAh@xA|BdGJV?@BDj@xA~@tCh@fBb@|AfAhEPt@\\\\`BTlA?@PdARrADVJ~@VvBNpBJbAHx@RbBXdBPdAj@zCfAvFVhA?B@@@Ft@tDf@bCd@xBl@xCh@jCDNDRpB|Jb@bCBPFRF^fArEbAhEXnABJ@DHZ?@@BDP?@@DJ^?@H`@@?DRPt@?BFVRx@Px@r@lDZtA?@Nv@VnAl@tCdBvIb@rBn@~C^hBVlAPr@Pr@ZjAh@dB?@h@`Bp@|BRr@Pp@Nt@Lp@Lx@Ht@Hv@Ft@Dt@FlABn@?@@p@`@|KDv@Dv@Fv@Ht@Jv@Jv@Nv@Nr@Np@JZHVJ\\\\FVHRL\\\\P`@Rd@Vh@Vf@j@jAZp@b@x@Vf@Vf@Tf@Rb@Pf@Tp@Nb@Lb@J^F\\\\H^Lj@Hd@Hl@Fd@Dd@D`@Df@Dl@Bz@Bt@@x@?t@Ap@Aj@Cr@Cf@Cj@q@tOSjFSlEOzC[nH\"},\"start_location\":{\"lat\":40.753905,\"lng\":-73.74418899999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2375},\"duration\":{\"text\":\"5 mins\",\"value\":314},\"end_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"html_instructions\":\"Take exit <b>17W</b> toward <b>Brooklyn</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"eiqwFxaabMSrBCb@E`@CXEXE`@ETG\\\\E\\\\GXETGZIVGZIXIXIVGVKXIXKVIVKVKXKTITKTQ`@S`@g@bA]j@MTMTMVMVMVKVKVKVeA|BMXQ^KXEPIXMZKXMXIPKVKXKTIVKVIXIVIVI\\\\GXGZGREVEVGXETEXsAzIEXGZGZgAdG_BvIEVGZGXGVIZIZIXIXIVIXKVITIRENINGLGJEFGHEFGFe@VQJOLQLQNSLQNsBtAQNIFUPOLSRMRMRKTMXGRCJENE\\\\E`@AXA^?^?V@XDd@D\\\\DXFTFXHVJXJVJVLTLRLTLRNRNRPRLNNPPNPPPLPNPLPLRLRJTLTLRLRJb@L\"},\"start_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2534},\"duration\":{\"text\":\"4 mins\",\"value\":210},\"end_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"html_instructions\":\"Merge onto <b>I-278 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"unrwFxqebMVN`E|BhAn@|@h@x@f@FD\\\\Th@^\\\\V`Az@v@x@nApArA~AZ^V^VZTXPRPTb@n@JLPRVZLP?@LNBDRVZb@DFDHLPZj@Td@Tj@@BLZDHDNNZRp@Nh@VdAHd@DTDTF\\\\BNBNx@zEF^F`@BHr@hEj@lDRbAPf@JXJ\\\\v@`B`AxBx@hBhAfC`@z@f@|@lCdEbA`BvBlErArC|A~CzDvHrAdCzBfE\\\\n@\"},\"start_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":415},\"duration\":{\"text\":\"1 min\",\"value\":60},\"end_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"html_instructions\":\"Take exit <b>32B</b> toward <b>Metropolitan Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"suowFn~ibM?BAB@D?D@B?B@@Td@`@t@\\\\l@p@pAf@~@Vf@`@r@f@|@j@~@l@~@v@jA^h@HN?B@B@L\"},\"start_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":210},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"html_instructions\":\"Merge onto <b>Meeker Ave</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}fowF~ujbMl@z@hBxBlBzBPZ\"},\"start_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"413 ft\",\"value\":126},\"duration\":{\"text\":\"1 min\",\"value\":34},\"end_location\":{\"lat\":40.7141166,\"lng\":-73.9550095},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"e~nwFl`kbM?fDA|@?dA\"},\"start_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"92 ft\",\"value\":28},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.7138678,\"lng\":-73.955007},\"html_instructions\":\"Turn <b>left</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"g~nwFxikbMp@?\"},\"start_location\":{\"lat\":40.7141166,\"lng\":-73.9550095},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[],\"stop\":{\"latitude\":\"40.7138587\",\"longitude\":\"-73.95531369999999\",\"type\":\"dropoff\"}},{\"distance\":{\"text\":\"21.8 mi\",\"value\":35070},\"duration\":{\"text\":\"39 mins\",\"value\":2369},\"end_address\":\"897 Fenworth Blvd, Franklin Square, NY 11010, USA\",\"end_location\":{\"lat\":40.7027252,\"lng\":-73.6732863},\"start_address\":\"398 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"start_location\":{\"lat\":40.7138678,\"lng\":-73.955007},\"steps\":[{\"distance\":{\"text\":\"92 ft\",\"value\":28},\"duration\":{\"text\":\"1 min\",\"value\":8},\"end_location\":{\"lat\":40.7141166,\"lng\":-73.9550095},\"html_instructions\":\"Head <b>north</b> toward <b>Metropolitan Ave</b>\",\"polyline\":{\"points\":\"u|nwFxikbMq@?\"},\"start_location\":{\"lat\":40.7138678,\"lng\":-73.955007},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":183},\"duration\":{\"text\":\"1 min\",\"value\":80},\"end_location\":{\"lat\":40.7140854,\"lng\":-73.95284},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"g~nwFxikbM?eA@}@?gDBeC\"},\"start_location\":{\"lat\":40.7141166,\"lng\":-73.9550095},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.0 mi\",\"value\":1687},\"duration\":{\"text\":\"5 mins\",\"value\":306},\"end_location\":{\"lat\":40.7239011,\"lng\":-73.9376429},\"html_instructions\":\"Turn <b>left</b> onto <b>Meeker Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"a~nwFf|jbMo@u@gC_D{@iAs@gAg@q@e@w@c@u@aA}AeBcDyAkCmAuBuB_Eq@eAyAqCQ[CEGMgBiDc@w@IS}CuGaBkDeAeBq@gAwAuBU]S[w@gBs@{AqCiGQg@\"},\"start_location\":{\"lat\":40.7140854,\"lng\":-73.95284},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"253 ft\",\"value\":77},\"duration\":{\"text\":\"1 min\",\"value\":19},\"end_location\":{\"lat\":40.7242176,\"lng\":-73.9368348},\"html_instructions\":\"Continue straight onto <b>Cherry St</b>\",\"maneuver\":\"straight\",\"polyline\":{\"points\":\"k{pwFf}gbMc@iA?EOg@Ki@\"},\"start_location\":{\"lat\":40.7239011,\"lng\":-73.9376429},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":329},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7252696,\"lng\":-73.9331886},\"html_instructions\":\"Take the <b>Interstate 278 E</b>/<b>Bklyn-Ons Expwy</b> ramp on the <b>left</b> to <b>Queens</b>/<b>Bronx</b>\",\"polyline\":{\"points\":\"k}pwFdxgbMSm@g@wCUuAW_BKk@Mk@Kk@aAwE\"},\"start_location\":{\"lat\":40.7242176,\"lng\":-73.9368348},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":1029},\"duration\":{\"text\":\"2 mins\",\"value\":94},\"end_location\":{\"lat\":40.7320954,\"lng\":-73.9254231},\"html_instructions\":\"Merge onto <b>I-278 E</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}cqwFlagbMEUEUGe@Ii@Ii@EWEOKa@GOKSOa@MUAEMYUa@OWOWSYMQOQU]CEEEKOKMIKCCKOSY[_@GKk@s@}AqB]e@Y[SWW[Y[}@cAm@o@MMKIAAUSs@m@iAw@mAw@yAy@mAq@iAo@s@c@A?s@a@SM\"},\"start_location\":{\"lat\":40.7252696,\"lng\":-73.9331886},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":370},\"duration\":{\"text\":\"1 min\",\"value\":28},\"end_location\":{\"lat\":40.7326003,\"lng\":-73.92148730000001},\"html_instructions\":\"Take exit <b>35</b> toward <b>I-495 E</b>/<b>48 St</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"snrwFzpebMWWKKKKIMKKIMIKGGEKIMGOGQGQESEQCQCUCSAWAQ?U?Q@S@Q@UBYLuAh@wF\"},\"start_location\":{\"lat\":40.7320954,\"lng\":-73.9254231},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.0 mi\",\"value\":3258},\"duration\":{\"text\":\"3 mins\",\"value\":154},\"end_location\":{\"lat\":40.7280466,\"lng\":-73.88620949999999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Exit 35E</b>, follow signs for <b>I-495 E</b>/<b>Eastern Long Is</b> and merge onto <b>I-495 E</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"wqrwFhxdbM`@mEB[DYD]H[FWFWXwAV{@HWFQHWHYH[HWH[FYHYF[FYDUDU|AgIjA{FF]FYD[F]vAsIBODUF[F]FUF[DSFUFSFUDQHSHWFWJWHUHWJUJWFKFKJMJKLMJIJMHKLOPWLSLSNULWZk@\\\\k@Zm@Zk@t@{AZm@Zk@N]LYJUJWHWHUJYFWHWHYFYH]HYFYF[DWFWDUD[DYFa@D_@Da@D]B]B[B]B]B]Bg@Bs@P}DHyDJaCReEPqEh@sLB_ADy@Dw@B_A@m@@o@?k@?i@Ai@Ai@Ck@Cq@Go@Gu@Kw@M}@My@Mo@Oq@Qs@Sq@Sk@Uo@Ui@Ue@Uc@c@{@mBuDYk@Ym@Uk@K[M[GSKYI[K_@e@sB\"},\"start_location\":{\"lat\":40.7326003,\"lng\":-73.92148730000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.0 mi\",\"value\":3199},\"duration\":{\"text\":\"3 mins\",\"value\":172},\"end_location\":{\"lat\":40.7376329,\"lng\":-73.8506266},\"html_instructions\":\"Keep <b>left</b> to stay on <b>I-495 E</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"iuqwFx{}aMMo@QgAEi@Iq@Ca@AYC[A_@]mKGw@Ao@AA?AAo@E_AG}@Gu@Ec@K{@M{@Oy@Ow@YcAo@}Bu@aCEOYaAu@gCU_AQ{@iAmFCOEWe@}BuCsNMk@Ou@Mm@cBeIKg@IY?CAEMe@{CsMu@_DWuA?[g@}BQy@w@wDgCgMSkAwAcHWuA{@aE}A_IQeASuAQwAKkAUkCSgBIy@UgBYcBGY?EI_@a@qB[wA\"},\"start_location\":{\"lat\":40.7280466,\"lng\":-73.88620949999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"5.8 mi\",\"value\":9408},\"duration\":{\"text\":\"8 mins\",\"value\":489},\"end_location\":{\"lat\":40.7525903,\"lng\":-73.7458771},\"html_instructions\":\"Keep <b>left</b> to stay on <b>I-495 E</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"eqswFl}vaMWaA[mAUs@q@}B_AwCg@uASi@M_@CEgBuEkA}CkA_DmBcFyB{Fu@sBcByEw@cCc@qAe@}AMe@SeASeAKm@CSAGAMACE[C]Ei@?ECc@AICi@AK?SAa@A[?W?gA?_A@]Bo@Bw@b@}IHoBNmDNkCF_BBi@Do@NsDJmBHoBH_BHuAF{@Hu@Hu@Fa@Ho@F_@D[Lu@Ji@TeAp@{CXiAr@yCZsA`@aBH]L_@TcAPs@v@gDjAeF`@mBtA}F`@iBb@oBD]TsAR}ABWDUTuCH_CDqAF{C@}@FkFFsDBeBLyLFmEDmEHgJDqE@cADuBDiCBkCF{DDoC?yAAuAEwAGgAEm@I}@McAOgA]kBk@gDa@yBSeAAIA?G[?AQ_AG]Mo@WuAi@wCUwACGMgAeA_GsA_HOu@?ACKAGMs@GYGYq@uDq@uDEYCS}A_J_@gB{@{Ea@_CQuA_@eDSsCEi@mAePc@sF[}DS}AO}@Oq@Mo@Su@IY?AACK_@?ACGAC]gAYy@k@wAi@mAs@mBEK_@sAIY[qAG]WwAqAaHgCsNUoAs@{DWsA[eBGWIa@Qu@YkAIWEMCIUq@GS}@_CKYa@gAWo@_@kASs@Ss@Os@YuAIg@Ie@a@eC}BuN[iCKcAMwAMkAYoDMoAEa@c@aDK{@a@qAMc@Qm@Us@Qg@M[[w@Yk@S]Ua@?AsBqD\"},\"start_location\":{\"lat\":40.7376329,\"lng\":-73.8506266},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":637},\"duration\":{\"text\":\"1 min\",\"value\":37},\"end_location\":{\"lat\":40.7495648,\"lng\":-73.7402243},\"html_instructions\":\"Take exit <b>31S</b> for <b>Cross Is Pkwy S</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"unvwFvnbaMOk@EQIYG[AOAKAQ?Q?M?S?QBS@OBWDQBIDQHQHQHMHKJKX]`A_AbAcA@Ab@a@v@y@fByBX_@`AwAVe@Vc@Vk@d@y@FMDM?E?K\"},\"start_location\":{\"lat\":40.7525903,\"lng\":-73.7458771},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"4.6 mi\",\"value\":7412},\"duration\":{\"text\":\"5 mins\",\"value\":313},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Merge onto <b>Cross Island Pkwy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"w{uwFjkaaMx@aBn@oAbBuC^k@hAcB\\\\e@dAqAdAiApD}DtBiCd@m@BC~@oAXa@dAwAZi@LU^o@FITe@Vi@\\\\u@LYHON_@N[Vm@Ra@h@uAvDgLnAwCjCqF\\\\s@JQ@CP[LS^q@`AaBPWhA}Af@k@zAsAXUZSLKdB{@f@Up@WjA_@tAc@bBk@r@SjBa@nASz@Kd@CbAGn@AHAf@?`B?`@@b@Bh@Bh@D~C`@|@Ln@JxBZn@H~AV`ALzAPdBRhCZR@nM`B\\\\D\\\\FfEh@ZD@?~AT^DdAPp@Jh@J|@Pl@NfCd@hB`@fAZXJVHTJh@TTLFBFDHDXLl@`@p@b@@@j@^f@^l@h@`@^pAhAbA~@r@l@d@\\\\RLJF\\\\PdAb@l@Tj@Ph@NTFz@Th@HT@TB|@DT?z@AbAGz@Gp@It@K`@Gh@K~@SpA_@HEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.7495648,\"lng\":-73.7402243},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":713},\"duration\":{\"text\":\"1 min\",\"value\":39},\"end_location\":{\"lat\":40.6862097,\"lng\":-73.7259371},\"html_instructions\":\"Take exit <b>25A</b> on the <b>left</b> for <b>Southern State Pkwy E</b> toward <b>Eastern Long Is</b>\",\"maneuver\":\"ramp-left\",\"polyline\":{\"points\":\"aejwF`w~`MNK@A@?@AB?JCTEXILEVILEPIPIVMb@W`@[NM`@]dBiBh@k@BAp@s@ZQTOTIXI\\\\E\\\\A\\\\?^D^FJBPHJHJHHHFHDHBDDNDT@H@H@N?LALANCPCJEJGNILIJGDGDGBIBG@G@E?KASEMCQEK?IB\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.1 mi\",\"value\":3423},\"duration\":{\"text\":\"2 mins\",\"value\":139},\"end_location\":{\"lat\":40.6821461,\"lng\":-73.6912124},\"html_instructions\":\"Continue onto <b>Southern State Pkwy</b>\",\"polyline\":{\"points\":\"yoiwFbr~`MYOOKWO_@YYYa@c@SYQ_@MY]w@Wo@Oe@W}@GWWuAQmAMw@Gq@C_@C[AY?m@?e@@[@YB[@YD[BYFYD]DSTcA^mAl@iCF[d@}BNw@f@uDLqAPoBNmBFiADUDS?SBOJs@XsA|@aDvBqGvEqNd@wAJWTm@Xq@Vm@Xk@\\\\q@t@oANU\\\\i@n@{@l@y@n@y@p@_A\\\\c@l@y@^g@|@oAp@{@^g@t@cARYNU\\\\a@NWRYHKNYVe@BEHSJYHSL_@Pm@H]FUF[F[F]D]Fc@Dm@Fs@B[@W?K@U@Y?e@?sBAkBE}@KmAc@_CWw@Wq@g@aAy@uAy@uA[g@O[Yg@Ym@Wo@Sk@M[So@So@Qq@[qAU}@Su@uAsF\"},\"start_location\":{\"lat\":40.6862097,\"lng\":-73.7259371},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":159},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.682341,\"lng\":-73.68938},\"html_instructions\":\"Take exit <b>15</b> for <b>Corona Ave</b> toward <b>Franklin Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"mvhwF`yw`MBC@C@C@E?EAEAIKy@C[?GCo@C[C[KwACg@\"},\"start_location\":{\"lat\":40.6821461,\"lng\":-73.6912124},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":304},\"duration\":{\"text\":\"1 min\",\"value\":68},\"end_location\":{\"lat\":40.682831,\"lng\":-73.6858376},\"html_instructions\":\"Continue straight onto <b>Blakeman Dr</b>\",\"maneuver\":\"straight\",\"polyline\":{\"points\":\"swhwFrmw`MM_BGg@Ea@CU_@wFQ}BAYMsB\"},\"start_location\":{\"lat\":40.682341,\"lng\":-73.68938},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2381},\"duration\":{\"text\":\"5 mins\",\"value\":283},\"end_location\":{\"lat\":40.702805,\"lng\":-73.678862},\"html_instructions\":\"Turn <b>left</b> onto <b>Franklin Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"uzhwFnwv`Me@CWAcB?s@AgACE?m@Cw@E}@E_@A_@@y@Dc@HUFi@LqBh@ODMBQBKB_@B]BU?W@]CGEAAUAq@I_@K[ISG{@Ys@Y}@YaA_@e@Q_Ac@e@SCCIEeAc@wBcAeAi@cAe@gBy@_Aa@WOMEo@Y[McBq@MB}@USGMAWEYEQCkAKmD_@u@Ge@E]EYEYGe@MyA[{@MaAMgC[OCwBW]Eg@E]GUEUIMEMI]SKKQOw@cAgBeCCImAeBIM}BcD\"},\"start_location\":{\"lat\":40.682831,\"lng\":-73.6858376},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":473},\"duration\":{\"text\":\"1 min\",\"value\":60},\"end_location\":{\"lat\":40.7027252,\"lng\":-73.6732863},\"html_instructions\":\"Turn <b>right</b> onto <b>Fenworth Blvd</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"owlwFzku`MKMFqHBuDDqDBwD@qD@gA\"},\"start_location\":{\"lat\":40.702805,\"lng\":-73.678862},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[],\"stop\":{\"latitude\":\"40.70249800000001\",\"longitude\":\"-73.673299\",\"type\":\"dropoff\"}},{\"distance\":{\"text\":\"1 ft\",\"value\":0},\"duration\":{\"text\":\"1 min\",\"value\":0},\"end_address\":\"897 Fenworth Blvd, Franklin Square, NY 11010, USA\",\"end_location\":{\"lat\":40.7027252,\"lng\":-73.6732863},\"start_address\":\"897 Fenworth Blvd, Franklin Square, NY 11010, USA\",\"start_location\":{\"lat\":40.7027252,\"lng\":-73.6732863},\"steps\":[{\"distance\":{\"text\":\"1 ft\",\"value\":0},\"duration\":{\"text\":\"1 min\",\"value\":0},\"end_location\":{\"lat\":40.7027252,\"lng\":-73.6732863},\"html_instructions\":\"Head on <b>Fenworth Blvd</b>\",\"polyline\":{\"points\":\"awlwF`it`M\"},\"start_location\":{\"lat\":40.7027252,\"lng\":-73.6732863},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[],\"stop\":{\"latitude\":\"40.70249800000001\",\"longitude\":\"-73.673299\",\"type\":\"dropoff\"}}],\"overview_polyline\":{\"points\":\"yuqwFlyz`MdAdEuAqK{Ey_@wFqd@kS_~AsBkNkF}MoSsi@mV}o@eCmGoAeGxIyH`UoQfFwD`AkCmCqYc@}DkA^jA_@b@|D~@|IVrDb@dEDdAhAPhBL`XbGtBx@}@vF{AtDlBDf[LfNA?vEAlLAvMCzZChg@Eb_A?re@|MtBzZ`EnOyCnSvG|SvD`Cj@VpBtAvJvAtNGzKiBnj@g@zGb@lBiAhAa@nJQxF]dMv@bHX|J_ArQeLlk@uFtUaCbAy@qB`HwEtFeBfMq@p~@_Bvs@gAfOcAjN`@f]jRdM~LzQ|Olb@vWpItHrBnEjAzFu@~Zg@ndA_HbsAj@xx@dDl|@y@fM?de@]fDwEhE_\\\\h@uO`EmxAfk@{D~@yHtER`AhB`KhGaCmBuIxBcAx@w@hOmItaAw_@vViHjVBnP`BpNzBdCeBhAsDSsFaCmDmIqF_CuEmAaSyDsdAiAibAvG}pAf@mk@|@uu@gA}HeC}EuKsJ_`@eVa\\\\{YyQuLwQ}KqGeGwCAoHfGoFtCoWr@inAjBsUj@{FxAaHfCqKzAaLoAwP{LwHuDaMwEw@aBsDJy@UwAcIwE_XwFkq@cJus@qCgUu@yBo]jJ@fErB|OpG`g@vDbb@lBfb@o@lJwEo@aI_AoH`CcRtH{IfKsO`_@mNjV{LjNmIhNaKzNgKfIkD~A}C_AKsDnAs@nEbExIxOlEnLjClUbIbd@pJf_@dHp_@vFtO~Gxr@nYt_B|@|MgBj~A}@rMuFfWqKbe@iFl}@TfM~DvPvYzx@bIzg@pO|v@xPhw@bLne@fCvb@rHjSlFfRXjKwB~g@oCjXsNd]_Ors@qDlGaJvI^fLxFnH|SvLhP~QnEjInGp]zHpR`Wze@xL~UdGzJzCfE~BvCAdFp@dAq@eAi@aLqOsUm`@et@}I_S_DePoEoRiFqHkPkQ_PsK_AgHvEa]jN}q@rOsYzBqLbDmu@cAcX_LkXwB}Ku@oRw@aKuFoS_Nep@aXqqAoHae@}[s}@gCcOtAug@lCm_@|P_u@|BcSx@yl@n@sk@g@oS_H_`@gM}r@{Gop@{BmOiHqT_Ner@{EyNcGea@kBkQmD_KeEgJAgCfI_LvRg\\\\zWo]jSmf@vJsLfOyFbMqAhOjA|n@dI~VdGvQbNzIdClK]pQqFf`@yArwAcCtI{@nM_KpEH~@|AiAvDaBM{DyC}CsJq@aJpFq[fAgMzNke@hRoYpHqMnAwPw@wJqCaGsEgJ_FiUq@wJ{@mLmAsCiLWmIzAoDFiG_B_ZqMyUyDcVqEwKiOXka@\"},\"summary\":\"Jericho Turnpike\",\"warnings\":[],\"waypoint_order\":[0,1,2,3,4,5,6]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"0d5f59fb-b94f-49f3-b48d-40d585ff6885"},{"name":"Geocoding","id":"2e336894-1c46-40f4-af7f-1af0386399fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/location/geo?address=837 jersey ave jersey city nj","urlObject":{"path":["location","geo"],"host":["{{host}}"],"query":[{"key":"address","value":"837 jersey ave jersey city nj"},{"disabled":true,"key":"maps_data_format","value":"here_maps"},{"disabled":true,"key":"override_adapter","value":"google_maps"},{"disabled":true,"key":"override_adapter","value":"here_maps"},{"disabled":true,"key":"countryFocus","value":"USA"}],"variable":[]}},"response":[{"id":"8f7ac9f1-15ec-441b-b19b-1eb3bb3a7ed1","name":"Multiple Stops","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?origin=169 grange street, franklin square ny&destination=390 metropolitan ave, brooklyn ny&waypoints=optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"origin","value":"169 grange street, franklin square ny"},{"key":"destination","value":"390 metropolitan ave, brooklyn ny"},{"key":"waypoints","value":"optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"19792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 14 Jul 2017 20:33:00 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"4d50-lJsgQV89afgR1l+sPqnzbzwraJ4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500064380997144","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ATVpbf1cRC0QEosrtcIsVEPOn4Cja5a3X.L7WpJEMLRaqsmCtLI3k0w39S6p6hlSsHTZgI1bo8sco","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"geocoded_waypoints\":[{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJA8i4uyVjwokRJ9S5kKEVU44\",\"types\":[\"premise\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJcbQT1ltiwokRdt6BWSHC_G0\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJsdUw6zRnwokRA2KesL5h97s\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJmdrtHl9ZwokR1sv9Yomflyw\",\"types\":[\"premise\"]}],\"routes\":[{\"bounds\":{\"northeast\":{\"lat\":40.7438783,\"lng\":-73.66746549999999},\"southwest\":{\"lat\":40.6655454,\"lng\":-73.95531129999999}},\"copyrights\":\"Map data ©2017 Google\",\"legs\":[{\"distance\":{\"text\":\"3.2 mi\",\"value\":5174},\"duration\":{\"text\":\"14 mins\",\"value\":815},\"end_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"start_address\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"steps\":[{\"distance\":{\"text\":\"0.2 mi\",\"value\":395},\"duration\":{\"text\":\"1 min\",\"value\":64},\"end_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"html_instructions\":\"Head <b>north</b> on <b>Grange St</b> toward <b>Benris Ave</b>\",\"polyline\":{\"points\":\"qzlwFpes`MuGKoLO\"},\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":719},\"duration\":{\"text\":\"3 mins\",\"value\":150},\"end_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"html_instructions\":\"Turn <b>left</b> onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wpmwFtds`MA~ACrAAhAETErAC`BEvAEzAEhA?@?JGvADPAf@Al@GlAA\\\\Ex@C^E|@?JAJCl@Cj@E`AAXE`AEt@I|AG~A\"},\"start_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"440 ft\",\"value\":134},\"duration\":{\"text\":\"1 min\",\"value\":29},\"end_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"html_instructions\":\"Turn <b>right</b> onto <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"qtmwFryt`MUWw@Q_ASwAY\"},\"start_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":539},\"duration\":{\"text\":\"1 min\",\"value\":62},\"end_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"html_instructions\":\"Slight <b>left</b> to stay on <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-slight-left\",\"polyline\":{\"points\":\"w{mwFzvt`MMBI@I@OBoCr@oCt@kCt@SF{@VC?UFQD_@Ja@Hi@JO@M?cAPs@JoAT\"},\"start_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.7 mi\",\"value\":2770},\"duration\":{\"text\":\"6 mins\",\"value\":351},\"end_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"html_instructions\":\"Turn <b>left</b> onto <b>Tulip Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cynwFl`u`M?N?PA^KzEEpBA|@Ab@CZATE^Ej@[pDMrA[jDAXCRAJCJAHCFADCFELe@hAk@tAWl@Uf@aAzBITQZIPEFEFCDCDKLOPW^UXc@j@}@jASVQVKLILQXINILYj@aAbBk@fAyAhC]p@OTOVIJGNQd@Sh@[|@GJ]pAm@hB[z@ENoAtDyAfEKZg@xAeA|Cw@|Bo@pBO`@eAzCcAzCcAzCIT{@dCcAzCeAzCcA|CKZw@zBw@hC{@vCaA`DGTSt@[hA\"},\"start_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"413 ft\",\"value\":126},\"duration\":{\"text\":\"1 min\",\"value\":26},\"end_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"html_instructions\":\"Turn <b>right</b> onto <b>Tyson Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"ubqwFfqz`MUy@E]m@aE\"},\"start_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":335},\"duration\":{\"text\":\"2 mins\",\"value\":91},\"end_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"html_instructions\":\"Turn <b>left</b> onto <b>S Tyson Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"_eqwFlhz`Mm@NiCt@WHe@HaAXeCn@{@TiAZ\"},\"start_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":156},\"duration\":{\"text\":\"1 min\",\"value\":42},\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"html_instructions\":\"Turn <b>left</b> onto <b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cwqwFboz`MYHd@tDTbBFd@\"},\"start_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"10.6 mi\",\"value\":17066},\"duration\":{\"text\":\"20 mins\",\"value\":1176},\"end_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"start_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"1.0 mi\",\"value\":1620},\"duration\":{\"text\":\"4 mins\",\"value\":219},\"end_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"html_instructions\":\"Head <b>west</b> on <b>Jericho Turnpike</b> toward <b>Brokaw Ave</b>\",\"polyline\":{\"points\":\"yuqwFlyz`MHj@Nz@TnBf@lDTxAHn@Hl@f@tD?XT~CNlBHzADd@BZPhCPlCTrDDl@PdCHbBFz@D\\\\Hr@ZtB\\\\rBDTlArGb@`CJn@F\\\\FXDZFZ^zBLt@ZhB?@DPLl@TdBZnBPt@XnAXnA\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"420 ft\",\"value\":128},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"html_instructions\":\"Continue onto <b>Jamaica Ave</b>\",\"polyline\":{\"points\":\"o}pwFxl~`MHb@VnAPv@b@hB\"},\"start_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"184 ft\",\"value\":56},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"html_instructions\":\"Turn <b>left</b> onto <b>241st St</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wzpwFnu~`MRGTGt@W\"},\"start_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.4 mi\",\"value\":3886},\"duration\":{\"text\":\"3 mins\",\"value\":173},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Slight <b>left</b> to merge onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"wwpwFft~`MP[FKFMBKDKDODMDMFKFKDGDEDEDEFEDCDCFCLCPC^A@?BAPCfCd@hB`@fAZXJVHTJh@TTLFBFDHDXLl@`@p@b@@@j@^f@^l@h@`@^pAhAbA~@r@l@d@\\\\RLJF\\\\PdAb@l@Tj@Ph@NTFz@Th@HT@TB|@DT?z@AbAGz@Gp@It@K`@Gh@K~@SpA_@HEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":519},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"html_instructions\":\"Take the <b>Brooklyn</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"aejwF`w~`Mb@?VAZATAXCdAIzC]tAKHAfAEJ?vACfD@jABD?FAh@?\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2090},\"duration\":{\"text\":\"1 min\",\"value\":86},\"end_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"html_instructions\":\"Continue onto <b>Belt Pkwy</b>/<b>Laurelton Pkwy</b>\",\"polyline\":{\"points\":\"_hiwFzt~`Mf@At@F`BVt@Pp@TbAb@vBhAlFvCrEtC|DjCb@Zh@d@PP@@xBlBRT|A|Az@|@~AdB|@r@fGzFvAjAf@d@f@`@jBvA@??@DDdAp@^Vj@\\\\fXvPtA|@\"},\"start_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4588},\"duration\":{\"text\":\"4 mins\",\"value\":213},\"end_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_bfwFf_aaMPBdAn@NH~@n@|@r@~@z@f@f@RPTTp@z@FFFJHNFJJPJTj@|ALXFRL\\\\BFDJNj@Nt@Hr@@^?`@Av@UxHYdKCn@?P?P?P?P?NGvG?rG?hA?fL@nF@zB?tJEbBErAIjBIlA?@CXCd@KhBKtBGt@_Crb@SzDOpCGdAWxEWvEIjAErAEr@E~ACxAIjDCpCApA?z@@dH@jABnAL|H?ZAPRlHJxC?R@T@LB~@BjAP~FR|Cd@zK\\\\`HLdCHnARdEHxC@d@B~@FbB\"},\"start_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":802},\"duration\":{\"text\":\"1 min\",\"value\":47},\"end_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"html_instructions\":\"Take exit <b>19</b> toward <b>Van Wyck Expy</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"usewFrekaMGBA??@A?A@?@?BAB?H?N?TA`@AXAXGr@Gx@Ir@Ej@I`AEd@Cd@APCZ?NAf@?DCLBlBBbC?h@@vGBlH?\\\\?N@`A?rA?t@ANAPCPALELENGPKN\"},\"start_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":522},\"duration\":{\"text\":\"1 min\",\"value\":30},\"end_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Interstate 678 N</b>/<b>Van Wyck Expwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"ewewF~_maMSRGHMLs@n@e@`@m@f@YRSJUHWFa@FO@uAGiBGsACkACm@Ao@?eA?u@@\"},\"start_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":1034},\"duration\":{\"text\":\"1 min\",\"value\":58},\"end_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>I-678 N</b>/<b>Van Wyck Expy</b>/<b>Bronx</b> and merge onto <b>I-678 N</b>/<b>Van Wyck Expy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_sfwFhfmaM}CP{@DW@OB[B[Ba@Hc@Hc@Jq@Nk@REBEBGHa@Fe@Jq@Ts@TcA^sEfBkE`BWHu@V?@g@PeC~@cBl@cFnB\"},\"start_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":259},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"html_instructions\":\"Take exit <b>3</b> toward <b>Linden Blvd</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"kjhwFb|maMY@gCp@SDE@KBOBIBG?m@H{ARe@FIBA?A?A@AA[A\"},\"start_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":569},\"duration\":{\"text\":\"1 min\",\"value\":76},\"end_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"html_instructions\":\"Merge onto <b>Van Wyck Expy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"sxhwFr_naMYJ}Al@eDvAYH{CjAqDlBkHjD\"},\"start_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":236},\"duration\":{\"text\":\"1 min\",\"value\":67},\"end_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"html_instructions\":\"Turn <b>left</b> onto <b>109th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"eviwFtonaMRv@@DBNFV@@Pt@|@rDx@jD\"},\"start_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":185},\"duration\":{\"text\":\"1 min\",\"value\":31},\"end_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"html_instructions\":\"Turn <b>right</b> at the 3rd cross street onto <b>134th St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"wpiwFr_oaMuH|C\"},\"start_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":241},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"html_instructions\":\"Turn <b>left</b> at the 1st cross street onto <b>107th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"mziwFpdoaMn@nDl@~Cn@bDJ`@\"},\"start_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":240},\"duration\":{\"text\":\"1 min\",\"value\":40},\"end_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Van Siclen St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"suiwFfuoaMwAEm@A{GKC?C?E?\"},\"start_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"299 ft\",\"value\":91},\"duration\":{\"text\":\"1 min\",\"value\":21},\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"html_instructions\":\"<b>Van Siclen St</b> turns slightly <b>left</b> and becomes <b>132nd St</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"polyline\":{\"points\":\"ccjwFrtoaM[L}@\\\\e@PYL\"},\"start_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"11.5 mi\",\"value\":18481},\"duration\":{\"text\":\"28 mins\",\"value\":1659},\"end_address\":\"390 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"start_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"steps\":[{\"distance\":{\"text\":\"210 ft\",\"value\":64},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"html_instructions\":\"Head <b>north</b> on <b>132nd St</b> toward <b>Liberty Ave</b>\",\"polyline\":{\"points\":\"}gjwF~voaMC?eBv@\"},\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":363},\"duration\":{\"text\":\"2 mins\",\"value\":143},\"end_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"html_instructions\":\"Turn <b>right</b> onto <b>Liberty Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"gkjwFvxoaMyAaCs@oAOi@GSg@cDe@uC@]Ku@?A?ACOEUKo@\"},\"start_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"121 ft\",\"value\":37},\"duration\":{\"text\":\"1 min\",\"value\":12},\"end_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"html_instructions\":\"Turn <b>left</b> onto <b>Van Wyck Expy</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"{sjwF~`oaMUJMFYL\"},\"start_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":219},\"duration\":{\"text\":\"1 min\",\"value\":25},\"end_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"html_instructions\":\"Slight <b>left</b> onto the <b>Route 678</b> ramp\",\"polyline\":{\"points\":\"yujwF`boaMGN?BEDEDCBGDIFOHqAn@A?aCjAIBGDKHIHEBA@UV\"},\"start_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.6 mi\",\"value\":5790},\"duration\":{\"text\":\"6 mins\",\"value\":348},\"end_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"html_instructions\":\"Merge onto <b>I-678 N</b> (signs for <b>Route 678</b>)\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"o`kwFtioaMEBIDc@PoAn@m@Zq@X}@b@eB|@yBnA_@Tq@Za@TSLC@u@^i@XaAd@kAf@YLaBv@gChAuAh@QDk@RaA\\\\w@\\\\_GtBKDiDlAu@ZwAd@G@w@XiAb@mBx@qCnAk@ZGBkCpAEB}At@MHo@^y@`@EDIDKBmA`@iAp@uAp@ULuA|@cBlAq@p@ONOR_@d@}DnFORONUXQRONQPMLONSPQLCBKHMJm@`@OJKL[T]\\\\IFIFMJOHcAn@QJQJSLSNUPSNa@ZUPoA`AQLSLSLSLWLQH[LWHQFUFQDUDUDU@UBUBU@U?U@U?WAS?UAYCUAiBOSAWASAU?WAU?U?UAS?W@W@Q@WBUBUDSDUDUFQFUFUHEBMFSHSJwBhAoAj@e@TSHSJUHSJQJQLOJUNONQLSPONSNQPQRQPOPQROPOPORSVKNORQVOTMRMTMTMRMTkBbDWd@U\\\\SVQVORSRONSROLSNOLSNSJSLQJSJQHUJUJSH}NfGm@VuCjAiKlEYNy@\\\\{@\\\\]NSF[Ji@NMBc@J_@Fi@FMBM@K@Q@kBHqFPG?aBFiAFe@D]DWBm@J}AT}@P}Cp@qB\\\\A@A?E?WFWD\"},\"start_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":866},\"duration\":{\"text\":\"3 mins\",\"value\":157},\"end_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"html_instructions\":\"Take exit <b>12B</b> for <b>Interstate 495 W</b>/<b>Long Is Expwy</b> toward <b>Midtown Tun</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"agtwFnjtaMSDgAFG@E?U@M@OAM?QCSEa@QIGA?SMYU?AYY?Ac@[QESEQAS@A?KBIBA?GBSLSRKR?@ABITG^CT?Z@TBTBNDLN^FPfAnCLf@Zt@@D?@pCzGzBtFJVDNFJDHDD?@RR\"},\"start_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.4 mi\",\"value\":5456},\"duration\":{\"text\":\"4 mins\",\"value\":268},\"end_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"html_instructions\":\"Merge onto <b>I-495 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"citwF`kuaMx@zBx@xBt@nBpAdDDH?@BFJX@B@BJV@D@BJV@D\\\\|@|BdGJV?@BDj@xA~@tCh@fBb@|AfAhEPt@\\\\`BTlA?@PdARrADVJ~@VvBNpBJbAHx@RbBXdBPdAj@zCfAvFVhA?B@@@Ft@tDf@bCd@xBl@xCh@jCDNDRpB|Jb@bCBPFRF^fArEbAhEXnABJ@DHZ?@@BDP?@@DJ^?@H`@@?DRPt@?BFVRx@Px@r@lDZtA?@Nv@VnAl@tCdBvIb@rBn@~C^hBVlAPr@Pr@ZjAh@dB?@h@`Bp@|BRr@Pp@Nt@Lp@Lx@Ht@Hv@Ft@Dt@FlABn@?@@p@`@|KDv@Dv@Fv@Ht@Jv@Jv@Nv@Nr@Np@JZHVJ\\\\FVHRL\\\\P`@Rd@Vh@Vf@j@jAZp@b@x@Vf@Vf@Tf@Rb@Pf@Tp@Nb@Lb@J^F\\\\H^Lj@Hd@Hl@Fd@Dd@D`@Df@Dl@Bz@Bt@@x@?t@Ap@Aj@Cr@Cf@Cj@q@tOSjFSlEOzC[nH\"},\"start_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2375},\"duration\":{\"text\":\"5 mins\",\"value\":311},\"end_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"html_instructions\":\"Take exit <b>17W</b> toward <b>Brooklyn</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"eiqwFxaabMSrBCb@E`@CXEXE`@ETG\\\\E\\\\GXETGZIVGZIXIXIVGVKXIXKVIVKVKXKTITKTQ`@S`@g@bA]j@MTMTMVMVMVKVKVKVeA|BMXQ^KXEPIXMZKXMXIPKVKXKTIVKVIXIVIVI\\\\GXGZGREVEVGXETEXsAzIEXGZGZgAdG_BvIEVGZGXGVIZIZIXIXIVIXKVITIRENINGLGJEFGHEFGFe@VQJOLQLQNSLQNsBtAQNIFUPOLSRMRMRKTMXGRCJENE\\\\E`@AXA^?^?V@XDd@D\\\\DXFTFXHVJXJVJVLTLRLTLRNRNRPRLNNPPNPPPLPNPLPLRLRJTLTLRLRJb@L\"},\"start_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2534},\"duration\":{\"text\":\"4 mins\",\"value\":211},\"end_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"html_instructions\":\"Merge onto <b>I-278 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"unrwFxqebMVN`E|BhAn@|@h@x@f@FD\\\\Th@^\\\\V`Az@v@x@nApArA~AZ^V^VZTXPRPTb@n@JLPRVZLP?@LNBDRVZb@DFDHLPZj@Td@Tj@@BLZDHDNNZRp@Nh@VdAHd@DTDTF\\\\BNBNx@zEF^F`@BHr@hEj@lDRbAPf@JXJ\\\\v@`B`AxBx@hBhAfC`@z@f@|@lCdEbA`BvBlErArC|A~CzDvHrAdCzBfE\\\\n@\"},\"start_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":415},\"duration\":{\"text\":\"1 min\",\"value\":59},\"end_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"html_instructions\":\"Take exit <b>32B</b> toward <b>Metropolitan Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"suowFn~ibM?BAB@D?D@B?B@@Td@`@t@\\\\l@p@pAf@~@Vf@`@r@f@|@j@~@l@~@v@jA^h@HN?B@B@L\"},\"start_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":210},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"html_instructions\":\"Merge onto <b>Meeker Ave</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}fowF~ujbMl@z@hBxBlBzBPZ\"},\"start_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"499 ft\",\"value\":152},\"duration\":{\"text\":\"1 min\",\"value\":45},\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"e~nwFl`kbM?fDA|@?dA@p@?H\"},\"start_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]}],\"overview_polyline\":{\"points\":\"qzlwFpes`MeU[ErDG~AItDQ~FGbBBx@QrEKtBm@jNUWw@QwCm@q@JgPlE{Bb@uEr@[lOyA`QKh@q@dBgErJ{BxCoBhCo@dAiHlMiA|CoBbGqKp[mLh]_E~LyCdK[hAUy@s@_FuFxAmIzBYHd@tD\\\\hCvAdKpAlJ|A|Uv@jMr@bGvDbTzB~M`BdIvAtGh@Ot@WP[NYHWXw@X_@XSTGp@EDAPCfCd@pD|@p@T|Ar@xAz@fCdBdFrExB`B|D|AdDv@~BJ~BIlBQ`Es@bDgA~Ao@vCcA~Bi@vC[dIMn`@m@t\\\\o@t^i@`JQfEEbBI`Iu@rAE~FAbC@|ADvCh@tBx@dJ`FpK`HlA`A`DvCvHtHnLnKrB~Ax\\\\~StA|@PBtAx@|BbBfBbBbBjBd@x@lA`Df@|AXhB@`Au@fX?fAGdSBhc@_@pJCZoEby@_ApQYxKCdQRtNh@|ShBza@VtE\\\\~IDdBFbBGBA@C@ARC`Bu@tJGdBBdGFhZI`A_@~@}AzAaChB_BZ_JWyE?aG\\\\}BZgCr@MLgAR}JrDoWtJ{Dz@m@JaEh@[AYJcGdCuDtA}MxG`@dBjCvKuH|Cn@nD|AbIJ`@wAEiIMi@LaC|@eBv@yAaCcAyBo@wDe@uC@]Kw@?AUuAc@RYLGNEHIHsBfAuCtAcAz@sEvB}HfEkB`AmFfCyIxDwDtAmUjIkHdDwFnC}BpAUHmA`@iAp@kB~@yDjCqBzBsFlHaAbAqCvBoAhAkBlAmDdCiCjByAr@qA^wAPwAFwACgG]uAAyAHuATsA`@}HvDoAl@gAx@oChCcC~CyEhIkA`BgAdAkAx@kAn@ed@jRgDrAwBj@eBT{J^yETaEj@wIbBkCZq@DcAKaAg@s@s@u@a@e@GU@WF[P_@f@Sz@Cp@Dj@X|@xB~FnGxO^|@DFRRx@zBnBhFvAnDPf@^bAfD|IxC|IzC~Lz@hFx@`IbAfIvEfVfIha@~EbTvF~WxEtUvA`GdCfIbAlEh@|EPtDh@fOb@|Ez@tEh@hB|@xBvBnEhBpDjA`Dj@`Ch@dDV|CH`FKxD}Az^k@jMWvCUvB{@pEqAfEgCzF{BnEqBnEi@`B}A|DeAhEcCnOyEzVmAvD_@p@{@p@qFzDcAz@u@vAWlAIzBLtB^`Bp@~Ax@pA~@hAfA~@~CjBz@\\\\jGlD|ClBfAv@xBtBbDpDr@~@pA~AxAlBzAvBtAnCZx@jA|DTpApCnP~@pF\\\\`A~DbJjBbEtDbGzDnHpDrHhLtT?RrDdHlCxEnCdE@F@Ll@z@vEtFPZ?fDAbC@z@\"},\"summary\":\"Tulip Ave\",\"warnings\":[],\"waypoint_order\":[1,0]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"2e336894-1c46-40f4-af7f-1af0386399fc"},{"name":"Reverse Geocoding","id":"d1509ca9-8298-4a65-bf84-add72a74e8c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/location/geo?latlng=40.70327150000001,-73.667351","urlObject":{"path":["location","geo"],"host":["{{host}}"],"query":[{"key":"latlng","value":"40.70327150000001,-73.667351"}],"variable":[]}},"response":[{"id":"4eb0f2b2-f7de-46be-93be-d5553c8351c9","name":"Multiple Stops","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?origin=169 grange street, franklin square ny&destination=390 metropolitan ave, brooklyn ny&waypoints=optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"origin","value":"169 grange street, franklin square ny"},{"key":"destination","value":"390 metropolitan ave, brooklyn ny"},{"key":"waypoints","value":"optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"19792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 14 Jul 2017 20:33:00 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"4d50-lJsgQV89afgR1l+sPqnzbzwraJ4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500064380997144","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ATVpbf1cRC0QEosrtcIsVEPOn4Cja5a3X.L7WpJEMLRaqsmCtLI3k0w39S6p6hlSsHTZgI1bo8sco","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"geocoded_waypoints\":[{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJA8i4uyVjwokRJ9S5kKEVU44\",\"types\":[\"premise\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJcbQT1ltiwokRdt6BWSHC_G0\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJsdUw6zRnwokRA2KesL5h97s\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJmdrtHl9ZwokR1sv9Yomflyw\",\"types\":[\"premise\"]}],\"routes\":[{\"bounds\":{\"northeast\":{\"lat\":40.7438783,\"lng\":-73.66746549999999},\"southwest\":{\"lat\":40.6655454,\"lng\":-73.95531129999999}},\"copyrights\":\"Map data ©2017 Google\",\"legs\":[{\"distance\":{\"text\":\"3.2 mi\",\"value\":5174},\"duration\":{\"text\":\"14 mins\",\"value\":815},\"end_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"start_address\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"steps\":[{\"distance\":{\"text\":\"0.2 mi\",\"value\":395},\"duration\":{\"text\":\"1 min\",\"value\":64},\"end_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"html_instructions\":\"Head <b>north</b> on <b>Grange St</b> toward <b>Benris Ave</b>\",\"polyline\":{\"points\":\"qzlwFpes`MuGKoLO\"},\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":719},\"duration\":{\"text\":\"3 mins\",\"value\":150},\"end_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"html_instructions\":\"Turn <b>left</b> onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wpmwFtds`MA~ACrAAhAETErAC`BEvAEzAEhA?@?JGvADPAf@Al@GlAA\\\\Ex@C^E|@?JAJCl@Cj@E`AAXE`AEt@I|AG~A\"},\"start_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"440 ft\",\"value\":134},\"duration\":{\"text\":\"1 min\",\"value\":29},\"end_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"html_instructions\":\"Turn <b>right</b> onto <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"qtmwFryt`MUWw@Q_ASwAY\"},\"start_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":539},\"duration\":{\"text\":\"1 min\",\"value\":62},\"end_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"html_instructions\":\"Slight <b>left</b> to stay on <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-slight-left\",\"polyline\":{\"points\":\"w{mwFzvt`MMBI@I@OBoCr@oCt@kCt@SF{@VC?UFQD_@Ja@Hi@JO@M?cAPs@JoAT\"},\"start_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.7 mi\",\"value\":2770},\"duration\":{\"text\":\"6 mins\",\"value\":351},\"end_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"html_instructions\":\"Turn <b>left</b> onto <b>Tulip Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cynwFl`u`M?N?PA^KzEEpBA|@Ab@CZATE^Ej@[pDMrA[jDAXCRAJCJAHCFADCFELe@hAk@tAWl@Uf@aAzBITQZIPEFEFCDCDKLOPW^UXc@j@}@jASVQVKLILQXINILYj@aAbBk@fAyAhC]p@OTOVIJGNQd@Sh@[|@GJ]pAm@hB[z@ENoAtDyAfEKZg@xAeA|Cw@|Bo@pBO`@eAzCcAzCcAzCIT{@dCcAzCeAzCcA|CKZw@zBw@hC{@vCaA`DGTSt@[hA\"},\"start_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"413 ft\",\"value\":126},\"duration\":{\"text\":\"1 min\",\"value\":26},\"end_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"html_instructions\":\"Turn <b>right</b> onto <b>Tyson Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"ubqwFfqz`MUy@E]m@aE\"},\"start_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":335},\"duration\":{\"text\":\"2 mins\",\"value\":91},\"end_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"html_instructions\":\"Turn <b>left</b> onto <b>S Tyson Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"_eqwFlhz`Mm@NiCt@WHe@HaAXeCn@{@TiAZ\"},\"start_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":156},\"duration\":{\"text\":\"1 min\",\"value\":42},\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"html_instructions\":\"Turn <b>left</b> onto <b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cwqwFboz`MYHd@tDTbBFd@\"},\"start_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"10.6 mi\",\"value\":17066},\"duration\":{\"text\":\"20 mins\",\"value\":1176},\"end_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"start_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"1.0 mi\",\"value\":1620},\"duration\":{\"text\":\"4 mins\",\"value\":219},\"end_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"html_instructions\":\"Head <b>west</b> on <b>Jericho Turnpike</b> toward <b>Brokaw Ave</b>\",\"polyline\":{\"points\":\"yuqwFlyz`MHj@Nz@TnBf@lDTxAHn@Hl@f@tD?XT~CNlBHzADd@BZPhCPlCTrDDl@PdCHbBFz@D\\\\Hr@ZtB\\\\rBDTlArGb@`CJn@F\\\\FXDZFZ^zBLt@ZhB?@DPLl@TdBZnBPt@XnAXnA\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"420 ft\",\"value\":128},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"html_instructions\":\"Continue onto <b>Jamaica Ave</b>\",\"polyline\":{\"points\":\"o}pwFxl~`MHb@VnAPv@b@hB\"},\"start_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"184 ft\",\"value\":56},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"html_instructions\":\"Turn <b>left</b> onto <b>241st St</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wzpwFnu~`MRGTGt@W\"},\"start_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.4 mi\",\"value\":3886},\"duration\":{\"text\":\"3 mins\",\"value\":173},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Slight <b>left</b> to merge onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"wwpwFft~`MP[FKFMBKDKDODMDMFKFKDGDEDEDEFEDCDCFCLCPC^A@?BAPCfCd@hB`@fAZXJVHTJh@TTLFBFDHDXLl@`@p@b@@@j@^f@^l@h@`@^pAhAbA~@r@l@d@\\\\RLJF\\\\PdAb@l@Tj@Ph@NTFz@Th@HT@TB|@DT?z@AbAGz@Gp@It@K`@Gh@K~@SpA_@HEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":519},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"html_instructions\":\"Take the <b>Brooklyn</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"aejwF`w~`Mb@?VAZATAXCdAIzC]tAKHAfAEJ?vACfD@jABD?FAh@?\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2090},\"duration\":{\"text\":\"1 min\",\"value\":86},\"end_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"html_instructions\":\"Continue onto <b>Belt Pkwy</b>/<b>Laurelton Pkwy</b>\",\"polyline\":{\"points\":\"_hiwFzt~`Mf@At@F`BVt@Pp@TbAb@vBhAlFvCrEtC|DjCb@Zh@d@PP@@xBlBRT|A|Az@|@~AdB|@r@fGzFvAjAf@d@f@`@jBvA@??@DDdAp@^Vj@\\\\fXvPtA|@\"},\"start_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4588},\"duration\":{\"text\":\"4 mins\",\"value\":213},\"end_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_bfwFf_aaMPBdAn@NH~@n@|@r@~@z@f@f@RPTTp@z@FFFJHNFJJPJTj@|ALXFRL\\\\BFDJNj@Nt@Hr@@^?`@Av@UxHYdKCn@?P?P?P?P?NGvG?rG?hA?fL@nF@zB?tJEbBErAIjBIlA?@CXCd@KhBKtBGt@_Crb@SzDOpCGdAWxEWvEIjAErAEr@E~ACxAIjDCpCApA?z@@dH@jABnAL|H?ZAPRlHJxC?R@T@LB~@BjAP~FR|Cd@zK\\\\`HLdCHnARdEHxC@d@B~@FbB\"},\"start_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":802},\"duration\":{\"text\":\"1 min\",\"value\":47},\"end_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"html_instructions\":\"Take exit <b>19</b> toward <b>Van Wyck Expy</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"usewFrekaMGBA??@A?A@?@?BAB?H?N?TA`@AXAXGr@Gx@Ir@Ej@I`AEd@Cd@APCZ?NAf@?DCLBlBBbC?h@@vGBlH?\\\\?N@`A?rA?t@ANAPCPALELENGPKN\"},\"start_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":522},\"duration\":{\"text\":\"1 min\",\"value\":30},\"end_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Interstate 678 N</b>/<b>Van Wyck Expwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"ewewF~_maMSRGHMLs@n@e@`@m@f@YRSJUHWFa@FO@uAGiBGsACkACm@Ao@?eA?u@@\"},\"start_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":1034},\"duration\":{\"text\":\"1 min\",\"value\":58},\"end_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>I-678 N</b>/<b>Van Wyck Expy</b>/<b>Bronx</b> and merge onto <b>I-678 N</b>/<b>Van Wyck Expy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_sfwFhfmaM}CP{@DW@OB[B[Ba@Hc@Hc@Jq@Nk@REBEBGHa@Fe@Jq@Ts@TcA^sEfBkE`BWHu@V?@g@PeC~@cBl@cFnB\"},\"start_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":259},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"html_instructions\":\"Take exit <b>3</b> toward <b>Linden Blvd</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"kjhwFb|maMY@gCp@SDE@KBOBIBG?m@H{ARe@FIBA?A?A@AA[A\"},\"start_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":569},\"duration\":{\"text\":\"1 min\",\"value\":76},\"end_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"html_instructions\":\"Merge onto <b>Van Wyck Expy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"sxhwFr_naMYJ}Al@eDvAYH{CjAqDlBkHjD\"},\"start_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":236},\"duration\":{\"text\":\"1 min\",\"value\":67},\"end_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"html_instructions\":\"Turn <b>left</b> onto <b>109th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"eviwFtonaMRv@@DBNFV@@Pt@|@rDx@jD\"},\"start_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":185},\"duration\":{\"text\":\"1 min\",\"value\":31},\"end_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"html_instructions\":\"Turn <b>right</b> at the 3rd cross street onto <b>134th St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"wpiwFr_oaMuH|C\"},\"start_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":241},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"html_instructions\":\"Turn <b>left</b> at the 1st cross street onto <b>107th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"mziwFpdoaMn@nDl@~Cn@bDJ`@\"},\"start_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":240},\"duration\":{\"text\":\"1 min\",\"value\":40},\"end_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Van Siclen St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"suiwFfuoaMwAEm@A{GKC?C?E?\"},\"start_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"299 ft\",\"value\":91},\"duration\":{\"text\":\"1 min\",\"value\":21},\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"html_instructions\":\"<b>Van Siclen St</b> turns slightly <b>left</b> and becomes <b>132nd St</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"polyline\":{\"points\":\"ccjwFrtoaM[L}@\\\\e@PYL\"},\"start_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"11.5 mi\",\"value\":18481},\"duration\":{\"text\":\"28 mins\",\"value\":1659},\"end_address\":\"390 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"start_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"steps\":[{\"distance\":{\"text\":\"210 ft\",\"value\":64},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"html_instructions\":\"Head <b>north</b> on <b>132nd St</b> toward <b>Liberty Ave</b>\",\"polyline\":{\"points\":\"}gjwF~voaMC?eBv@\"},\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":363},\"duration\":{\"text\":\"2 mins\",\"value\":143},\"end_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"html_instructions\":\"Turn <b>right</b> onto <b>Liberty Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"gkjwFvxoaMyAaCs@oAOi@GSg@cDe@uC@]Ku@?A?ACOEUKo@\"},\"start_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"121 ft\",\"value\":37},\"duration\":{\"text\":\"1 min\",\"value\":12},\"end_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"html_instructions\":\"Turn <b>left</b> onto <b>Van Wyck Expy</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"{sjwF~`oaMUJMFYL\"},\"start_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":219},\"duration\":{\"text\":\"1 min\",\"value\":25},\"end_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"html_instructions\":\"Slight <b>left</b> onto the <b>Route 678</b> ramp\",\"polyline\":{\"points\":\"yujwF`boaMGN?BEDEDCBGDIFOHqAn@A?aCjAIBGDKHIHEBA@UV\"},\"start_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.6 mi\",\"value\":5790},\"duration\":{\"text\":\"6 mins\",\"value\":348},\"end_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"html_instructions\":\"Merge onto <b>I-678 N</b> (signs for <b>Route 678</b>)\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"o`kwFtioaMEBIDc@PoAn@m@Zq@X}@b@eB|@yBnA_@Tq@Za@TSLC@u@^i@XaAd@kAf@YLaBv@gChAuAh@QDk@RaA\\\\w@\\\\_GtBKDiDlAu@ZwAd@G@w@XiAb@mBx@qCnAk@ZGBkCpAEB}At@MHo@^y@`@EDIDKBmA`@iAp@uAp@ULuA|@cBlAq@p@ONOR_@d@}DnFORONUXQRONQPMLONSPQLCBKHMJm@`@OJKL[T]\\\\IFIFMJOHcAn@QJQJSLSNUPSNa@ZUPoA`AQLSLSLSLWLQH[LWHQFUFQDUDUDU@UBUBU@U?U@U?WAS?UAYCUAiBOSAWASAU?WAU?U?UAS?W@W@Q@WBUBUDSDUDUFQFUFUHEBMFSHSJwBhAoAj@e@TSHSJUHSJQJQLOJUNONQLSPONSNQPQRQPOPQROPOPORSVKNORQVOTMRMTMTMRMTkBbDWd@U\\\\SVQVORSRONSROLSNOLSNSJSLQJSJQHUJUJSH}NfGm@VuCjAiKlEYNy@\\\\{@\\\\]NSF[Ji@NMBc@J_@Fi@FMBM@K@Q@kBHqFPG?aBFiAFe@D]DWBm@J}AT}@P}Cp@qB\\\\A@A?E?WFWD\"},\"start_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":866},\"duration\":{\"text\":\"3 mins\",\"value\":157},\"end_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"html_instructions\":\"Take exit <b>12B</b> for <b>Interstate 495 W</b>/<b>Long Is Expwy</b> toward <b>Midtown Tun</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"agtwFnjtaMSDgAFG@E?U@M@OAM?QCSEa@QIGA?SMYU?AYY?Ac@[QESEQAS@A?KBIBA?GBSLSRKR?@ABITG^CT?Z@TBTBNDLN^FPfAnCLf@Zt@@D?@pCzGzBtFJVDNFJDHDD?@RR\"},\"start_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.4 mi\",\"value\":5456},\"duration\":{\"text\":\"4 mins\",\"value\":268},\"end_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"html_instructions\":\"Merge onto <b>I-495 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"citwF`kuaMx@zBx@xBt@nBpAdDDH?@BFJX@B@BJV@D@BJV@D\\\\|@|BdGJV?@BDj@xA~@tCh@fBb@|AfAhEPt@\\\\`BTlA?@PdARrADVJ~@VvBNpBJbAHx@RbBXdBPdAj@zCfAvFVhA?B@@@Ft@tDf@bCd@xBl@xCh@jCDNDRpB|Jb@bCBPFRF^fArEbAhEXnABJ@DHZ?@@BDP?@@DJ^?@H`@@?DRPt@?BFVRx@Px@r@lDZtA?@Nv@VnAl@tCdBvIb@rBn@~C^hBVlAPr@Pr@ZjAh@dB?@h@`Bp@|BRr@Pp@Nt@Lp@Lx@Ht@Hv@Ft@Dt@FlABn@?@@p@`@|KDv@Dv@Fv@Ht@Jv@Jv@Nv@Nr@Np@JZHVJ\\\\FVHRL\\\\P`@Rd@Vh@Vf@j@jAZp@b@x@Vf@Vf@Tf@Rb@Pf@Tp@Nb@Lb@J^F\\\\H^Lj@Hd@Hl@Fd@Dd@D`@Df@Dl@Bz@Bt@@x@?t@Ap@Aj@Cr@Cf@Cj@q@tOSjFSlEOzC[nH\"},\"start_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2375},\"duration\":{\"text\":\"5 mins\",\"value\":311},\"end_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"html_instructions\":\"Take exit <b>17W</b> toward <b>Brooklyn</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"eiqwFxaabMSrBCb@E`@CXEXE`@ETG\\\\E\\\\GXETGZIVGZIXIXIVGVKXIXKVIVKVKXKTITKTQ`@S`@g@bA]j@MTMTMVMVMVKVKVKVeA|BMXQ^KXEPIXMZKXMXIPKVKXKTIVKVIXIVIVI\\\\GXGZGREVEVGXETEXsAzIEXGZGZgAdG_BvIEVGZGXGVIZIZIXIXIVIXKVITIRENINGLGJEFGHEFGFe@VQJOLQLQNSLQNsBtAQNIFUPOLSRMRMRKTMXGRCJENE\\\\E`@AXA^?^?V@XDd@D\\\\DXFTFXHVJXJVJVLTLRLTLRNRNRPRLNNPPNPPPLPNPLPLRLRJTLTLRLRJb@L\"},\"start_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2534},\"duration\":{\"text\":\"4 mins\",\"value\":211},\"end_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"html_instructions\":\"Merge onto <b>I-278 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"unrwFxqebMVN`E|BhAn@|@h@x@f@FD\\\\Th@^\\\\V`Az@v@x@nApArA~AZ^V^VZTXPRPTb@n@JLPRVZLP?@LNBDRVZb@DFDHLPZj@Td@Tj@@BLZDHDNNZRp@Nh@VdAHd@DTDTF\\\\BNBNx@zEF^F`@BHr@hEj@lDRbAPf@JXJ\\\\v@`B`AxBx@hBhAfC`@z@f@|@lCdEbA`BvBlErArC|A~CzDvHrAdCzBfE\\\\n@\"},\"start_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":415},\"duration\":{\"text\":\"1 min\",\"value\":59},\"end_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"html_instructions\":\"Take exit <b>32B</b> toward <b>Metropolitan Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"suowFn~ibM?BAB@D?D@B?B@@Td@`@t@\\\\l@p@pAf@~@Vf@`@r@f@|@j@~@l@~@v@jA^h@HN?B@B@L\"},\"start_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":210},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"html_instructions\":\"Merge onto <b>Meeker Ave</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}fowF~ujbMl@z@hBxBlBzBPZ\"},\"start_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"499 ft\",\"value\":152},\"duration\":{\"text\":\"1 min\",\"value\":45},\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"e~nwFl`kbM?fDA|@?dA@p@?H\"},\"start_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]}],\"overview_polyline\":{\"points\":\"qzlwFpes`MeU[ErDG~AItDQ~FGbBBx@QrEKtBm@jNUWw@QwCm@q@JgPlE{Bb@uEr@[lOyA`QKh@q@dBgErJ{BxCoBhCo@dAiHlMiA|CoBbGqKp[mLh]_E~LyCdK[hAUy@s@_FuFxAmIzBYHd@tD\\\\hCvAdKpAlJ|A|Uv@jMr@bGvDbTzB~M`BdIvAtGh@Ot@WP[NYHWXw@X_@XSTGp@EDAPCfCd@pD|@p@T|Ar@xAz@fCdBdFrExB`B|D|AdDv@~BJ~BIlBQ`Es@bDgA~Ao@vCcA~Bi@vC[dIMn`@m@t\\\\o@t^i@`JQfEEbBI`Iu@rAE~FAbC@|ADvCh@tBx@dJ`FpK`HlA`A`DvCvHtHnLnKrB~Ax\\\\~StA|@PBtAx@|BbBfBbBbBjBd@x@lA`Df@|AXhB@`Au@fX?fAGdSBhc@_@pJCZoEby@_ApQYxKCdQRtNh@|ShBza@VtE\\\\~IDdBFbBGBA@C@ARC`Bu@tJGdBBdGFhZI`A_@~@}AzAaChB_BZ_JWyE?aG\\\\}BZgCr@MLgAR}JrDoWtJ{Dz@m@JaEh@[AYJcGdCuDtA}MxG`@dBjCvKuH|Cn@nD|AbIJ`@wAEiIMi@LaC|@eBv@yAaCcAyBo@wDe@uC@]Kw@?AUuAc@RYLGNEHIHsBfAuCtAcAz@sEvB}HfEkB`AmFfCyIxDwDtAmUjIkHdDwFnC}BpAUHmA`@iAp@kB~@yDjCqBzBsFlHaAbAqCvBoAhAkBlAmDdCiCjByAr@qA^wAPwAFwACgG]uAAyAHuATsA`@}HvDoAl@gAx@oChCcC~CyEhIkA`BgAdAkAx@kAn@ed@jRgDrAwBj@eBT{J^yETaEj@wIbBkCZq@DcAKaAg@s@s@u@a@e@GU@WF[P_@f@Sz@Cp@Dj@X|@xB~FnGxO^|@DFRRx@zBnBhFvAnDPf@^bAfD|IxC|IzC~Lz@hFx@`IbAfIvEfVfIha@~EbTvF~WxEtUvA`GdCfIbAlEh@|EPtDh@fOb@|Ez@tEh@hB|@xBvBnEhBpDjA`Dj@`Ch@dDV|CH`FKxD}Az^k@jMWvCUvB{@pEqAfEgCzF{BnEqBnEi@`B}A|DeAhEcCnOyEzVmAvD_@p@{@p@qFzDcAz@u@vAWlAIzBLtB^`Bp@~Ax@pA~@hAfA~@~CjBz@\\\\jGlD|ClBfAv@xBtBbDpDr@~@pA~AxAlBzAvBtAnCZx@jA|DTpApCnP~@pF\\\\`A~DbJjBbEtDbGzDnHpDrHhLtT?RrDdHlCxEnCdE@F@Ll@z@vEtFPZ?fDAbC@z@\"},\"summary\":\"Tulip Ave\",\"warnings\":[],\"waypoint_order\":[1,0]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"d1509ca9-8298-4a65-bf84-add72a74e8c5"},{"name":"Address auto complete","id":"202992a3-9ca3-4b69-bc7b-f9bea829cec4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}"}],"url":"{{host}}/location/autocomplete?input=123&bias_latitude=40.72822&bias_longitude=-73.70667000000003","urlObject":{"path":["location","autocomplete"],"host":["{{host}}"],"query":[{"key":"input","value":"123"},{"key":"bias_latitude","value":"40.72822"},{"key":"bias_longitude","value":"-73.70667000000003"}],"variable":[]}},"response":[{"id":"c2cfd771-7d9c-45af-bf25-9c4b52fc10dc","name":"Multiple Stops","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?origin=169 grange street, franklin square ny&destination=390 metropolitan ave, brooklyn ny&waypoints=optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"origin","value":"169 grange street, franklin square ny"},{"key":"destination","value":"390 metropolitan ave, brooklyn ny"},{"key":"waypoints","value":"optimize:true|104-16 132nd Street, Jamaica, NY|123 Jericho turnpike, floral park ny"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"19792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 14 Jul 2017 20:33:00 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"4d50-lJsgQV89afgR1l+sPqnzbzwraJ4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500064380997144","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3ATVpbf1cRC0QEosrtcIsVEPOn4Cja5a3X.L7WpJEMLRaqsmCtLI3k0w39S6p6hlSsHTZgI1bo8sco","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"geocoded_waypoints\":[{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJA8i4uyVjwokRJ9S5kKEVU44\",\"types\":[\"premise\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJcbQT1ltiwokRdt6BWSHC_G0\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJsdUw6zRnwokRA2KesL5h97s\",\"types\":[\"street_address\"]},{\"geocoder_status\":\"OK\",\"place_id\":\"ChIJmdrtHl9ZwokR1sv9Yomflyw\",\"types\":[\"premise\"]}],\"routes\":[{\"bounds\":{\"northeast\":{\"lat\":40.7438783,\"lng\":-73.66746549999999},\"southwest\":{\"lat\":40.6655454,\"lng\":-73.95531129999999}},\"copyrights\":\"Map data ©2017 Google\",\"legs\":[{\"distance\":{\"text\":\"3.2 mi\",\"value\":5174},\"duration\":{\"text\":\"14 mins\",\"value\":815},\"end_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"start_address\":\"169 Grange St, Franklin Square, NY 11010, USA\",\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"steps\":[{\"distance\":{\"text\":\"0.2 mi\",\"value\":395},\"duration\":{\"text\":\"1 min\",\"value\":64},\"end_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"html_instructions\":\"Head <b>north</b> on <b>Grange St</b> toward <b>Benris Ave</b>\",\"polyline\":{\"points\":\"qzlwFpes`MuGKoLO\"},\"start_location\":{\"lat\":40.7032866,\"lng\":-73.667611},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":719},\"duration\":{\"text\":\"3 mins\",\"value\":150},\"end_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"html_instructions\":\"Turn <b>left</b> onto <b>Hempstead Turnpike</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wpmwFtds`MA~ACrAAhAETErAC`BEvAEzAEhA?@?JGvADPAf@Al@GlAA\\\\Ex@C^E|@?JAJCl@Cj@E`AAXE`AEt@I|AG~A\"},\"start_location\":{\"lat\":40.7068367,\"lng\":-73.66746549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"440 ft\",\"value\":134},\"duration\":{\"text\":\"1 min\",\"value\":29},\"end_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"html_instructions\":\"Turn <b>right</b> onto <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"qtmwFryt`MUWw@Q_ASwAY\"},\"start_location\":{\"lat\":40.7074531,\"lng\":-73.6759352},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":539},\"duration\":{\"text\":\"1 min\",\"value\":62},\"end_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"html_instructions\":\"Slight <b>left</b> to stay on <b>New Hyde Park Rd</b>\",\"maneuver\":\"turn-slight-left\",\"polyline\":{\"points\":\"w{mwFzvt`MMBI@I@OBoCr@oCt@kCt@SF{@VC?UFQD_@Ja@Hi@JO@M?cAPs@JoAT\"},\"start_location\":{\"lat\":40.7085988,\"lng\":-73.67550299999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.7 mi\",\"value\":2770},\"duration\":{\"text\":\"6 mins\",\"value\":351},\"end_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"html_instructions\":\"Turn <b>left</b> onto <b>Tulip Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cynwFl`u`M?N?PA^KzEEpBA|@Ab@CZATE^Ej@[pDMrA[jDAXCRAJCJAHCFADCFELe@hAk@tAWl@Uf@aAzBITQZIPEFEFCDCDKLOPW^UXc@j@}@jASVQVKLILQXINILYj@aAbBk@fAyAhC]p@OTOVIJGNQd@Sh@[|@GJ]pAm@hB[z@ENoAtDyAfEKZg@xAeA|Cw@|Bo@pBO`@eAzCcAzCcAzCIT{@dCcAzCeAzCcA|CKZw@zBw@hC{@vCaA`DGTSt@[hA\"},\"start_location\":{\"lat\":40.7132952,\"lng\":-73.6770295},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"413 ft\",\"value\":126},\"duration\":{\"text\":\"1 min\",\"value\":26},\"end_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"html_instructions\":\"Turn <b>right</b> onto <b>Tyson Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"ubqwFfqz`MUy@E]m@aE\"},\"start_location\":{\"lat\":40.725075,\"lng\":-73.7053237},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":335},\"duration\":{\"text\":\"2 mins\",\"value\":91},\"end_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"html_instructions\":\"Turn <b>left</b> onto <b>S Tyson Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"_eqwFlhz`Mm@NiCt@WHe@HaAXeCn@{@TiAZ\"},\"start_location\":{\"lat\":40.7254379,\"lng\":-73.7039064},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":156},\"duration\":{\"text\":\"1 min\",\"value\":42},\"end_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"html_instructions\":\"Turn <b>left</b> onto <b>Jericho Turnpike</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"cwqwFboz`MYHd@tDTbBFd@\"},\"start_location\":{\"lat\":40.7283379,\"lng\":-73.7049834},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"10.6 mi\",\"value\":17066},\"duration\":{\"text\":\"20 mins\",\"value\":1176},\"end_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"start_address\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"steps\":[{\"distance\":{\"text\":\"1.0 mi\",\"value\":1620},\"duration\":{\"text\":\"4 mins\",\"value\":219},\"end_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"html_instructions\":\"Head <b>west</b> on <b>Jericho Turnpike</b> toward <b>Brokaw Ave</b>\",\"polyline\":{\"points\":\"yuqwFlyz`MHj@Nz@TnBf@lDTxAHn@Hl@f@tD?XT~CNlBHzADd@BZPhCPlCTrDDl@PdCHbBFz@D\\\\Hr@ZtB\\\\rBDTlArGb@`CJn@F\\\\FXDZFZ^zBLt@ZhB?@DPLl@TdBZnBPt@XnAXnA\"},\"start_location\":{\"lat\":40.7281261,\"lng\":-73.7066328},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"420 ft\",\"value\":128},\"duration\":{\"text\":\"1 min\",\"value\":18},\"end_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"html_instructions\":\"Continue onto <b>Jamaica Ave</b>\",\"polyline\":{\"points\":\"o}pwFxl~`MHb@VnAPv@b@hB\"},\"start_location\":{\"lat\":40.7242443,\"lng\":-73.72508789999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"184 ft\",\"value\":56},\"duration\":{\"text\":\"1 min\",\"value\":13},\"end_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"html_instructions\":\"Turn <b>left</b> onto <b>241st St</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"wzpwFnu~`MRGTGt@W\"},\"start_location\":{\"lat\":40.7237954,\"lng\":-73.72648430000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.4 mi\",\"value\":3886},\"duration\":{\"text\":\"3 mins\",\"value\":173},\"end_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"html_instructions\":\"Slight <b>left</b> to merge onto <b>Cross Island Pkwy</b>\",\"polyline\":{\"points\":\"wwpwFft~`MP[FKFMBKDKDODMDMFKFKDGDEDEDEFEDCDCFCLCPC^A@?BAPCfCd@hB`@fAZXJVHTJh@TTLFBFDHDXLl@`@p@b@@@j@^f@^l@h@`@^pAhAbA~@r@l@d@\\\\RLJF\\\\PdAb@l@Tj@Ph@NTFz@Th@HT@TB|@DT?z@AbAGz@Gp@It@K`@Gh@K~@SpA_@HEb@Mb@STIj@UZM@ARGj@Sl@Sh@Sh@MVIXGb@IZGf@Gd@El@E|@A`DEj@Cx@A~GMZ?B?rDElEIpCEzEIrFKlISl@C|@Af@ArAC|ACl@?h@?F?D?|@C`IO`@A~@AfBCN?tBCx@Cl@Av@Ax@AR?NA|CGr@Ab@Ad@AVA\\\\?j@?@?tBE\"},\"start_location\":{\"lat\":40.7233154,\"lng\":-73.7262818},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":519},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"html_instructions\":\"Take the <b>Brooklyn</b> exit\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"aejwF`w~`Mb@?VAZATAXCdAIzC]tAKHAfAEJ?vACfD@jABD?FAh@?\"},\"start_location\":{\"lat\":40.6896111,\"lng\":-73.72672829999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.3 mi\",\"value\":2090},\"duration\":{\"text\":\"1 min\",\"value\":86},\"end_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"html_instructions\":\"Continue onto <b>Belt Pkwy</b>/<b>Laurelton Pkwy</b>\",\"polyline\":{\"points\":\"_hiwFzt~`Mf@At@F`BVt@Pp@TbAb@vBhAlFvCrEtC|DjCb@Zh@d@PP@@xBlBRT|A|Az@|@~AdB|@r@fGzFvAjAf@d@f@`@jBvA@??@DDdAp@^Vj@\\\\fXvPtA|@\"},\"start_location\":{\"lat\":40.6849589,\"lng\":-73.7263751},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"2.9 mi\",\"value\":4588},\"duration\":{\"text\":\"4 mins\",\"value\":213},\"end_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"html_instructions\":\"Keep <b>left</b> to continue on <b>Belt Pkwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_bfwFf_aaMPBdAn@NH~@n@|@r@~@z@f@f@RPTTp@z@FFFJHNFJJPJTj@|ALXFRL\\\\BFDJNj@Nt@Hr@@^?`@Av@UxHYdKCn@?P?P?P?P?NGvG?rG?hA?fL@nF@zB?tJEbBErAIjBIlA?@CXCd@KhBKtBGt@_Crb@SzDOpCGdAWxEWvEIjAErAEr@E~ACxAIjDCpCApA?z@@dH@jABnAL|H?ZAPRlHJxC?R@T@LB~@BjAP~FR|Cd@zK\\\\`HLdCHnARdEHxC@d@B~@FbB\"},\"start_location\":{\"lat\":40.6686379,\"lng\":-73.7382846},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":802},\"duration\":{\"text\":\"1 min\",\"value\":47},\"end_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"html_instructions\":\"Take exit <b>19</b> toward <b>Van Wyck Expy</b>/<b>Whitestone Bridge</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"usewFrekaMGBA??@A?A@?@?BAB?H?N?TA`@AXAXGr@Gx@Ir@Ej@I`AEd@Cd@APCZ?NAf@?DCLBlBBbC?h@@vGBlH?\\\\?N@`A?rA?t@ANAPCPALELENGPKN\"},\"start_location\":{\"lat\":40.6663542,\"lng\":-73.7904999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":522},\"duration\":{\"text\":\"1 min\",\"value\":30},\"end_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>Interstate 678 N</b>/<b>Van Wyck Expwy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"ewewF~_maMSRGHMLs@n@e@`@m@f@YRSJUHWFa@FO@uAGiBGsACkACm@Ao@?eA?u@@\"},\"start_location\":{\"lat\":40.6669091,\"lng\":-73.7998396},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.6 mi\",\"value\":1034},\"duration\":{\"text\":\"1 min\",\"value\":58},\"end_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"html_instructions\":\"Keep <b>left</b>, follow signs for <b>I-678 N</b>/<b>Van Wyck Expy</b>/<b>Bronx</b> and merge onto <b>I-678 N</b>/<b>Van Wyck Expy</b>\",\"maneuver\":\"keep-left\",\"polyline\":{\"points\":\"_sfwFhfmaM}CP{@DW@OB[B[Ba@Hc@Hc@Jq@Nk@REBEBGHa@Fe@Jq@Ts@TcA^sEfBkE`BWHu@V?@g@PeC~@cBl@cFnB\"},\"start_location\":{\"lat\":40.6713588,\"lng\":-73.8008485},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":259},\"duration\":{\"text\":\"1 min\",\"value\":23},\"end_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"html_instructions\":\"Take exit <b>3</b> toward <b>Linden Blvd</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"kjhwFb|maMY@gCp@SDE@KBOBIBG?m@H{ARe@FIBA?A?A@AA[A\"},\"start_location\":{\"lat\":40.68021969999999,\"lng\":-73.8043386},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.4 mi\",\"value\":569},\"duration\":{\"text\":\"1 min\",\"value\":76},\"end_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"html_instructions\":\"Merge onto <b>Van Wyck Expy</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"sxhwFr_naMYJ}Al@eDvAYH{CjAqDlBkHjD\"},\"start_location\":{\"lat\":40.6825014,\"lng\":-73.8048986},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":236},\"duration\":{\"text\":\"1 min\",\"value\":67},\"end_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"html_instructions\":\"Turn <b>left</b> onto <b>109th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"eviwFtonaMRv@@DBNFV@@Pt@|@rDx@jD\"},\"start_location\":{\"lat\":40.6872279,\"lng\":-73.8074654},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":185},\"duration\":{\"text\":\"1 min\",\"value\":31},\"end_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"html_instructions\":\"Turn <b>right</b> at the 3rd cross street onto <b>134th St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"wpiwFr_oaMuH|C\"},\"start_location\":{\"lat\":40.6863565,\"lng\":-73.81002339999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":241},\"duration\":{\"text\":\"1 min\",\"value\":38},\"end_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"html_instructions\":\"Turn <b>left</b> at the 1st cross street onto <b>107th Ave</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"mziwFpdoaMn@nDl@~Cn@bDJ`@\"},\"start_location\":{\"lat\":40.68791360000001,\"lng\":-73.8108117},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":240},\"duration\":{\"text\":\"1 min\",\"value\":40},\"end_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Van Siclen St</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"suiwFfuoaMwAEm@A{GKC?C?E?\"},\"start_location\":{\"lat\":40.6871386,\"lng\":-73.8134804},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"299 ft\",\"value\":91},\"duration\":{\"text\":\"1 min\",\"value\":21},\"end_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"html_instructions\":\"<b>Van Siclen St</b> turns slightly <b>left</b> and becomes <b>132nd St</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"polyline\":{\"points\":\"ccjwFrtoaM[L}@\\\\e@PYL\"},\"start_location\":{\"lat\":40.68929869999999,\"lng\":-73.81338199999999},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]},{\"distance\":{\"text\":\"11.5 mi\",\"value\":18481},\"duration\":{\"text\":\"28 mins\",\"value\":1659},\"end_address\":\"390 Metropolitan Ave, Brooklyn, NY 11211, USA\",\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"start_address\":\"104-16 132nd St, Jamaica, NY 11419, USA\",\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"steps\":[{\"distance\":{\"text\":\"210 ft\",\"value\":64},\"duration\":{\"text\":\"1 min\",\"value\":14},\"end_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"html_instructions\":\"Head <b>north</b> on <b>132nd St</b> toward <b>Liberty Ave</b>\",\"polyline\":{\"points\":\"}gjwF~voaMC?eBv@\"},\"start_location\":{\"lat\":40.6900691,\"lng\":-73.813755},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.2 mi\",\"value\":363},\"duration\":{\"text\":\"2 mins\",\"value\":143},\"end_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"html_instructions\":\"Turn <b>right</b> onto <b>Liberty Ave</b>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"gkjwFvxoaMyAaCs@oAOi@GSg@cDe@uC@]Ku@?A?ACOEUKo@\"},\"start_location\":{\"lat\":40.6906019,\"lng\":-73.81403999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"121 ft\",\"value\":37},\"duration\":{\"text\":\"1 min\",\"value\":12},\"end_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"html_instructions\":\"Turn <b>left</b> onto <b>Van Wyck Expy</b>\",\"maneuver\":\"turn-left\",\"polyline\":{\"points\":\"{sjwF~`oaMUJMFYL\"},\"start_location\":{\"lat\":40.6919848,\"lng\":-73.8102401},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":219},\"duration\":{\"text\":\"1 min\",\"value\":25},\"end_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"html_instructions\":\"Slight <b>left</b> onto the <b>Route 678</b> ramp\",\"polyline\":{\"points\":\"yujwF`boaMGN?BEDEDCBGDIFOHqAn@A?aCjAIBGDKHIHEBA@UV\"},\"start_location\":{\"lat\":40.6922889,\"lng\":-73.81040999999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.6 mi\",\"value\":5790},\"duration\":{\"text\":\"6 mins\",\"value\":348},\"end_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"html_instructions\":\"Merge onto <b>I-678 N</b> (signs for <b>Route 678</b>)\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"o`kwFtioaMEBIDc@PoAn@m@Zq@X}@b@eB|@yBnA_@Tq@Za@TSLC@u@^i@XaAd@kAf@YLaBv@gChAuAh@QDk@RaA\\\\w@\\\\_GtBKDiDlAu@ZwAd@G@w@XiAb@mBx@qCnAk@ZGBkCpAEB}At@MHo@^y@`@EDIDKBmA`@iAp@uAp@ULuA|@cBlAq@p@ONOR_@d@}DnFORONUXQRONQPMLONSPQLCBKHMJm@`@OJKL[T]\\\\IFIFMJOHcAn@QJQJSLSNUPSNa@ZUPoA`AQLSLSLSLWLQH[LWHQFUFQDUDUDU@UBUBU@U?U@U?WAS?UAYCUAiBOSAWASAU?WAU?U?UAS?W@W@Q@WBUBUDSDUDUFQFUFUHEBMFSHSJwBhAoAj@e@TSHSJUHSJQJQLOJUNONQLSPONSNQPQRQPOPQROPOPORSVKNORQVOTMRMTMTMRMTkBbDWd@U\\\\SVQVORSRONSROLSNOLSNSJSLQJSJQHUJUJSH}NfGm@VuCjAiKlEYNy@\\\\{@\\\\]NSF[Ji@NMBc@J_@Fi@FMBM@K@Q@kBHqFPG?aBFiAFe@D]DWBm@J}AT}@P}Cp@qB\\\\A@A?E?WFWD\"},\"start_location\":{\"lat\":40.6940012,\"lng\":-73.81163459999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.5 mi\",\"value\":866},\"duration\":{\"text\":\"3 mins\",\"value\":157},\"end_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"html_instructions\":\"Take exit <b>12B</b> for <b>Interstate 495 W</b>/<b>Long Is Expwy</b> toward <b>Midtown Tun</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"agtwFnjtaMSDgAFG@E?U@M@OAM?QCSEa@QIGA?SMYU?AYY?Ac@[QESEQAS@A?KBIBA?GBSLSRKR?@ABITG^CT?Z@TBTBNDLN^FPfAnCLf@Zt@@D?@pCzGzBtFJVDNFJDHDD?@RR\"},\"start_location\":{\"lat\":40.741126,\"lng\":-73.8373646},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"3.4 mi\",\"value\":5456},\"duration\":{\"text\":\"4 mins\",\"value\":268},\"end_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"html_instructions\":\"Merge onto <b>I-495 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"citwF`kuaMx@zBx@xBt@nBpAdDDH?@BFJX@B@BJV@D@BJV@D\\\\|@|BdGJV?@BDj@xA~@tCh@fBb@|AfAhEPt@\\\\`BTlA?@PdARrADVJ~@VvBNpBJbAHx@RbBXdBPdAj@zCfAvFVhA?B@@@Ft@tDf@bCd@xBl@xCh@jCDNDRpB|Jb@bCBPFRF^fArEbAhEXnABJ@DHZ?@@BDP?@@DJ^?@H`@@?DRPt@?BFVRx@Px@r@lDZtA?@Nv@VnAl@tCdBvIb@rBn@~C^hBVlAPr@Pr@ZjAh@dB?@h@`Bp@|BRr@Pp@Nt@Lp@Lx@Ht@Hv@Ft@Dt@FlABn@?@@p@`@|KDv@Dv@Fv@Ht@Jv@Jv@Nv@Nr@Np@JZHVJ\\\\FVHRL\\\\P`@Rd@Vh@Vf@j@jAZp@b@x@Vf@Vf@Tf@Rb@Pf@Tp@Nb@Lb@J^F\\\\H^Lj@Hd@Hl@Fd@Dd@D`@Df@Dl@Bz@Bt@@x@?t@Ap@Aj@Cr@Cf@Cj@q@tOSjFSlEOzC[nH\"},\"start_location\":{\"lat\":40.7414603,\"lng\":-73.84257140000001},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.5 mi\",\"value\":2375},\"duration\":{\"text\":\"5 mins\",\"value\":311},\"end_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"html_instructions\":\"Take exit <b>17W</b> toward <b>Brooklyn</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"eiqwFxaabMSrBCb@E`@CXEXE`@ETG\\\\E\\\\GXETGZIVGZIXIXIVGVKXIXKVIVKVKXKTITKTQ`@S`@g@bA]j@MTMTMVMVMVKVKVKVeA|BMXQ^KXEPIXMZKXMXIPKVKXKTIVKVIXIVIVI\\\\GXGZGREVEVGXETEXsAzIEXGZGZgAdG_BvIEVGZGXGVIZIZIXIXIVIXKVITIRENINGLGJEFGHEFGFe@VQJOLQLQNSLQNsBtAQNIFUPOLSRMRMRKTMXGRCJENE\\\\E`@AXA^?^?V@XDd@D\\\\DXFTFXHVJXJVJVLTLRLTLRNRNRPRLNNPPNPPPLPNPLPLRLRJTLTLRLRJb@L\"},\"start_location\":{\"lat\":40.7261062,\"lng\":-73.9025308},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"1.6 mi\",\"value\":2534},\"duration\":{\"text\":\"4 mins\",\"value\":211},\"end_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"html_instructions\":\"Merge onto <b>I-278 W</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"unrwFxqebMVN`E|BhAn@|@h@x@f@FD\\\\Th@^\\\\V`Az@v@x@nApArA~AZ^V^VZTXPRPTb@n@JLPRVZLP?@LNBDRVZb@DFDHLPZj@Td@Tj@@BLZDHDNNZRp@Nh@VdAHd@DTDTF\\\\BNBNx@zEF^F`@BHr@hEj@lDRbAPf@JXJ\\\\v@`B`AxBx@hBhAfC`@z@f@|@lCdEbA`BvBlErArC|A~CzDvHrAdCzBfE\\\\n@\"},\"start_location\":{\"lat\":40.7321144,\"lng\":-73.92556549999999},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.3 mi\",\"value\":415},\"duration\":{\"text\":\"1 min\",\"value\":59},\"end_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"html_instructions\":\"Take exit <b>32B</b> toward <b>Metropolitan Ave</b>\",\"maneuver\":\"ramp-right\",\"polyline\":{\"points\":\"suowFn~ibM?BAB@D?D@B?B@@Td@`@t@\\\\l@p@pAf@~@Vf@`@r@f@|@j@~@l@~@v@jA^h@HN?B@B@L\"},\"start_location\":{\"lat\":40.71785819999999,\"lng\":-73.9480753},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"0.1 mi\",\"value\":210},\"duration\":{\"text\":\"1 min\",\"value\":66},\"end_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"html_instructions\":\"Merge onto <b>Meeker Ave</b>\",\"maneuver\":\"merge\",\"polyline\":{\"points\":\"}fowF~ujbMl@z@hBxBlBzBPZ\"},\"start_location\":{\"lat\":40.7155111,\"lng\":-73.9518437},\"travel_mode\":\"DRIVING\"},{\"distance\":{\"text\":\"499 ft\",\"value\":152},\"duration\":{\"text\":\"1 min\",\"value\":45},\"end_location\":{\"lat\":40.7141105,\"lng\":-73.95531129999999},\"html_instructions\":\"Turn <b>right</b> onto <b>Metropolitan Ave</b><div style=\\\"font-size:0.9em\\\">Destination will be on the left</div>\",\"maneuver\":\"turn-right\",\"polyline\":{\"points\":\"e~nwFl`kbM?fDA|@?dA@p@?H\"},\"start_location\":{\"lat\":40.7141128,\"lng\":-73.9535121},\"travel_mode\":\"DRIVING\"}],\"traffic_speed_entry\":[],\"via_waypoint\":[]}],\"overview_polyline\":{\"points\":\"qzlwFpes`MeU[ErDG~AItDQ~FGbBBx@QrEKtBm@jNUWw@QwCm@q@JgPlE{Bb@uEr@[lOyA`QKh@q@dBgErJ{BxCoBhCo@dAiHlMiA|CoBbGqKp[mLh]_E~LyCdK[hAUy@s@_FuFxAmIzBYHd@tD\\\\hCvAdKpAlJ|A|Uv@jMr@bGvDbTzB~M`BdIvAtGh@Ot@WP[NYHWXw@X_@XSTGp@EDAPCfCd@pD|@p@T|Ar@xAz@fCdBdFrExB`B|D|AdDv@~BJ~BIlBQ`Es@bDgA~Ao@vCcA~Bi@vC[dIMn`@m@t\\\\o@t^i@`JQfEEbBI`Iu@rAE~FAbC@|ADvCh@tBx@dJ`FpK`HlA`A`DvCvHtHnLnKrB~Ax\\\\~StA|@PBtAx@|BbBfBbBbBjBd@x@lA`Df@|AXhB@`Au@fX?fAGdSBhc@_@pJCZoEby@_ApQYxKCdQRtNh@|ShBza@VtE\\\\~IDdBFbBGBA@C@ARC`Bu@tJGdBBdGFhZI`A_@~@}AzAaChB_BZ_JWyE?aG\\\\}BZgCr@MLgAR}JrDoWtJ{Dz@m@JaEh@[AYJcGdCuDtA}MxG`@dBjCvKuH|Cn@nD|AbIJ`@wAEiIMi@LaC|@eBv@yAaCcAyBo@wDe@uC@]Kw@?AUuAc@RYLGNEHIHsBfAuCtAcAz@sEvB}HfEkB`AmFfCyIxDwDtAmUjIkHdDwFnC}BpAUHmA`@iAp@kB~@yDjCqBzBsFlHaAbAqCvBoAhAkBlAmDdCiCjByAr@qA^wAPwAFwACgG]uAAyAHuATsA`@}HvDoAl@gAx@oChCcC~CyEhIkA`BgAdAkAx@kAn@ed@jRgDrAwBj@eBT{J^yETaEj@wIbBkCZq@DcAKaAg@s@s@u@a@e@GU@WF[P_@f@Sz@Cp@Dj@X|@xB~FnGxO^|@DFRRx@zBnBhFvAnDPf@^bAfD|IxC|IzC~Lz@hFx@`IbAfIvEfVfIha@~EbTvF~WxEtUvA`GdCfIbAlEh@|EPtDh@fOb@|Ez@tEh@hB|@xBvBnEhBpDjA`Dj@`Ch@dDV|CH`FKxD}Az^k@jMWvCUvB{@pEqAfEgCzF{BnEqBnEi@`B}A|DeAhEcCnOyEzVmAvD_@p@{@p@qFzDcAz@u@vAWlAIzBLtB^`Bp@~Ax@pA~@hAfA~@~CjBz@\\\\jGlD|ClBfAv@xBtBbDpDr@~@pA~AxAlBzAvBtAnCZx@jA|DTpApCnP~@pF\\\\`A~DbJjBbEtDbGzDnHpDrHhLtT?RrDdHlCxEnCdE@F@Ll@z@vEtFPZ?fDAbC@z@\"},\"summary\":\"Tulip Ave\",\"warnings\":[],\"waypoint_order\":[1,0]}],\"status\":\"OK\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"202992a3-9ca3-4b69-bc7b-f9bea829cec4"},{"name":"Get location details","id":"0a820483-10c4-4b8a-a3d8-a9a70d6e3688","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/location/details?place_id=ChIJA8i4uyVjwokRJ9S5kKEVU44&address=123 jericho turnpike, new york&types=point_of_interest&types=food&types=establishment","description":"<p>Get a normalized location object for an address. If <code>address</code> is passed, it will use that to attempt to get the location. If latitude and longitude are sent, it will use those coordinates to find the location. Be sure to pass <code>types</code> and a <code>place_id</code> if applicable to get the most accurate location.</p>\n<p>This endpoint will accept either an <code>address</code> OR <code>latitude</code> and <code>longitude</code></p>\n","urlObject":{"path":["location","details"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"place_id","value":"ChIJA8i4uyVjwokRJ9S5kKEVU44"},{"description":{"content":"<p>String of full address</p>\n","type":"text/plain"},"key":"address","value":"123 jericho turnpike, new york"},{"description":{"content":"<p>Place types as returned from the autocomplete</p>\n","type":"text/plain"},"key":"types","value":"point_of_interest"},{"key":"types","value":"food"},{"key":"types","value":"establishment"},{"disabled":true,"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"latitude","value":"40.70327150000001"},{"disabled":true,"description":{"content":"<p>Optional </p>\n","type":"text/plain"},"key":"longitude","value":"-73.667351"}],"variable":[]}},"response":[{"id":"077b32a6-b69d-4423-b14c-e5699a0022ea","name":"Get address","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/address?place_id=ChIJA8i4uyVjwokRJ9S5kKEVU44&address=123 jericho turnpike, new york","host":["{{host}}"],"path":["location","address"],"query":[{"key":"place_id","value":"ChIJA8i4uyVjwokRJ9S5kKEVU44"},{"key":"address","value":"123 jericho turnpike, new york"},{"key":"types","value":"point_of_interest","disabled":true},{"key":"types","value":"food","disabled":true},{"key":"types","value":"establishment","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"434","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 01 Feb 2018 02:14:49 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1b2-2O4zZSrqUa72cmXpQ4JBndZZgUA\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3An_3MFfSAS3Ys4_Cj51joh0yWGg1r_Sjk.Q%2FoZobIkClhXxvpAy0FlLqF0%2FFD6LaANKekQr5PGGd0","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"location_id\":386893,\"address\":\"123 Jericho Turnpike\",\"address_two\":null,\"city\":\"Jericho\",\"state\":\"New York\",\"postal_code\":\"11753\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Jericho, NY 11753, USA\",\"short_name\":\"123 Jericho Turnpike, Jericho, NY 11753, USA\",\"latitude\":40.78068,\"longitude\":-73.5579,\"date_created\":\"2018-01-31 22:24:33\",\"date_updated\":\"2018-01-31 22:24:33\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"0a820483-10c4-4b8a-a3d8-a9a70d6e3688"},{"name":"Static map","id":"a2bef01e-3e2b-4ba3-94b0-47621c6b5ace","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/location/static-map?markers[0][label]=1&markers[0][latitude]=40.74485&markers[0][longitude]=-73.65318&markers[1][label]=2&markers[1][latitude]=40.6863565&markers[1][longitude]=-73.810023&path_weight=5&path_color=0xff0000ff&paths[0][latitude]=40.74485&paths[0][longitude]=-73.65318&paths[1][latitude]=40.6863565&paths[1][longitude]=-73.810023","urlObject":{"path":["location","static-map"],"host":["{{host}}"],"query":[{"key":"markers[0][label]","value":"1"},{"key":"markers[0][latitude]","value":"40.74485"},{"key":"markers[0][longitude]","value":"-73.65318"},{"key":"markers[1][label]","value":"2"},{"key":"markers[1][latitude]","value":"40.6863565"},{"key":"markers[1][longitude]","value":"-73.810023"},{"key":"path_weight","value":"5"},{"key":"path_color","value":"0xff0000ff"},{"key":"paths[0][latitude]","value":"40.74485"},{"key":"paths[0][longitude]","value":"-73.65318"},{"key":"paths[1][latitude]","value":"40.6863565"},{"key":"paths[1][longitude]","value":"-73.810023"}],"variable":[]}},"response":[{"id":"d9e8190d-e365-4249-9a19-650bcc4f2a1f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/static-map?markers[0][label]=1&markers[0][latitude]=40.74485&markers[0][longitude]=-73.65318","host":["{{host}}"],"path":["location","static-map"],"query":[{"key":"markers[0][label]","value":"1"},{"key":"markers[0][latitude]","value":"40.74485"},{"key":"markers[0][longitude]","value":"-73.65318"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"155","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 31 Jul 2017 16:43:31 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"9b-ZqOgW2RYRmmslmlBN6wUxzmA3gw\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1501519411915437","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AG39GFXPrBTBiWMAINlUKNGr4M4-lzNkq.AJm%2BnrfseDHfnJXSZzZ%2BXIsWGwJZF3r2NvMmS%2BGl96Q","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"url\":\"http://d2u9wtvq2reskn.cloudfront.net/location/staticmap/63694fd65bd9261f1c6307d2ecbac63c.png\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"a2bef01e-3e2b-4ba3-94b0-47621c6b5ace"},{"name":"Get directions","id":"7e2f08db-c2a3-4540-b7e0-b41392b64cc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/location/directions?destination=40.65546,-73.67660&waypoints=40.65446,-73.67660&waypoints=40.65546,-73.67660&origin=40.75237,-73.66787&optimize=1","urlObject":{"path":["location","directions"],"host":["{{host}}"],"query":[{"key":"destination","value":"40.65546,-73.67660"},{"key":"waypoints","value":"40.65446,-73.67660"},{"key":"waypoints","value":"40.65546,-73.67660"},{"key":"origin","value":"40.75237,-73.66787"},{"disabled":true,"key":"destinations","value":"40.65546,-73.67660"},{"disabled":true,"key":"maps_data_format","value":"here_maps"},{"disabled":true,"description":{"content":"<p>google_maps or here_maps</p>\n","type":"text/plain"},"key":"override_adapter","value":"google_maps"},{"key":"optimize","value":"1"}],"variable":[]}},"response":[{"id":"bf4280c4-ec45-4462-bc75-1c7597c7f72b","name":"Get directions","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/location/directions?destination=40.65546,-73.67660&origin=40.75237,-73.66787","host":["{{host}}"],"path":["location","directions"],"query":[{"key":"destination","value":"40.65546,-73.67660"},{"key":"waypoints","value":"40.65446,-73.67660","disabled":true},{"key":"waypoints","value":"40.65546,-73.67660","disabled":true},{"key":"origin","value":"40.75237,-73.66787"},{"key":"destinations","value":"40.65546,-73.67660","disabled":true},{"key":"maps_data_format","value":"here_maps","disabled":true},{"key":"override_adapter","value":"google_maps","description":"google_maps or here_maps","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5771"},{"key":"ETag","value":"W/\"168b-QzeaX0nM6C1EGPjBhj4YbsfB3uw\""},{"key":"Date","value":"Thu, 26 Sep 2019 13:31:09 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"geocoded_waypoints\": [\n            {\n                \"geocoder_status\": \"OK\",\n                \"place_id\": \"ChIJ5UI6-hyIwokR_ADCfrNXtY8\",\n                \"types\": [\n                    \"premise\"\n                ]\n            },\n            {\n                \"geocoder_status\": \"OK\",\n                \"place_id\": \"ChIJ6fDrH75kwokRxUanydLuhbY\",\n                \"types\": [\n                    \"establishment\",\n                    \"point_of_interest\",\n                    \"store\"\n                ]\n            }\n        ],\n        \"routes\": [\n            {\n                \"bounds\": {\n                    \"northeast\": {\n                        \"lat\": 40.7523892,\n                        \"lng\": -73.66076079999999\n                    },\n                    \"southwest\": {\n                        \"lat\": 40.6556487,\n                        \"lng\": -73.6910601\n                    }\n                },\n                \"copyrights\": \"Map data ©2019\",\n                \"legs\": [\n                    {\n                        \"distance\": {\n                            \"text\": \"8.5 mi\",\n                            \"value\": 13608\n                        },\n                        \"duration\": {\n                            \"text\": \"26 mins\",\n                            \"value\": 1540\n                        },\n                        \"end_address\": \"689 Sunrise Hwy, Lynbrook, NY 11563, USA\",\n                        \"end_location\": {\n                            \"lat\": 40.6556487,\n                            \"lng\": -73.6765478\n                        },\n                        \"start_address\": \"517 Hillside Avenue, New Hyde Park, NY 11040, USA\",\n                        \"start_location\": {\n                            \"lat\": 40.7523892,\n                            \"lng\": -73.6676977\n                        },\n                        \"steps\": [\n                            {\n                                \"distance\": {\n                                    \"text\": \"62 ft\",\n                                    \"value\": 19\n                                },\n                                \"duration\": {\n                                    \"text\": \"1 min\",\n                                    \"value\": 2\n                                },\n                                \"end_location\": {\n                                    \"lat\": 40.7522238,\n                                    \"lng\": -73.6676626\n                                },\n                                \"html_instructions\": \"Head <b>south</b> on <b>Farrel St</b> toward <b>Hillside Avenue</b>\",\n                                \"polyline\": {\n                                    \"points\": \"mmvwFbfs`MFAXE\"\n                                },\n                                \"start_location\": {\n                                    \"lat\": 40.7523892,\n                                    \"lng\": -73.6676977\n                                },\n                                \"travel_mode\": \"DRIVING\"\n                            },\n                            {\n                                \"distance\": {\n                                    \"text\": \"0.3 mi\",\n                                    \"value\": 474\n                                },\n                                \"duration\": {\n                                    \"text\": \"1 min\",\n                                    \"value\": 68\n                                },\n                                \"end_location\": {\n                                    \"lat\": 40.751544,\n                                    \"lng\": -73.6732127\n                                },\n                                \"html_instructions\": \"Turn <b>right</b> onto <b>Hillside Avenue</b>\",\n                                \"maneuver\": \"turn-right\",\n                                \"polyline\": {\n                                    \"points\": \"klvwFzes`MRlDJ~AHvATjDB\\\\BVLvBJtAH~ANzBJbB\"\n                                },\n                                \"start_location\": {\n                                    \"lat\": 40.7522238,\n                                    \"lng\": -73.6676626\n                                },\n                                \"travel_mode\": \"DRIVING\"\n                            },\n                            {\n                                \"distance\": {\n                                    \"text\": \"0.5 mi\",\n                                    \"value\": 846\n                                },\n                                \"duration\": {\n                                    \"text\": \"1 min\",\n                                    \"value\": 82\n                                },\n                                \"end_location\": {\n                                    \"lat\": 40.7459119,\n                                    \"lng\": -73.667019\n                                },\n                                \"html_instructions\": \"Turn <b>left</b> after 1-800-Flowers New Hyde Park (on the right)\",\n                                \"maneuver\": \"turn-left\",\n                                \"polyline\": {\n                                    \"points\": \"chvwFpht`M@VP?\\\\EHAF?BAHABAJCXKNKLKHK~@aANa@r@cAb@s@@CZm@Vg@JULSFKNQPSNQTSzA}@VQNMZWTSHMPUjBcCZe@pCqEf@{@j@}@x@oA\"\n                                },\n                                \"start_location\": {\n                                    \"lat\": 40.751544,\n                                    \"lng\": -73.6732127\n                                },\n                                \"travel_mode\": \"DRIVING\"\n                            },\n                            {\n                                \"distance\": {\n                                    \"text\": \"3.1 mi\",\n                                    \"value\": 4918\n                                },\n                                \"duration\": {\n                                    \"text\": \"10 mins\",\n                                    \"value\": 571\n                                },\n                                \"end_location\": {\n                                    \"lat\": 40.7028549,\n                                    \"lng\": -73.6610513\n                                },\n                                \"html_instructions\": \"Slight <b>right</b> onto <b>Nassau Blvd</b>\",\n                                \"maneuver\": \"turn-slight-right\",\n                                \"polyline\": {\n                                    \"points\": \"}duwFzas`MZQl@i@ZUb@WfCoBpB}AtB}AtB_BrB{ArBaBbBmAVQrAc@zBs@`Cu@bCu@bCw@fCw@fCw@bA[\\\\M^KHORCb@Eb@EPCn@IFD@?L?L?vR?~G@tD?dE?zF@zAArC@N?vB?b@?jA@hCAvB?p@@TAH?P?H?F?N@lG?`G?p@?rC?vF?H@H@TF\\\\RP@@?HAR@B?V?dFEvACH?dHG`A?jFJpJTpBBvDF`@@l@@jA@t@@H?r@@\\\\DzAFN?\\\\BV@L@n@?J?\\\\@P@t@CZAH?d@Ab@?NIB?tBAd@?R?TAR?TAPAnCOn@Er@C\"\n                                },\n                                \"start_location\": {\n                                    \"lat\": 40.7459119,\n                                    \"lng\": -73.667019\n                                },\n                                \"travel_mode\": \"DRIVING\"\n                            },\n                            {\n                                \"distance\": {\n                                    \"text\": \"1.5 mi\",\n                                    \"value\": 2393\n                                },\n                                \"duration\": {\n                                    \"text\": \"3 mins\",\n                                    \"value\": 206\n                                },\n                                \"end_location\": {\n                                    \"lat\": 40.6830546,\n                                    \"lng\": -73.6675633\n                                },\n                                \"html_instructions\": \"Turn <b>right</b> onto <b>Dogwood Ave</b><div style=\\\"font-size:0.9em\\\">Pass by Dunkin' (on the right in 1.1&nbsp;mi)</div>\",\n                                \"maneuver\": \"turn-right\",\n                                \"polyline\": {\n                                    \"points\": \"ywlwFp|q`M^l@V\\\\T\\\\hCtDhA|ALRJLFFDHPPdCbCtAvAdAfAr@n@^d@r@r@HJVZRRRR\\\\XHHDDD@NHNFfAb@`@PPFRFTDNBh@Fr@JnBVfBTdBT\\\\D`D^`IdAz@LVDJ@J@T@f@BdDHzBFpAD~BHlABpBDfABzFPbELzBHf@@R?X?l@CTCRBfBKVAB?LADAFAFEHEFGDGBIBIDKDIDKBEDA@AHC\"\n                                },\n                                \"start_location\": {\n                                    \"lat\": 40.7028549,\n                                    \"lng\": -73.6610513\n                                },\n                                \"travel_mode\": \"DRIVING\"\n                            },\n                            {\n                                \"distance\": {\n                                    \"text\": \"1.9 mi\",\n                                    \"value\": 3041\n                                },\n                                \"duration\": {\n                                    \"text\": \"6 mins\",\n                                    \"value\": 365\n                                },\n                                \"end_location\": {\n                                    \"lat\": 40.6628532,\n                                    \"lng\": -73.6910601\n                                },\n                                \"html_instructions\": \"Turn <b>right</b> onto <b>Cornwell Ave</b>\",\n                                \"maneuver\": \"turn-right\",\n                                \"polyline\": {\n                                    \"points\": \"a|hwFfes`MJP@@HBVZ|@nARj@HZJj@BXDXPtBJr@f@xBDPFLn@nAd@x@r@bA^^fAjA`AdA^ZNNhBxBjB~BpDpE\\\\b@hClDNRl@v@NRp@|@d@l@LP~AvBrA~C|AlDDF~B~ANLLHVTJJLLlAlAjBlBjBlBlBlBlBnBjBjBjBlBlBlBfAhAb@b@jBpBlBhBjBlBfBfBDDjBlBjBnBXVVV^Xb@ZvB`BtB~AZVl@f@NJ\\\\TrAdAp@h@\"\n                                },\n                                \"start_location\": {\n                                    \"lat\": 40.6830546,\n                                    \"lng\": -73.6675633\n                                },\n                                \"travel_mode\": \"DRIVING\"\n                            },\n                            {\n                                \"distance\": {\n                                    \"text\": \"0.2 mi\",\n                                    \"value\": 284\n                                },\n                                \"duration\": {\n                                    \"text\": \"1 min\",\n                                    \"value\": 40\n                                },\n                                \"end_location\": {\n                                    \"lat\": 40.661859,\n                                    \"lng\": -73.68795349999999\n                                },\n                                \"html_instructions\": \"Turn <b>left</b> onto <b>E Merrick Rd</b><div style=\\\"font-size:0.9em\\\">Pass by Mavis Discount Tire (on the left)</div>\",\n                                \"maneuver\": \"turn-left\",\n                                \"polyline\": {\n                                    \"points\": \"y}dwFbxw`MH_@?CLe@VgABO`@iBFYH_@FWDQ@ENo@F]Pu@DQHc@R}@\"\n                                },\n                                \"start_location\": {\n                                    \"lat\": 40.6628532,\n                                    \"lng\": -73.6910601\n                                },\n                                \"travel_mode\": \"DRIVING\"\n                            },\n                            {\n                                \"distance\": {\n                                    \"text\": \"0.3 mi\",\n                                    \"value\": 479\n                                },\n                                \"duration\": {\n                                    \"text\": \"1 min\",\n                                    \"value\": 80\n                                },\n                                \"end_location\": {\n                                    \"lat\": 40.6577284,\n                                    \"lng\": -73.68957230000001\n                                },\n                                \"html_instructions\": \"Turn <b>right</b> onto <b>Horton Ave</b>\",\n                                \"maneuver\": \"turn-right\",\n                                \"polyline\": {\n                                    \"points\": \"swdwFtdw`MH@HBF@HBJBpA\\\\`AXp@PNDXHbBf@rBn@tA`@fA\\\\lBn@THLBNB\"\n                                },\n                                \"start_location\": {\n                                    \"lat\": 40.661859,\n                                    \"lng\": -73.68795349999999\n                                },\n                                \"travel_mode\": \"DRIVING\"\n                            },\n                            {\n                                \"distance\": {\n                                    \"text\": \"0.7 mi\",\n                                    \"value\": 1154\n                                },\n                                \"duration\": {\n                                    \"text\": \"2 mins\",\n                                    \"value\": 126\n                                },\n                                \"end_location\": {\n                                    \"lat\": 40.6556487,\n                                    \"lng\": -73.6765478\n                                },\n                                \"html_instructions\": \"Turn <b>left</b> onto <b>NY-27 E</b><div style=\\\"font-size:0.9em\\\">Destination will be on the right</div>\",\n                                \"maneuver\": \"turn-left\",\n                                \"polyline\": {\n                                    \"points\": \"y}cwFxnw`MD@h@P^yFJgBPkCTuDLwBH}AL_CFs@TsCZ{FVeCBwANiBBWFs@H}@RqBNsA?AVyBP_BH}@B[Hw@NcBBW\"\n                                },\n                                \"start_location\": {\n                                    \"lat\": 40.6577284,\n                                    \"lng\": -73.68957230000001\n                                },\n                                \"travel_mode\": \"DRIVING\"\n                            }\n                        ],\n                        \"traffic_speed_entry\": [],\n                        \"via_waypoint\": []\n                    }\n                ],\n                \"overview_polyline\": {\n                    \"points\": \"mmvwFbfs`M`@G^lGf@xHr@hLLzBn@E^ENEh@WVW~@aANa@vAwB\\\\q@p@qAx@cATSzA}@f@_@p@k@Zc@fCiDxDmGdBmCZQl@i@~@m@xFmErM{JzB_BnEwApO{EhGmBHORCfAK`AMHDr\\\\@r_@@jl@B^H\\\\RP@JAV@~IIfJG|Q`@xJN~DDxBLl@B`BBn@BpAEn@Ab@?NIxBAx@?pAE~DUr@C^l@l@z@rErGf@r@rHtHpCtCj@n@p@l@d@ZxB|@d@Nd@HtH`ArUxC~IVpEN~DHbSl@z@@fACTCRB~BM^EPKLORi@HQFCHCJP@@HBVZ|@nARj@TfAHr@\\\\hDl@jCv@|AxA|BfBjB`B`BxBhC|GpIdF|GtBpC~AvBrA~CbBtDtDlCfSlSrVzVvFzFv@p@zC|BnEjDpBzAp@h@H_@Li@ZwAz@{DtAoGd@JpElA`GfB`HxBlAZrAcTl@iKp@oKVeCBwARaCPqBz@aI|@mJ\"\n                },\n                \"summary\": \"Nassau Blvd\",\n                \"warnings\": [],\n                \"waypoint_order\": []\n            }\n        ],\n        \"status\": \"OK\"\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\"\n    }\n}"}],"_postman_id":"7e2f08db-c2a3-4540-b7e0-b41392b64cc9"},{"name":"Get Zones for Address","id":"b35652da-4b50-4e69-8d55-93cbd777c265","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-api-key","value":"{{api_key}}","type":"text"}],"url":"{{host}}/location/zones?address= 625 8th Ave, New York, NY 10018","description":"<p>Get zone and location information for a an <code>address</code> string</p>\n","urlObject":{"path":["location","zones"],"host":["{{host}}"],"query":[{"description":{"content":"<p>Full address string including street number, city, state and zip eg. 1234 Some Street, New York, NY 11010</p>\n","type":"text/plain"},"key":"address","value":" 625 8th Ave, New York, NY 10018"}],"variable":[]}},"response":[{"id":"82647dce-7750-4ad1-89f8-ec441c27f734","name":"Success - address","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjcyOCwiZXhwIjoxNjUyMzY0ODg1MTk5LCJhcHBsaWNhdGlvbl9pZCI6NTAsImFjY291bnRfdHlwZSI6ImVtcGxveWVlIiwiY29tcGFueV9pZCI6MX0.9ampkON8mK7UmCbvOCTPWn8Lh-Sflxil6z5R9d5cyq8"}],"url":{"raw":"{{host}}/location/zones?address=57 West Ave NY","host":["{{host}}"],"path":["location","zones"],"query":[{"key":"address","value":"57 West Ave NY"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1018"},{"key":"ETag","value":"W/\"3fa-YHEQw+hYD8wK2Tnva/geCAJTz1M\""},{"key":"Date","value":"Fri, 14 May 2021 15:46:01 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"location\": {\n            \"location_id\": 388596,\n            \"address\": \"57 West Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"57 West Ave, New York, NY 11224, United States\",\n            \"short_name\": \"57 West Ave, New York, NY 11224, United States\",\n            \"latitude\": 40.58175,\n            \"longitude\": -73.96791,\n            \"date_created\": \"2021-05-14 15:46:00\",\n            \"date_updated\": \"2021-05-14 15:46:00\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"7f80fdf23dd1a4f89adc38620b46d5e9\",\n            \"company_id\": null\n        },\n        \"zones\": [\n            {\n                \"zone_id\": 63,\n                \"company_id\": 1,\n                \"base_id\": 1,\n                \"old_base_id\": null,\n                \"name\": \"Real Circle11233\",\n                \"color\": \"#66BB6A\",\n                \"priority\": 21,\n                \"bounds_hash\": \"0883511a89521c2a74ad2eaab49cd031\",\n                \"type\": \"circle\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2020-07-16 18:43:30\",\n                \"date_updated\": \"2020-07-17 15:55:55\",\n                \"service_type\": \"banned\",\n                \"type_data\": {\n                    \"center\": {\n                        \"latitude\": 40.59249860059826,\n                        \"longitude\": -74.14113194832771\n                    },\n                    \"radius\": 15263.87986427572\n                }\n            }\n        ]\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.44.9\"\n    }\n}"},{"id":"06d146e2-b498-4a9f-9a34-fac4d95a62f8","name":"Success - latlng","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjcyOCwiZXhwIjoxNjUyMzY0ODg1MTk5LCJhcHBsaWNhdGlvbl9pZCI6NTAsImFjY291bnRfdHlwZSI6ImVtcGxveWVlIiwiY29tcGFueV9pZCI6MX0.9ampkON8mK7UmCbvOCTPWn8Lh-Sflxil6z5R9d5cyq8"}],"url":{"raw":"{{host}}/location/zones?latlng=40.58175,-73.96791","host":["{{host}}"],"path":["location","zones"],"query":[{"key":"address","value":"57 West Ave NY","description":"Either long_name or latlng is required. Use long_name for more accurate custom location matching","disabled":true},{"key":"latlng","value":"40.58175,-73.96791"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1017"},{"key":"ETag","value":"W/\"3f9-qT/jcu3t9csYToN2+ejRYzG2lTQ\""},{"key":"Date","value":"Fri, 14 May 2021 15:59:13 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"location\": {\n            \"location_id\": 388599,\n            \"address\": \"55 West Ave\",\n            \"address_two\": null,\n            \"city\": \"Brooklyn\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"55 West Ave, Brooklyn, NY 11224, United States\",\n            \"short_name\": \"55 West Ave, Brooklyn, NY 11224, United States\",\n            \"latitude\": 40.58175,\n            \"longitude\": -73.9679,\n            \"date_created\": \"2021-05-14 15:57:57\",\n            \"date_updated\": \"2021-05-14 15:57:57\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"e9c7a452b1124a5da6b178f4de369d02\",\n            \"company_id\": null\n        },\n        \"zones\": [\n            {\n                \"zone_id\": 63,\n                \"company_id\": 1,\n                \"base_id\": 1,\n                \"old_base_id\": null,\n                \"name\": \"Real Circle11233\",\n                \"color\": \"#66BB6A\",\n                \"priority\": 21,\n                \"bounds_hash\": \"0883511a89521c2a74ad2eaab49cd031\",\n                \"type\": \"circle\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2020-07-16 18:43:30\",\n                \"date_updated\": \"2020-07-17 15:55:55\",\n                \"service_type\": \"banned\",\n                \"type_data\": {\n                    \"center\": {\n                        \"latitude\": 40.59249860059826,\n                        \"longitude\": -74.14113194832771\n                    },\n                    \"radius\": 15263.87986427572\n                }\n            }\n        ]\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.44.9\"\n    }\n}"},{"id":"a21fee42-57f6-4e74-a35d-6f41157732e0","name":"Success - Flagged Location","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjcyOCwiZXhwIjoxNjUyMzY0ODg1MTk5LCJhcHBsaWNhdGlvbl9pZCI6NTAsImFjY291bnRfdHlwZSI6ImVtcGxveWVlIiwiY29tcGFueV9pZCI6MX0.9ampkON8mK7UmCbvOCTPWn8Lh-Sflxil6z5R9d5cyq8"}],"url":{"raw":"{{host}}/location/zones?address=55 West Ave NY","host":["{{host}}"],"path":["location","zones"],"query":[{"key":"address","value":"55 West Ave NY"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1064"},{"key":"ETag","value":"W/\"428-ixYG50Snsdlb73THAjGDKPdsi7k\""},{"key":"Date","value":"Fri, 14 May 2021 15:43:41 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"location\": {\n            \"location_id\": 388594,\n            \"address\": \"55 West Ave\",\n            \"address_two\": null,\n            \"city\": \"New York\",\n            \"state\": \"New York\",\n            \"postal_code\": \"11224\",\n            \"country\": \"US\",\n            \"long_name\": \"55 West Ave, New York, NY 11224, United States\",\n            \"short_name\": \"55 West Ave, New York, NY 11224, United States\",\n            \"latitude\": 40.58175,\n            \"longitude\": -73.9679,\n            \"date_created\": \"2021-05-14 15:40:57\",\n            \"date_updated\": \"2021-05-14 15:40:57\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"7400063b1730cbfb4cbef478db188e43\",\n            \"company_id\": null,\n            \"notes\": \"234\",\n            \"type\": \"white\",\n            \"is_flagged\": true\n        },\n        \"zones\": [\n            {\n                \"zone_id\": 63,\n                \"company_id\": 1,\n                \"base_id\": 1,\n                \"old_base_id\": null,\n                \"name\": \"Real Circle11233\",\n                \"color\": \"#66BB6A\",\n                \"priority\": 21,\n                \"bounds_hash\": \"0883511a89521c2a74ad2eaab49cd031\",\n                \"type\": \"circle\",\n                \"is_active\": 1,\n                \"is_deleted\": 0,\n                \"date_created\": \"2020-07-16 18:43:30\",\n                \"date_updated\": \"2020-07-17 15:55:55\",\n                \"service_type\": \"banned\",\n                \"type_data\": {\n                    \"center\": {\n                        \"latitude\": 40.59249860059826,\n                        \"longitude\": -74.14113194832771\n                    },\n                    \"radius\": 15263.87986427572\n                }\n            }\n        ]\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.44.9\"\n    }\n}"},{"id":"31b1568f-6882-42c9-b298-0459e69a6800","name":"Success - No Zones Found","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjcyOCwiZXhwIjoxNjUyMzY0ODg1MTk5LCJhcHBsaWNhdGlvbl9pZCI6NTAsImFjY291bnRfdHlwZSI6ImVtcGxveWVlIiwiY29tcGFueV9pZCI6MX0.9ampkON8mK7UmCbvOCTPWn8Lh-Sflxil6z5R9d5cyq8"}],"url":{"raw":"{{host}}/location/zones?address=5th ave","host":["{{host}}"],"path":["location","zones"],"query":[{"key":"address","value":"5th ave"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"585"},{"key":"ETag","value":"W/\"249-az7Y0OcFqMkf9VH0AWEAktEMJDw\""},{"key":"Date","value":"Fri, 14 May 2021 15:44:33 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"location\": {\n            \"location_id\": 388595,\n            \"address\": null,\n            \"address_two\": null,\n            \"city\": \"Gainesville\",\n            \"state\": \"Florida\",\n            \"postal_code\": \"32601\",\n            \"country\": \"US\",\n            \"long_name\": \"Fifth Avenue, Gainesville, FL, United States\",\n            \"short_name\": \"Fifth Avenue, Gainesville, FL, United States\",\n            \"latitude\": 29.65599,\n            \"longitude\": -82.33499,\n            \"date_created\": \"2021-05-14 15:44:28\",\n            \"date_updated\": \"2021-05-14 15:44:28\",\n            \"place_id\": null,\n            \"apartment_number\": null,\n            \"types\": [\n                \"point\"\n            ],\n            \"hash\": \"0b6023119eb1d1d940a4ce913aefb9f7\",\n            \"company_id\": null\n        },\n        \"zones\": []\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.44.9\"\n    }\n}"}],"_postman_id":"b35652da-4b50-4e69-8d55-93cbd777c265"}],"id":"371046e3-6dca-4fa0-93df-103948c45a92","_postman_id":"371046e3-6dca-4fa0-93df-103948c45a92","description":""},{"name":"Messaging","item":[{"name":"Get conversations","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","tests[\"Has activities\"] = Array.isArray(jsonData.data);","tests[\"Has valid activity\"] = jsonData.data[0].activity_id;"],"id":"4eb85513-1e3c-4474-94b3-6a33c4d3218a"}}],"id":"bf3ad737-0bc8-4944-afc0-c285f558188c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":"{{host}}/message?conversation_type=employee","description":"<p>Gets a list of conversations a user is involved in</p>\n","urlObject":{"path":["message"],"host":["{{host}}"],"query":[{"description":{"content":"<p>'user' or 'employee'. This will return conversations from this user with this account type</p>\n","type":"text/plain"},"key":"conversation_type","value":"employee"}],"variable":[]}},"response":[{"id":"3f9e4963-7988-4fb8-83a2-b1bd92239492","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":"{{host}}/message"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"43327","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 06 Jul 2017 02:23:06 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"a93f-tlzGfNXhmkqwLQjF1pEdfV5SMnY\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1499307786174767","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3Ah2BNshj1MG_MNYxaGuLz2KmeCQ29D65x.blOymujVrMh4IjZXjEoWyqAf7dbW25MOF8AfszQQArg","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":[{\"message_id\":35873,\"conversation_id\":\"6fd54dd7cde7030d5a0f0b40f\",\"company_id\":1,\"from_user_id\":1,\"to_user_id\":2,\"from_account_type\":\"employee\",\"to_account_type\":\"user\",\"message\":\"sup\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-07-06 01:05:46\",\"date_updated\":\"2017-07-06 01:05:46\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"},\"to_user\":{\"user_id\":2,\"company_id\":1,\"password\":\"$2a$08$HzmSje5kiCVkZIMEL9jqbOEojckCufM7p/wXs6c1KNQG94m0AO8.K\",\"hash\":\"JAdFoWGJq\",\"email\":\"fernandez.andy.m@gmail.com\",\"device_id\":null,\"first_name\":\"Andy\",\"last_name\":\"Fernandea\",\"location_id\":null,\"phone_country\":\"US\",\"phone\":\"3472482681\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":null,\"payment_processor_id\":null,\"payment_processor_card_id\":null,\"card_last_4\":null,\"card_address_line1\":null,\"card_address_line2\":null,\"card_address_city\":null,\"card_address_state\":null,\"card_address_zip\":null,\"card_address_country\":null,\"date_created\":\"2015-12-03 22:52:20\",\"date_updated\":\"2017-01-19 19:42:11\",\"last_login_date\":\"2016-01-27 13:52:35\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"_type\":\"user\"}},{\"message_id\":35868,\"conversation_id\":\"e37ae21997d56cbc7e6682efd\",\"company_id\":1,\"from_user_id\":186,\"to_user_id\":1,\"from_account_type\":\"employee\",\"to_account_type\":\"employee\",\"message\":\"Call passenger, cannot park infront\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-01-16 16:45:32\",\"date_updated\":\"2017-01-16 16:45:32\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":186,\"driver_number\":999,\"first_name\":\"Ash\",\"last_name\":\"Driver\",\"username\":\"ashdriver@mlcabs\",\"email\":\"ashwin@liverydesk.com\",\"password\":\"$2a$08$Mh4Pa42iVcl9YGwapTopReliWPZsOGWQudFluoDzyM1JtTAj/QGW.\",\"password_hint\":\"pa*****4\",\"hash\":\"g1bW2sG6Zl\",\"company_id\":1,\"location_id\":451,\"primary_phone_country\":\"US\",\"primary_phone\":\"1234445959\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":\"2017-05-18\",\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"123\",\"hack_license_expiration\":\"2020-07-22\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2020-07-22\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"1.3.8-android-development-build-34\",\"device_id\":null,\"date_created\":\"2014-07-22 15:00:29\",\"date_updated\":\"2017-06-10 18:59:46\",\"car_type_id\":191,\"new_car_type_id\":1,\"car_make\":\"BMW\",\"car_model\":\"M3\",\"car_year\":2015,\"car_color\":\"White\",\"registration_number\":\"123\",\"registration_expiration\":\"2020-07-22\",\"registration_owner_name\":\"Test Driver\",\"license_plate_number\":\"65464\",\"insurance_policy_number\":\"123\",\"insurance_provider_name\":\"123\",\"insurance_expiration_date\":\"2020-07-22\",\"tlc_number\":\"123\",\"tlc_expiration_date\":\"2020-07-22\",\"tlc_inspection_date\":\"2020-07-22\",\"tlc_inspection_expiration_date\":\"2020-07-22\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"_type\":\"employee\"},\"to_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"}},{\"message_id\":35867,\"conversation_id\":\"5041a26a43f927fa47c15e8f5\",\"company_id\":1,\"from_user_id\":1,\"to_user_id\":186,\"from_account_type\":\"employee\",\"to_account_type\":\"employee\",\"message\":\"Passenger is coming down\",\"is_read\":1,\"date_read\":\"2017-01-16 16:45:32\",\"date_created\":\"2017-01-16 16:45:23\",\"date_updated\":\"2017-01-16 16:45:32\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"},\"to_user\":{\"employee_id\":186,\"driver_number\":999,\"first_name\":\"Ash\",\"last_name\":\"Driver\",\"username\":\"ashdriver@mlcabs\",\"email\":\"ashwin@liverydesk.com\",\"password\":\"$2a$08$Mh4Pa42iVcl9YGwapTopReliWPZsOGWQudFluoDzyM1JtTAj/QGW.\",\"password_hint\":\"pa*****4\",\"hash\":\"g1bW2sG6Zl\",\"company_id\":1,\"location_id\":451,\"primary_phone_country\":\"US\",\"primary_phone\":\"1234445959\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":\"2017-05-18\",\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"123\",\"hack_license_expiration\":\"2020-07-22\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2020-07-22\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"1.3.8-android-development-build-34\",\"device_id\":null,\"date_created\":\"2014-07-22 15:00:29\",\"date_updated\":\"2017-06-10 18:59:46\",\"car_type_id\":191,\"new_car_type_id\":1,\"car_make\":\"BMW\",\"car_model\":\"M3\",\"car_year\":2015,\"car_color\":\"White\",\"registration_number\":\"123\",\"registration_expiration\":\"2020-07-22\",\"registration_owner_name\":\"Test Driver\",\"license_plate_number\":\"65464\",\"insurance_policy_number\":\"123\",\"insurance_provider_name\":\"123\",\"insurance_expiration_date\":\"2020-07-22\",\"tlc_number\":\"123\",\"tlc_expiration_date\":\"2020-07-22\",\"tlc_inspection_date\":\"2020-07-22\",\"tlc_inspection_expiration_date\":\"2020-07-22\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"_type\":\"employee\"}},{\"message_id\":35845,\"conversation_id\":\"626b9bbbc82c012779ced458a\",\"company_id\":1,\"from_user_id\":1,\"to_user_id\":644,\"from_account_type\":\"employee\",\"to_account_type\":\"employee\",\"message\":\"Caaak\",\"is_read\":1,\"date_read\":\"2016-03-30 02:21:21\",\"date_created\":\"2016-03-30 02:21:21\",\"date_updated\":\"2016-03-30 02:21:21\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"},\"to_user\":{\"employee_id\":644,\"driver_number\":1000,\"first_name\":\"Dan\",\"last_name\":\"Driver\",\"username\":\"dandriver@mlcabs\",\"email\":\"test@test.com\",\"password\":\"$2a$08$wpvOcrFrtmjL2EjRluy6u./wpHG9mSB1fRA8WWmGohBm4sUDk9A76\",\"password_hint\":\"pa*****4\",\"hash\":\"V1ZGuPMTx\",\"company_id\":1,\"location_id\":386226,\"primary_phone_country\":\"US\",\"primary_phone\":\"1231232132\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":\"2017-05-24\",\"base\":null,\"base_id\":1,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"asdfasdf\",\"hack_license_expiration\":\"2018-03-30\",\"driver_license_number\":\"asdfasdf\",\"driver_license_expiration\":\"2018-03-31\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"iOS - V1.0.1 - Build 1\",\"device_id\":null,\"date_created\":\"2016-03-16 15:17:04\",\"date_updated\":\"2017-05-17 20:56:27\",\"car_type_id\":1,\"new_car_type_id\":1,\"car_make\":\"asdf\",\"car_model\":\"asdf\",\"car_year\":2016,\"car_color\":\"White\",\"registration_number\":\"123\",\"registration_expiration\":\"2018-03-31\",\"registration_owner_name\":\"asdf\",\"license_plate_number\":\"123\",\"insurance_policy_number\":\"123123\",\"insurance_provider_name\":\"123123\",\"insurance_expiration_date\":\"2018-03-30\",\"tlc_number\":\"asdfasdf\",\"tlc_expiration_date\":\"2018-03-30\",\"tlc_inspection_date\":\"2018-03-30\",\"tlc_inspection_expiration_date\":\"2018-03-30\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"_type\":\"employee\"}},{\"message_id\":35843,\"conversation_id\":\"027d9a66f04837ef19f99157f\",\"company_id\":1,\"from_user_id\":644,\"to_user_id\":1,\"from_account_type\":\"employee\",\"to_account_type\":\"employee\",\"message\":\"ok\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2016-03-28 20:49:56\",\"date_updated\":\"2016-03-28 20:49:56\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":644,\"driver_number\":1000,\"first_name\":\"Dan\",\"last_name\":\"Driver\",\"username\":\"dandriver@mlcabs\",\"email\":\"test@test.com\",\"password\":\"$2a$08$wpvOcrFrtmjL2EjRluy6u./wpHG9mSB1fRA8WWmGohBm4sUDk9A76\",\"password_hint\":\"pa*****4\",\"hash\":\"V1ZGuPMTx\",\"company_id\":1,\"location_id\":386226,\"primary_phone_country\":\"US\",\"primary_phone\":\"1231232132\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":\"2017-05-24\",\"base\":null,\"base_id\":1,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"asdfasdf\",\"hack_license_expiration\":\"2018-03-30\",\"driver_license_number\":\"asdfasdf\",\"driver_license_expiration\":\"2018-03-31\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"iOS - V1.0.1 - Build 1\",\"device_id\":null,\"date_created\":\"2016-03-16 15:17:04\",\"date_updated\":\"2017-05-17 20:56:27\",\"car_type_id\":1,\"new_car_type_id\":1,\"car_make\":\"asdf\",\"car_model\":\"asdf\",\"car_year\":2016,\"car_color\":\"White\",\"registration_number\":\"123\",\"registration_expiration\":\"2018-03-31\",\"registration_owner_name\":\"asdf\",\"license_plate_number\":\"123\",\"insurance_policy_number\":\"123123\",\"insurance_provider_name\":\"123123\",\"insurance_expiration_date\":\"2018-03-30\",\"tlc_number\":\"asdfasdf\",\"tlc_expiration_date\":\"2018-03-30\",\"tlc_inspection_date\":\"2018-03-30\",\"tlc_inspection_expiration_date\":\"2018-03-30\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"_type\":\"employee\"},\"to_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"}},{\"message_id\":35811,\"conversation_id\":\"7d462dff4ca50fdb86203dc40\",\"company_id\":1,\"from_user_id\":639,\"to_user_id\":1,\"from_account_type\":\"employee\",\"to_account_type\":\"employee\",\"message\":\"Copy, 10-4\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2016-03-05 02:06:52\",\"date_updated\":\"2016-03-05 02:06:52\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":639,\"driver_number\":888,\"first_name\":\"Fuck\",\"last_name\":\"Goodreads\",\"username\":\"rajdriver@mlcabs\",\"email\":\"rtimal@gmail.com\",\"password\":\"$2a$08$431Md4YrutgODrYnZckCIerQOWpR1HOHhwIhC3k7M3q5I1xuupBzO\",\"password_hint\":\"12***6\",\"hash\":\"4yQa3mJ2e\",\"company_id\":1,\"location_id\":386184,\"primary_phone_country\":\"US\",\"primary_phone\":\"1231231231\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":1,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"asdfadsf\",\"hack_license_expiration\":\"2017-02-28\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2017-02-28\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"iOS - V1.0.3 - Build 1.0.3.4\",\"device_id\":null,\"date_created\":\"2016-03-02 01:10:58\",\"date_updated\":\"2017-03-29 22:09:47\",\"car_type_id\":1,\"new_car_type_id\":1,\"car_make\":\"Womp\",\"car_model\":\"Erator\",\"car_year\":2015,\"car_color\":\"Silver\",\"registration_number\":\"asdfasdf\",\"registration_expiration\":\"2017-02-28\",\"registration_owner_name\":\"Herp\",\"license_plate_number\":\"Derp\",\"insurance_policy_number\":\"What\",\"insurance_provider_name\":\"Insurance\",\"insurance_expiration_date\":\"2017-02-28\",\"tlc_number\":\"asdfasdf\",\"tlc_expiration_date\":\"2017-02-28\",\"tlc_inspection_date\":\"2017-02-28\",\"tlc_inspection_expiration_date\":\"2017-02-28\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"_type\":\"employee\"},\"to_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"}},{\"message_id\":35797,\"conversation_id\":\"5311ab1cde7682deffaccba8b\",\"company_id\":1,\"from_user_id\":642,\"to_user_id\":1,\"from_account_type\":\"employee\",\"to_account_type\":\"employee\",\"message\":\"Negative, no show\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2016-03-05 01:44:35\",\"date_updated\":\"2016-03-05 01:44:35\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":642,\"driver_number\":555,\"first_name\":\"Ameer\",\"last_name\":\"Driver\",\"username\":\"ameerdriver@mlcabs\",\"email\":\"ameerdriver@mlcabs.com\",\"password\":\"$2a$08$xCkU7sdhrrkeKoPwPTE.CehZ66zTZWrqFEmT1BayJK.Ro.saw3c8C\",\"password_hint\":\"12***6\",\"hash\":\"N1hve4J3l\",\"company_id\":1,\"location_id\":386184,\"primary_phone_country\":\"US\",\"primary_phone\":\"1231231232\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":0,\"is_deleted\":1,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"asdfasdf\",\"hack_license_expiration\":\"2016-03-31\",\"driver_license_number\":\"asdfasdf\",\"driver_license_expiration\":\"2020-08-19\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"iOS - V1.0.1 - Build 1\",\"device_id\":null,\"date_created\":\"2016-03-02 01:26:36\",\"date_updated\":\"2017-03-29 22:09:41\",\"car_type_id\":1,\"new_car_type_id\":1,\"car_make\":\"BM\",\"car_model\":\"X\",\"car_year\":2015,\"car_color\":\"Silver\",\"registration_number\":\"asdfasdf\",\"registration_expiration\":\"2017-03-31\",\"registration_owner_name\":\"asdfasdf\",\"license_plate_number\":\"asdfasdf\",\"insurance_policy_number\":\"asdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2017-03-31\",\"tlc_number\":\"asdfasdf\",\"tlc_expiration_date\":\"2017-03-31\",\"tlc_inspection_date\":\"2017-03-31\",\"tlc_inspection_expiration_date\":\"2017-03-31\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"_type\":\"employee\"},\"to_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"}},{\"message_id\":35796,\"conversation_id\":\"7d3554483ac8ebc32f4fae47a\",\"company_id\":1,\"from_user_id\":1,\"to_user_id\":642,\"from_account_type\":\"employee\",\"to_account_type\":\"employee\",\"message\":\"Give passenger a few more minutes\",\"is_read\":1,\"date_read\":\"2016-03-05 01:44:30\",\"date_created\":\"2016-03-05 01:44:29\",\"date_updated\":\"2016-03-05 01:44:30\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"},\"to_user\":{\"employee_id\":642,\"driver_number\":555,\"first_name\":\"Ameer\",\"last_name\":\"Driver\",\"username\":\"ameerdriver@mlcabs\",\"email\":\"ameerdriver@mlcabs.com\",\"password\":\"$2a$08$xCkU7sdhrrkeKoPwPTE.CehZ66zTZWrqFEmT1BayJK.Ro.saw3c8C\",\"password_hint\":\"12***6\",\"hash\":\"N1hve4J3l\",\"company_id\":1,\"location_id\":386184,\"primary_phone_country\":\"US\",\"primary_phone\":\"1231231232\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":0,\"is_deleted\":1,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"asdfasdf\",\"hack_license_expiration\":\"2016-03-31\",\"driver_license_number\":\"asdfasdf\",\"driver_license_expiration\":\"2020-08-19\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"iOS - V1.0.1 - Build 1\",\"device_id\":null,\"date_created\":\"2016-03-02 01:26:36\",\"date_updated\":\"2017-03-29 22:09:41\",\"car_type_id\":1,\"new_car_type_id\":1,\"car_make\":\"BM\",\"car_model\":\"X\",\"car_year\":2015,\"car_color\":\"Silver\",\"registration_number\":\"asdfasdf\",\"registration_expiration\":\"2017-03-31\",\"registration_owner_name\":\"asdfasdf\",\"license_plate_number\":\"asdfasdf\",\"insurance_policy_number\":\"asdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2017-03-31\",\"tlc_number\":\"asdfasdf\",\"tlc_expiration_date\":\"2017-03-31\",\"tlc_inspection_date\":\"2017-03-31\",\"tlc_inspection_expiration_date\":\"2017-03-31\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"_type\":\"employee\"}},{\"message_id\":35791,\"conversation_id\":\"15139184663812808a4ce7ddd\",\"company_id\":1,\"from_user_id\":641,\"to_user_id\":1,\"from_account_type\":\"employee\",\"to_account_type\":\"employee\",\"message\":\"fuckerrrrrrr\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2016-03-05 01:43:49\",\"date_updated\":\"2016-03-05 01:43:49\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":641,\"driver_number\":777,\"first_name\":\"Kishan\",\"last_name\":\"Ramnauth\",\"username\":\"kishdriver@mlcabs\",\"email\":\"kramnauth@gmail.com\",\"password\":\"$2a$08$YAd3Z1np/FsDPowaP16cmOJndbqT6pCPXjwJ/CEsEq/7Y2s0R6ony\",\"password_hint\":\"12***6\",\"hash\":\"4yDzeEkhx\",\"company_id\":1,\"location_id\":386184,\"primary_phone_country\":\"US\",\"primary_phone\":\"1231231231\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":1,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"asdfasdf\",\"hack_license_expiration\":\"2016-07-21\",\"driver_license_number\":\"asdf\",\"driver_license_expiration\":\"2020-02-05\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"iOS - V1.0.3 - Build 1.0.3.2\",\"device_id\":null,\"date_created\":\"2016-03-02 01:25:10\",\"date_updated\":\"2017-03-29 22:09:56\",\"car_type_id\":1,\"new_car_type_id\":1,\"car_make\":\"Herp\",\"car_model\":\"Derp\",\"car_year\":2014,\"car_color\":\"Gray\",\"registration_number\":\"asdfasdf\",\"registration_expiration\":\"2016-12-24\",\"registration_owner_name\":\"asdfasdf\",\"license_plate_number\":\"adsfasdf\",\"insurance_policy_number\":\"asdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2020-08-27\",\"tlc_number\":\"asdfasdf\",\"tlc_expiration_date\":\"2017-09-16\",\"tlc_inspection_date\":\"2017-07-14\",\"tlc_inspection_expiration_date\":\"2017-01-27\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"_type\":\"employee\"},\"to_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"}},{\"message_id\":35789,\"conversation_id\":\"7bb3fcb6dcc004d4d3c6d5b91\",\"company_id\":1,\"from_user_id\":1,\"to_user_id\":641,\"from_account_type\":\"employee\",\"to_account_type\":\"employee\",\"message\":\"No\",\"is_read\":1,\"date_read\":\"2016-03-05 01:43:36\",\"date_created\":\"2016-03-05 01:43:35\",\"date_updated\":\"2016-03-05 01:43:36\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"},\"to_user\":{\"employee_id\":641,\"driver_number\":777,\"first_name\":\"Kishan\",\"last_name\":\"Ramnauth\",\"username\":\"kishdriver@mlcabs\",\"email\":\"kramnauth@gmail.com\",\"password\":\"$2a$08$YAd3Z1np/FsDPowaP16cmOJndbqT6pCPXjwJ/CEsEq/7Y2s0R6ony\",\"password_hint\":\"12***6\",\"hash\":\"4yDzeEkhx\",\"company_id\":1,\"location_id\":386184,\"primary_phone_country\":\"US\",\"primary_phone\":\"1231231231\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":1,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"asdfasdf\",\"hack_license_expiration\":\"2016-07-21\",\"driver_license_number\":\"asdf\",\"driver_license_expiration\":\"2020-02-05\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"iOS - V1.0.3 - Build 1.0.3.2\",\"device_id\":null,\"date_created\":\"2016-03-02 01:25:10\",\"date_updated\":\"2017-03-29 22:09:56\",\"car_type_id\":1,\"new_car_type_id\":1,\"car_make\":\"Herp\",\"car_model\":\"Derp\",\"car_year\":2014,\"car_color\":\"Gray\",\"registration_number\":\"asdfasdf\",\"registration_expiration\":\"2016-12-24\",\"registration_owner_name\":\"asdfasdf\",\"license_plate_number\":\"adsfasdf\",\"insurance_policy_number\":\"asdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2020-08-27\",\"tlc_number\":\"asdfasdf\",\"tlc_expiration_date\":\"2017-09-16\",\"tlc_inspection_date\":\"2017-07-14\",\"tlc_inspection_expiration_date\":\"2017-01-27\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"_type\":\"employee\"}},{\"message_id\":35785,\"conversation_id\":\"895de1f0b728125c6316a3b98\",\"company_id\":1,\"from_user_id\":1,\"to_user_id\":639,\"from_account_type\":\"employee\",\"to_account_type\":\"employee\",\"message\":\"Give passenger a few more minutes\",\"is_read\":1,\"date_read\":\"2016-03-05 02:06:43\",\"date_created\":\"2016-03-05 01:43:13\",\"date_updated\":\"2016-03-05 02:06:43\",\"date_deleted\":null,\"job_id\":null,\"total_unread_messages\":12797,\"_type\":\"generic\",\"from_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-07-05 20:45:49\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_SJS-lA94b.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"},\"to_user\":{\"employee_id\":639,\"driver_number\":888,\"first_name\":\"Fuck\",\"last_name\":\"Goodreads\",\"username\":\"rajdriver@mlcabs\",\"email\":\"rtimal@gmail.com\",\"password\":\"$2a$08$431Md4YrutgODrYnZckCIerQOWpR1HOHhwIhC3k7M3q5I1xuupBzO\",\"password_hint\":\"12***6\",\"hash\":\"4yQa3mJ2e\",\"company_id\":1,\"location_id\":386184,\"primary_phone_country\":\"US\",\"primary_phone\":\"1231231231\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":1,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"asdfadsf\",\"hack_license_expiration\":\"2017-02-28\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2017-02-28\",\"driver_license_class\":\"D\",\"is_car_owner\":0,\"dispatch_app_version\":\"iOS - V1.0.3 - Build 1.0.3.4\",\"device_id\":null,\"date_created\":\"2016-03-02 01:10:58\",\"date_updated\":\"2017-03-29 22:09:47\",\"car_type_id\":1,\"new_car_type_id\":1,\"car_make\":\"Womp\",\"car_model\":\"Erator\",\"car_year\":2015,\"car_color\":\"Silver\",\"registration_number\":\"asdfasdf\",\"registration_expiration\":\"2017-02-28\",\"registration_owner_name\":\"Herp\",\"license_plate_number\":\"Derp\",\"insurance_policy_number\":\"What\",\"insurance_provider_name\":\"Insurance\",\"insurance_expiration_date\":\"2017-02-28\",\"tlc_number\":\"asdfasdf\",\"tlc_expiration_date\":\"2017-02-28\",\"tlc_inspection_date\":\"2017-02-28\",\"tlc_inspection_expiration_date\":\"2017-02-28\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"_type\":\"employee\"}}],\"meta\":{\"paging\":{\"per_page\":25,\"total_pages\":3,\"page\":1,\"total_results\":57,\"previous\":null,\"next\":\"http://api.liverydesk.local/v1/message?&_page=2&_limit=25\"},\"code\":200,\"code_description\":\"Ok\",\"items\":11}}"}],"_postman_id":"bf3ad737-0bc8-4944-afc0-c285f558188c"},{"name":"Get conversation by job","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","tests[\"Has activities\"] = Array.isArray(jsonData.data);","tests[\"Has valid activity\"] = jsonData.data[0].activity_id;"],"id":"a8cc7f4f-f191-4d2e-be39-2c75f4f693a0"}}],"id":"0bb9defd-ce59-44d5-bf51-e66f9d5d1df0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":"{{host}}/message/conversation?job_id=123","description":"<p>Get a conversation history for a specific job</p>\n","urlObject":{"path":["message","conversation"],"host":["{{host}}"],"query":[{"key":"job_id","value":"123"},{"disabled":true,"key":"converation_id","value":"49ef075d36533f94cc49b3132"},{"disabled":true,"key":"with_user_id","value":""},{"disabled":true,"key":"with_employee_id","value":""}],"variable":[]}},"response":[{"id":"a30b6a6f-0cbb-4c3b-8fff-8dc339434a2b","name":"Get conversation","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":{"raw":"{{host}}/message/conversation?job_id=123","host":["{{host}}"],"path":["message","conversation"],"query":[{"key":"job_id","value":"123"},{"key":"converation_id","value":"49ef075d36533f94cc49b3132","disabled":true},{"key":"with_user_id","value":null,"disabled":true},{"key":"with_employee_id","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"4703","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:28:39 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"125f-z8mUWzKq1bHz5ZzSAlkE6KO0QMk\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":[{\"message_id\":36055,\"conversation_id\":\"1476a684eb089a536310970a4df48bb4\",\"company_id\":1,\"from_account_type\":\"employee\",\"from_user_id\":746,\"to_account_type\":\"employee\",\"to_user_id\":123,\"message\":\"sup\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2018-05-23 14:30:52\",\"date_updated\":\"2018-05-23 14:30:52\",\"date_deleted\":null,\"job_id\":123,\"from_user\":{\"employee_id\":746,\"driver_number\":null,\"first_name\":\"Dexter\",\"last_name\":\"Lee\",\"username\":\"dexteradmin@mlcabs\",\"email\":\"dexter.hnlee@gmail.com\",\"password\":\"$2a$08$zUHyTenkGqt7jjI84NAKP.chSYQDRNeRpL5QCXnI9cyOYjisyA812\",\"password_hint\":\"pa*****4\",\"hash\":\"B1dE8W6Nf\",\"company_id\":1,\"location_id\":386793,\"primary_phone_country\":\"US\",\"primary_phone\":\"2488809081\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":null,\"driver_license_expiration\":null,\"driver_license_class\":null,\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"2018-01-17 17:21:51\",\"date_updated\":\"2018-07-18 19:14:35\",\"car_type_id\":0,\"new_car_type_id\":null,\"car_make\":\"\",\"car_model\":\"\",\"car_year\":0,\"car_color\":null,\"registration_number\":null,\"registration_expiration\":null,\"registration_owner_name\":null,\"license_plate_number\":null,\"insurance_policy_number\":null,\"insurance_provider_name\":null,\"insurance_expiration_date\":null,\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2018-07-18 19:14:35\",\"phone_verified\":1,\"phone_verification_code\":19083,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{},\"profile\":null,\"application_approved_date\":\"2018-01-17 17:21:58\",\"application_approved\":1,\"number_of_ratings\":0,\"average_rating\":0,\"company_commission_data\":null,\"transaction_balance\":0,\"suspended_until\":null,\"date_unsuspending\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"primary_phone_international\":\"+1 248 880 9081\",\"primary_phone_national\":\"(248) 880-9081\"},\"to_user\":{\"employee_id\":123,\"driver_number\":90,\"first_name\":\"Miguel A.\",\"last_name\":\"Brito-Bello\",\"username\":\"brito_90@mlcabs\",\"email\":\"brito_90@mlcabs.com\",\"password\":\"$2a$08$J3nS5hQZOWyqSW3VBhWsDuSfqVs7d0RFGn.jsHDSMpueC1A8wwlrG\",\"password_hint\":\"12*1\",\"hash\":\"lJycu965Wg\",\"company_id\":1,\"location_id\":1083,\"primary_phone_country\":\"US\",\"primary_phone\":\"3474990745\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":1,\"social_security_number\":null,\"date_of_birth\":\"1966-01-04\",\"base\":\"MetroLine\",\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"5082719\",\"hack_license_expiration\":\"2017-06-19\",\"driver_license_number\":\"518 521 584\",\"driver_license_expiration\":\"2022-01-04\",\"driver_license_class\":\"E\",\"is_car_owner\":0,\"dispatch_app_version\":\"0.3.2-Build-61\",\"device_id\":null,\"date_created\":\"2014-07-19 19:30:48\",\"date_updated\":\"2016-02-09 22:30:51\",\"car_type_id\":7,\"new_car_type_id\":7,\"car_make\":\"Nissan\",\"car_model\":\"Armada\",\"car_year\":2004,\"car_color\":\"Blue\",\"registration_number\":\"5N1AA08B94N711840\",\"registration_expiration\":\"2016-07-31\",\"registration_owner_name\":\"Brito-Bello, Miguel A.\",\"license_plate_number\":\"T529975C\",\"insurance_policy_number\":\"FHP0717298-5\",\"insurance_provider_name\":\"GLOBAL LIBERTY INS CO OF NEW YORK\",\"insurance_expiration_date\":\"2016-08-16\",\"tlc_number\":\"5373072\",\"tlc_expiration_date\":\"2016-09-17\",\"tlc_inspection_date\":\"2016-01-30\",\"tlc_inspection_expiration_date\":\"2016-05-31\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"application_approved_date\":null,\"application_approved\":1,\"number_of_ratings\":0,\"average_rating\":0,\"company_commission_data\":null,\"transaction_balance\":0,\"suspended_until\":null,\"date_unsuspending\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"primary_phone_international\":\"+1 347 499 0745\",\"primary_phone_national\":\"(347) 499-0745\"}}],\"meta\":{\"paging\":{\"per_page\":25,\"total_pages\":1,\"page\":1,\"total_results\":1,\"previous\":null,\"next\":null},\"code\":200,\"code_description\":\"Ok\",\"items\":1}}"}],"_postman_id":"0bb9defd-ce59-44d5-bf51-e66f9d5d1df0"},{"name":"Get conversation","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","tests[\"Has activities\"] = Array.isArray(jsonData.data);","tests[\"Has valid activity\"] = jsonData.data[0].activity_id;"],"id":"26c5c9ee-d549-4af3-8a1e-e8a661332e20"}}],"id":"ba782606-3d13-4fec-ae03-0e239882ea32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":"{{host}}/message/conversation?conversation_id=123","description":"<p>Get a conversation history by id</p>\n","urlObject":{"path":["message","conversation"],"host":["{{host}}"],"query":[{"disabled":true,"key":"converation_id","value":"49ef075d36533f94cc49b3132"},{"disabled":true,"key":"with_user_id","value":""},{"disabled":true,"key":"with_employee_id","value":""},{"key":"conversation_id","value":"123"}],"variable":[]}},"response":[{"id":"9cc8f20a-2880-4f8e-96a1-46a31df14c77","name":"Get conversation","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":{"raw":"{{host}}/message/conversation?job_id=123","host":["{{host}}"],"path":["message","conversation"],"query":[{"key":"job_id","value":"123"},{"key":"converation_id","value":"49ef075d36533f94cc49b3132","disabled":true},{"key":"with_user_id","value":null,"disabled":true},{"key":"with_employee_id","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"4703","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:28:39 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"125f-z8mUWzKq1bHz5ZzSAlkE6KO0QMk\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":[{\"message_id\":36055,\"conversation_id\":\"1476a684eb089a536310970a4df48bb4\",\"company_id\":1,\"from_account_type\":\"employee\",\"from_user_id\":746,\"to_account_type\":\"employee\",\"to_user_id\":123,\"message\":\"sup\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2018-05-23 14:30:52\",\"date_updated\":\"2018-05-23 14:30:52\",\"date_deleted\":null,\"job_id\":123,\"from_user\":{\"employee_id\":746,\"driver_number\":null,\"first_name\":\"Dexter\",\"last_name\":\"Lee\",\"username\":\"dexteradmin@mlcabs\",\"email\":\"dexter.hnlee@gmail.com\",\"password\":\"$2a$08$zUHyTenkGqt7jjI84NAKP.chSYQDRNeRpL5QCXnI9cyOYjisyA812\",\"password_hint\":\"pa*****4\",\"hash\":\"B1dE8W6Nf\",\"company_id\":1,\"location_id\":386793,\"primary_phone_country\":\"US\",\"primary_phone\":\"2488809081\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":null,\"driver_license_expiration\":null,\"driver_license_class\":null,\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"2018-01-17 17:21:51\",\"date_updated\":\"2018-07-18 19:14:35\",\"car_type_id\":0,\"new_car_type_id\":null,\"car_make\":\"\",\"car_model\":\"\",\"car_year\":0,\"car_color\":null,\"registration_number\":null,\"registration_expiration\":null,\"registration_owner_name\":null,\"license_plate_number\":null,\"insurance_policy_number\":null,\"insurance_provider_name\":null,\"insurance_expiration_date\":null,\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2018-07-18 19:14:35\",\"phone_verified\":1,\"phone_verification_code\":19083,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{},\"profile\":null,\"application_approved_date\":\"2018-01-17 17:21:58\",\"application_approved\":1,\"number_of_ratings\":0,\"average_rating\":0,\"company_commission_data\":null,\"transaction_balance\":0,\"suspended_until\":null,\"date_unsuspending\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"primary_phone_international\":\"+1 248 880 9081\",\"primary_phone_national\":\"(248) 880-9081\"},\"to_user\":{\"employee_id\":123,\"driver_number\":90,\"first_name\":\"Miguel A.\",\"last_name\":\"Brito-Bello\",\"username\":\"brito_90@mlcabs\",\"email\":\"brito_90@mlcabs.com\",\"password\":\"$2a$08$J3nS5hQZOWyqSW3VBhWsDuSfqVs7d0RFGn.jsHDSMpueC1A8wwlrG\",\"password_hint\":\"12*1\",\"hash\":\"lJycu965Wg\",\"company_id\":1,\"location_id\":1083,\"primary_phone_country\":\"US\",\"primary_phone\":\"3474990745\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":1,\"social_security_number\":null,\"date_of_birth\":\"1966-01-04\",\"base\":\"MetroLine\",\"base_id\":1,\"old_base_id\":\"B01534\",\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"5082719\",\"hack_license_expiration\":\"2017-06-19\",\"driver_license_number\":\"518 521 584\",\"driver_license_expiration\":\"2022-01-04\",\"driver_license_class\":\"E\",\"is_car_owner\":0,\"dispatch_app_version\":\"0.3.2-Build-61\",\"device_id\":null,\"date_created\":\"2014-07-19 19:30:48\",\"date_updated\":\"2016-02-09 22:30:51\",\"car_type_id\":7,\"new_car_type_id\":7,\"car_make\":\"Nissan\",\"car_model\":\"Armada\",\"car_year\":2004,\"car_color\":\"Blue\",\"registration_number\":\"5N1AA08B94N711840\",\"registration_expiration\":\"2016-07-31\",\"registration_owner_name\":\"Brito-Bello, Miguel A.\",\"license_plate_number\":\"T529975C\",\"insurance_policy_number\":\"FHP0717298-5\",\"insurance_provider_name\":\"GLOBAL LIBERTY INS CO OF NEW YORK\",\"insurance_expiration_date\":\"2016-08-16\",\"tlc_number\":\"5373072\",\"tlc_expiration_date\":\"2016-09-17\",\"tlc_inspection_date\":\"2016-01-30\",\"tlc_inspection_expiration_date\":\"2016-05-31\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":null,\"profile\":null,\"application_approved_date\":null,\"application_approved\":1,\"number_of_ratings\":0,\"average_rating\":0,\"company_commission_data\":null,\"transaction_balance\":0,\"suspended_until\":null,\"date_unsuspending\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"primary_phone_international\":\"+1 347 499 0745\",\"primary_phone_national\":\"(347) 499-0745\"}}],\"meta\":{\"paging\":{\"per_page\":25,\"total_pages\":1,\"page\":1,\"total_results\":1,\"previous\":null,\"next\":null},\"code\":200,\"code_description\":\"Ok\",\"items\":1}}"}],"_postman_id":"ba782606-3d13-4fec-ae03-0e239882ea32"},{"name":"Send message","id":"a46310b7-99a6-4d40-913f-021118a4a315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"to_employee_id","value":"704","description":"<p>Only required if sending to another employee</p>\n","type":"text"},{"key":"message","value":"sup","type":"text"},{"key":"job_id","value":"123","description":"<p>Required if driver is on a job and sending a message to a user</p>\n","type":"text"},{"key":"to_user_id","value":"123","description":"<p>Only required if sending to a user</p>\n","type":"text"}]},"url":"{{host}}/message","urlObject":{"path":["message"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"277e1d45-0cdf-4bf7-bf4c-176b9a56eaec","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"to_employee_id","value":"704","type":"text"},{"key":"message","value":"sup","type":"text"},{"key":"job_id","value":"123","type":"text"}]},"url":"{{host}}/message"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"3863","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 20 Jul 2017 14:48:35 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"f17-ukiXpAJ7no8XUTR8DJMZT/T6KXI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500562115386751","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3Aosp9IAz_yGxoC-Jg7m8P06F6pvY3bRZD.wxrt46O5KivIU7xfqb4IbHFjwLMvbwmwKfPf8Mt7EHw","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"message_id\":35881,\"conversation_id\":\"630bbc5cc887ff28168830aa1\",\"company_id\":1,\"from_user_id\":193,\"to_user_id\":704,\"from_account_type\":\"user\",\"to_account_type\":\"employee\",\"message\":\"sup\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-07-20 14:48:35\",\"date_updated\":\"2017-07-20 14:48:35\",\"date_deleted\":null,\"job_id\":123,\"_type\":\"generic\",\"from_user\":{\"user_id\":193,\"company_id\":1,\"password\":\"$2a$08$7OIDuQhHk2RqITzWwtyAuuFv1YTQeziCT8lwoEDUYBD6zBrQmJi.m\",\"hash\":\"R61KKhhOY\",\"email\":\"localtest@liverydesk.com\",\"device_id\":null,\"first_name\":\"wassup\",\"last_name\":\"guy22\",\"location_id\":null,\"phone_country\":\"US\",\"phone\":\"1233832939\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":\"stripe\",\"payment_processor_id\":\"cus_AnglxrUzth0UCh\",\"payment_processor_card_id\":\"card_1AS5UyEgaH5gKO4gQYbgsVhQ\",\"card_last_4\":\"4242\",\"card_address_line1\":\"123 some street\",\"card_address_line2\":\"line 2\",\"card_address_city\":\"new york\",\"card_address_state\":\"ny\",\"card_address_zip\":\"11010\",\"card_address_country\":\"USA\",\"date_created\":\"2017-06-04 23:50:01\",\"date_updated\":\"2017-06-10 17:21:46\",\"last_login_date\":\"2017-06-07 14:15:14\",\"phone_verified\":0,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"_type\":\"user\"},\"to_user\":{\"employee_id\":704,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"testdr123@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$naKQdwt52pH8FDm5z5BsDOKSvVN5WKhoCH2MPxQKiqWYllaIlCX7W\",\"password_hint\":\"pa*****4\",\"hash\":\"Hk4ykPmb-\",\"company_id\":1,\"location_id\":386303,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"05/24/2019\",\"hack_license_expiration\":\"2019-05-24\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"2017-05-24 19:28:28\",\"date_updated\":\"2017-07-14 00:15:22\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2019-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":\"05/24/2019\",\"tlc_expiration_date\":\"2019-05-24\",\"tlc_inspection_date\":\"2019-05-24\",\"tlc_inspection_expiration_date\":\"2019-05-24\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":1,\"phone_verification_code\":null,\"phone_verified_date\":\"2017-06-21 22:01:31\",\"picture\":{\"stored_name_sm\":\"zZeNg8emT-sm.png\",\"stored_name\":\"zZeNg8emT.png\",\"type\":\"image\",\"original_filename\":\"Screen Shot 2017-06-22 at 10.20.52 PM.png\",\"remote_path\":\"liverydesk-public/employee/picture\",\"url_fullsize\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT.png\",\"url_small\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT-sm.png\"},\"attributes\":{\"has_own_vehicle\":\"1\",\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_rJxURDYE-.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"}},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"a46310b7-99a6-4d40-913f-021118a4a315"},{"name":"Get unread messages","id":"b8603ce4-fe9b-47b4-b018-f29b84a7721c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/message/unread?count_only=true","urlObject":{"path":["message","unread"],"host":["{{host}}"],"query":[{"key":"count_only","value":"true"},{"disabled":true,"key":"include_user_accounts","value":"true"}],"variable":[]}},"response":[{"id":"9dbec4e3-3957-4890-b928-863ac4149f16","name":"Minimal messages","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/message/unread","host":["{{host}}"],"path":["message","unread"],"query":[{"key":"count_only","value":"true","disabled":true},{"key":"include_user_accounts","value":"true","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1178","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 14 Sep 2017 21:54:37 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"49a-jtmyx2aa1w1YABlO5kvVY1vM2zo\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1505426077686822","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3Awou2T7MYgyS-lJWHjcHPopsFq83pvWRz.OvoC4CoLoeyAGWlZILVrCnM0h7oejsThnUK%2FzKGYMPw","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":[{\"message_id\":35913,\"conversation_id\":\"cb612814d356cc557a73af8c494f4666\",\"company_id\":1,\"from_account_type\":\"employee\",\"from_user_id\":1,\"to_account_type\":\"employee\",\"to_user_id\":704,\"message\":\"34344\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-08-04 18:26:28\",\"date_updated\":\"2017-09-14 19:24:50\",\"date_deleted\":null,\"job_id\":null},{\"message_id\":35911,\"conversation_id\":\"cb612814d356cc557a73af8c494f4666\",\"company_id\":1,\"from_account_type\":\"employee\",\"from_user_id\":1,\"to_account_type\":\"employee\",\"to_user_id\":704,\"message\":\"Suppp\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-08-04 18:26:09\",\"date_updated\":\"2017-09-14 19:24:50\",\"date_deleted\":null,\"job_id\":null},{\"message_id\":35909,\"conversation_id\":\"cb612814d356cc557a73af8c494f4666\",\"company_id\":1,\"from_account_type\":\"employee\",\"from_user_id\":1,\"to_account_type\":\"employee\",\"to_user_id\":704,\"message\":\"234234dcc\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-08-04 18:25:54\",\"date_updated\":\"2017-09-14 19:24:50\",\"date_deleted\":null,\"job_id\":null}],\"meta\":{\"paging\":{\"per_page\":25,\"total_pages\":1,\"page\":1,\"total_results\":3,\"previous\":null,\"next\":null},\"code\":200,\"code_description\":\"Ok\",\"items\":3}}"},{"id":"cc4ae727-d5d5-4e83-9822-f0f1d378dcbb","name":"Count only","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/message/unread?count_only=true","host":["{{host}}"],"path":["message","unread"],"query":[{"key":"count_only","value":"true"},{"key":"include_user_accounts","value":"true","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"71","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 14 Sep 2017 19:48:54 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"47-tOtZhhj7Iek8UW2BvGsmkFc8Rfw\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1505418534141681","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3Awou2T7MYgyS-lJWHjcHPopsFq83pvWRz.OvoC4CoLoeyAGWlZILVrCnM0h7oejsThnUK%2FzKGYMPw","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"total_unread\":3},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"},{"id":"d9fe5e28-04b9-4f2d-bc48-6c6dcb32dbcf","name":"Full unread messages","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/message/unread?include_user_accounts=true","host":["{{host}}"],"path":["message","unread"],"query":[{"key":"count_only","value":"true","disabled":true},{"key":"include_user_accounts","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"14501","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 14 Sep 2017 21:55:04 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"38a5-eHE23F46noH7Qu1pkqCofECebQQ\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1505426104094444","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3Awou2T7MYgyS-lJWHjcHPopsFq83pvWRz.OvoC4CoLoeyAGWlZILVrCnM0h7oejsThnUK%2FzKGYMPw","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":[{\"message_id\":35913,\"conversation_id\":\"cb612814d356cc557a73af8c494f4666\",\"company_id\":1,\"from_account_type\":\"employee\",\"from_user_id\":1,\"to_account_type\":\"employee\",\"to_user_id\":704,\"message\":\"34344\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-08-04 18:26:28\",\"date_updated\":\"2017-09-14 19:24:50\",\"date_deleted\":null,\"job_id\":null,\"from_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Ash\",\"last_name\":\"Admin\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-08-01 03:00:44\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{},\"profile\":\"I'm the best\",\"application_approved_date\":null,\"application_approved\":1,\"primary_phone_international\":\"+1 917 123 4567\",\"primary_phone_national\":\"(917) 123-4567\"},\"to_user\":{\"employee_id\":704,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"testdr123@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$NQI/oUORbJHyciMW10.Ek.xDJ8O0xGlYWhSsWSpMylz6cRi.G4Nky\",\"password_hint\":\"pa*****4\",\"hash\":\"Hk4ykPmb-\",\"company_id\":1,\"location_id\":386303,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"05/24/2019\",\"hack_license_expiration\":\"2019-05-24\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"2017-05-24 19:28:28\",\"date_updated\":\"2017-09-01 21:50:24\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2019-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":\"05/24/2019\",\"tlc_expiration_date\":\"2019-05-24\",\"tlc_inspection_date\":\"2019-05-24\",\"tlc_inspection_expiration_date\":\"2019-05-24\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":0,\"phone_verification_code\":null,\"phone_verified_date\":\"2017-06-21 22:01:31\",\"picture\":{\"stored_name_sm\":\"zZeNg8emT-sm.png\",\"stored_name\":\"zZeNg8emT.png\",\"type\":\"image\",\"original_filename\":\"Screen Shot 2017-06-22 at 10.20.52 PM.png\",\"remote_path\":\"liverydesk-public/employee/picture\",\"url_fullsize\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT.png\",\"url_small\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT-sm.png\"},\"attributes\":{\"language\":\"English123\",\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_HkaKMOYNZ.png\",\"religion\":\"Hinjew\",\"vehicle_engine_size\":\"555\"},\"profile\":\"I'm the best\",\"application_approved_date\":\"2017-09-01 21:50:24\",\"application_approved\":1,\"language\":\"English123\",\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_HkaKMOYNZ.png\",\"religion\":\"Hinjew\",\"vehicle_engine_size\":\"555\",\"primary_phone_international\":\"+1 917 123 4567\",\"primary_phone_national\":\"(917) 123-4567\"}},{\"message_id\":35911,\"conversation_id\":\"cb612814d356cc557a73af8c494f4666\",\"company_id\":1,\"from_account_type\":\"employee\",\"from_user_id\":1,\"to_account_type\":\"employee\",\"to_user_id\":704,\"message\":\"Suppp\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-08-04 18:26:09\",\"date_updated\":\"2017-09-14 19:24:50\",\"date_deleted\":null,\"job_id\":null,\"from_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Ash\",\"last_name\":\"Admin\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-08-01 03:00:44\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{},\"profile\":\"I'm the best\",\"application_approved_date\":null,\"application_approved\":1,\"primary_phone_international\":\"+1 917 123 4567\",\"primary_phone_national\":\"(917) 123-4567\"},\"to_user\":{\"employee_id\":704,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"testdr123@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$NQI/oUORbJHyciMW10.Ek.xDJ8O0xGlYWhSsWSpMylz6cRi.G4Nky\",\"password_hint\":\"pa*****4\",\"hash\":\"Hk4ykPmb-\",\"company_id\":1,\"location_id\":386303,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"05/24/2019\",\"hack_license_expiration\":\"2019-05-24\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"2017-05-24 19:28:28\",\"date_updated\":\"2017-09-01 21:50:24\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2019-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":\"05/24/2019\",\"tlc_expiration_date\":\"2019-05-24\",\"tlc_inspection_date\":\"2019-05-24\",\"tlc_inspection_expiration_date\":\"2019-05-24\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":0,\"phone_verification_code\":null,\"phone_verified_date\":\"2017-06-21 22:01:31\",\"picture\":{\"stored_name_sm\":\"zZeNg8emT-sm.png\",\"stored_name\":\"zZeNg8emT.png\",\"type\":\"image\",\"original_filename\":\"Screen Shot 2017-06-22 at 10.20.52 PM.png\",\"remote_path\":\"liverydesk-public/employee/picture\",\"url_fullsize\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT.png\",\"url_small\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT-sm.png\"},\"attributes\":{\"language\":\"English123\",\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_HkaKMOYNZ.png\",\"religion\":\"Hinjew\",\"vehicle_engine_size\":\"555\"},\"profile\":\"I'm the best\",\"application_approved_date\":\"2017-09-01 21:50:24\",\"application_approved\":1,\"language\":\"English123\",\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_HkaKMOYNZ.png\",\"religion\":\"Hinjew\",\"vehicle_engine_size\":\"555\",\"primary_phone_international\":\"+1 917 123 4567\",\"primary_phone_national\":\"(917) 123-4567\"}},{\"message_id\":35909,\"conversation_id\":\"cb612814d356cc557a73af8c494f4666\",\"company_id\":1,\"from_account_type\":\"employee\",\"from_user_id\":1,\"to_account_type\":\"employee\",\"to_user_id\":704,\"message\":\"234234dcc\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-08-04 18:25:54\",\"date_updated\":\"2017-09-14 19:24:50\",\"date_deleted\":null,\"job_id\":null,\"from_user\":{\"employee_id\":1,\"driver_number\":123,\"first_name\":\"Ash\",\"last_name\":\"Admin\",\"username\":\"ashwin@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$yScpUtcfVAl/aLNGIf11w.8aF9F0tPGqPdRXvlzaiUWjm6xgtHIZa\",\"password_hint\":\"pa*****4\",\"hash\":\"xJuHguYan\",\"company_id\":1,\"location_id\":9,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":1,\"role_name\":\"admin\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"0000-00-00 00:00:00\",\"date_updated\":\"2017-08-01 03:00:44\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2017-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"on_duty\":1,\"on_duty_date\":\"2017-06-12 01:19:15\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"attributes\":{},\"profile\":\"I'm the best\",\"application_approved_date\":null,\"application_approved\":1,\"primary_phone_international\":\"+1 917 123 4567\",\"primary_phone_national\":\"(917) 123-4567\"},\"to_user\":{\"employee_id\":704,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"testdr123@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$NQI/oUORbJHyciMW10.Ek.xDJ8O0xGlYWhSsWSpMylz6cRi.G4Nky\",\"password_hint\":\"pa*****4\",\"hash\":\"Hk4ykPmb-\",\"company_id\":1,\"location_id\":386303,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"05/24/2019\",\"hack_license_expiration\":\"2019-05-24\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"2017-05-24 19:28:28\",\"date_updated\":\"2017-09-01 21:50:24\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2019-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":\"05/24/2019\",\"tlc_expiration_date\":\"2019-05-24\",\"tlc_inspection_date\":\"2019-05-24\",\"tlc_inspection_expiration_date\":\"2019-05-24\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":0,\"phone_verification_code\":null,\"phone_verified_date\":\"2017-06-21 22:01:31\",\"picture\":{\"stored_name_sm\":\"zZeNg8emT-sm.png\",\"stored_name\":\"zZeNg8emT.png\",\"type\":\"image\",\"original_filename\":\"Screen Shot 2017-06-22 at 10.20.52 PM.png\",\"remote_path\":\"liverydesk-public/employee/picture\",\"url_fullsize\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT.png\",\"url_small\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT-sm.png\"},\"attributes\":{\"language\":\"English123\",\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_HkaKMOYNZ.png\",\"religion\":\"Hinjew\",\"vehicle_engine_size\":\"555\"},\"profile\":\"I'm the best\",\"application_approved_date\":\"2017-09-01 21:50:24\",\"application_approved\":1,\"language\":\"English123\",\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_HkaKMOYNZ.png\",\"religion\":\"Hinjew\",\"vehicle_engine_size\":\"555\",\"primary_phone_international\":\"+1 917 123 4567\",\"primary_phone_national\":\"(917) 123-4567\"}}],\"meta\":{\"paging\":{\"per_page\":25,\"total_pages\":1,\"page\":1,\"total_results\":3,\"previous\":null,\"next\":null},\"code\":200,\"code_description\":\"Ok\",\"items\":3}}"}],"_postman_id":"b8603ce4-fe9b-47b4-b018-f29b84a7721c"},{"name":"Mark message as read","id":"18efe7ed-ab2c-4eec-84c0-e9c3fcbca87d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"message_id","value":"35913","description":"<p>Send the ID of the very last message received so all message before it will be marked as read</p>\n","type":"text"}]},"url":"{{host}}/message/markasread","urlObject":{"path":["message","markasread"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"873c80bf-3c4c-43c3-9af9-2a8cc0adc07e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"to_employee_id","value":"704","type":"text"},{"key":"message","value":"sup","type":"text"},{"key":"job_id","value":"123","type":"text"}]},"url":"{{host}}/message"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"3863","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 20 Jul 2017 14:48:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"f17-ukiXpAJ7no8XUTR8DJMZT/T6KXI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"x-parent","value":"0","name":"x-parent","description":"Custom header"},{"key":"x-server-send","value":"1500562115386751","name":"x-server-send","description":"Custom header"}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3Aosp9IAz_yGxoC-Jg7m8P06F6pvY3bRZD.wxrt46O5KivIU7xfqb4IbHFjwLMvbwmwKfPf8Mt7EHw","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"message_id\":35881,\"conversation_id\":\"630bbc5cc887ff28168830aa1\",\"company_id\":1,\"from_user_id\":193,\"to_user_id\":704,\"from_account_type\":\"user\",\"to_account_type\":\"employee\",\"message\":\"sup\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-07-20 14:48:35\",\"date_updated\":\"2017-07-20 14:48:35\",\"date_deleted\":null,\"job_id\":123,\"_type\":\"generic\",\"from_user\":{\"user_id\":193,\"company_id\":1,\"password\":\"$2a$08$7OIDuQhHk2RqITzWwtyAuuFv1YTQeziCT8lwoEDUYBD6zBrQmJi.m\",\"hash\":\"R61KKhhOY\",\"email\":\"localtest@liverydesk.com\",\"device_id\":null,\"first_name\":\"wassup\",\"last_name\":\"guy22\",\"location_id\":null,\"phone_country\":\"US\",\"phone\":\"1233832939\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":\"stripe\",\"payment_processor_id\":\"cus_AnglxrUzth0UCh\",\"payment_processor_card_id\":\"card_1AS5UyEgaH5gKO4gQYbgsVhQ\",\"card_last_4\":\"4242\",\"card_address_line1\":\"123 some street\",\"card_address_line2\":\"line 2\",\"card_address_city\":\"new york\",\"card_address_state\":\"ny\",\"card_address_zip\":\"11010\",\"card_address_country\":\"USA\",\"date_created\":\"2017-06-04 23:50:01\",\"date_updated\":\"2017-06-10 17:21:46\",\"last_login_date\":\"2017-06-07 14:15:14\",\"phone_verified\":0,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"_type\":\"user\"},\"to_user\":{\"employee_id\":704,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"testdr123@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$naKQdwt52pH8FDm5z5BsDOKSvVN5WKhoCH2MPxQKiqWYllaIlCX7W\",\"password_hint\":\"pa*****4\",\"hash\":\"Hk4ykPmb-\",\"company_id\":1,\"location_id\":386303,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"05/24/2019\",\"hack_license_expiration\":\"2019-05-24\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"2017-05-24 19:28:28\",\"date_updated\":\"2017-07-14 00:15:22\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2019-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":\"05/24/2019\",\"tlc_expiration_date\":\"2019-05-24\",\"tlc_inspection_date\":\"2019-05-24\",\"tlc_inspection_expiration_date\":\"2019-05-24\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":1,\"phone_verification_code\":null,\"phone_verified_date\":\"2017-06-21 22:01:31\",\"picture\":{\"stored_name_sm\":\"zZeNg8emT-sm.png\",\"stored_name\":\"zZeNg8emT.png\",\"type\":\"image\",\"original_filename\":\"Screen Shot 2017-06-22 at 10.20.52 PM.png\",\"remote_path\":\"liverydesk-public/employee/picture\",\"url_fullsize\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT.png\",\"url_small\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT-sm.png\"},\"attributes\":{\"has_own_vehicle\":\"1\",\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_rJxURDYE-.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"}},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"18efe7ed-ab2c-4eec-84c0-e9c3fcbca87d"}],"id":"79d1e5ab-1eb7-4cb3-b1d3-2906372ae2c6","description":"<p>You call GET /message to get ALL conversations for a user. When the user taps a conversation to view the history, you call GET /message/conversation with either a <code>job_id</code> OR a <code>conversation_id</code> OR you pass a user id. You can pass <code>with_user_id</code> if the recipient account type is a <code>user</code>, or pass <code>with_employee_id</code> if the account type is an <code>employee</code>.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"7d9f9ef5-5f46-4f67-a2d3-addad0ff4b4e"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"1596abd0-060e-4330-8886-ee57c1eafe86"}}],"_postman_id":"79d1e5ab-1eb7-4cb3-b1d3-2906372ae2c6"},{"name":"Pricing","item":[{"name":"Surcharges","item":[{"name":"Get Surcharge","id":"d8c9e029-071d-4e0d-a3e6-4145a6c903a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/pricing/surcharge/:pricing_id","urlObject":{"path":["pricing","surcharge",":pricing_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2","key":"pricing_id"}]}},"response":[],"_postman_id":"d8c9e029-071d-4e0d-a3e6-4145a6c903a0"},{"name":"Get All","id":"2ac90d15-11f4-41d9-a5c6-7c48973d75dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/pricing/surcharge","urlObject":{"path":["pricing","surcharge"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ac90d15-11f4-41d9-a5c6-7c48973d75dd"},{"name":"Create Surcharge","id":"9ad529d7-8d2e-4d17-93a8-78c101ac048e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"This Tax","type":"text"},{"key":"payment_type","value":"flat_rate","description":"<p>flat_rate, percent</p>\n","type":"text"},{"key":"once_per_job","value":"1","type":"text"}]},"url":"{{host}}/pricing/surcharge","urlObject":{"path":["pricing","surcharge"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ad529d7-8d2e-4d17-93a8-78c101ac048e"},{"name":"Update Surcharge","id":"544b0d0d-c52e-4585-bad7-1151375d2342","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"This Tax1","type":"text"},{"key":"payment_type","value":"flat_rate","description":"<p>flat_rate, percent</p>\n","type":"text"},{"key":"once_per_job","value":"1","type":"text"},{"key":"surcharge_id","value":"7","type":"text"}]},"url":"{{host}}/pricing/surcharge","urlObject":{"path":["pricing","surcharge"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"544b0d0d-c52e-4585-bad7-1151375d2342"},{"name":"Delete Surcharge","id":"e07b31a1-fff0-4659-a15b-b7f1962a851f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/pricing/surcharge/:pricing_id","urlObject":{"path":["pricing","surcharge",":pricing_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"1","key":"pricing_id"}]}},"response":[],"_postman_id":"e07b31a1-fff0-4659-a15b-b7f1962a851f"}],"id":"537f1717-890e-40ad-aaa7-0e242bf958b5","_postman_id":"537f1717-890e-40ad-aaa7-0e242bf958b5","description":""},{"name":"Get route estimate","id":"63cdfe90-5f67-46ba-8b85-eab5cacd50f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/pricing/routeestimate?pickup_latitude=40.6795807&pickup_longitude=-73.9420547&dropoff_longitude=-73.9212857&dropoff_latitude=40.6944281&distance_miles=2.1&est_time_minutes=13&vehicle_type_ids[]=6","description":"<p>Get a price estimate for a route</p>\n","urlObject":{"path":["pricing","routeestimate"],"host":["{{host}}"],"query":[{"key":"pickup_latitude","value":"40.6795807"},{"key":"pickup_longitude","value":"-73.9420547"},{"key":"dropoff_longitude","value":"-73.9212857"},{"key":"dropoff_latitude","value":"40.6944281"},{"key":"distance_miles","value":"2.1"},{"key":"est_time_minutes","value":"13"},{"key":"vehicle_type_ids[]","value":"6"}],"variable":[]}},"response":[{"id":"3b55f177-4c46-4d28-a0cb-f185691ed217","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/api/pricing/routeestimate?pickup_latitude=40.6795807&pickup_longitude=-73.9420547&dropoff_longitude=-73.9212857&dropoff_latitude=40.6944281&distance_miles=2.1&est_time_minutes=13&vehicle_type_ids=[6]","host":["{{host}}"],"path":["api","pricing","routeestimate"],"query":[{"key":"pickup_latitude","value":"40.6795807"},{"key":"pickup_longitude","value":"-73.9420547"},{"key":"dropoff_longitude","value":"-73.9212857"},{"key":"dropoff_latitude","value":"40.6944281"},{"key":"distance_miles","value":"2.1"},{"key":"est_time_minutes","value":"13"},{"key":"vehicle_type_ids","value":"[6]"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1069","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 15:42:08 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"42d-DxEpTIuNlZ7X2fEG++T06JxHwUI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1496850128930170","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AL4GNEyaj2JcZywq3acs_3D_L3f5xPgo2.UHN4TZt%2Bo5V6%2BGbezG2oZGS3KCfu25XSKjUtGQ2ev6I","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":[{\"pricing_id\":1,\"company_id\":1,\"base_id\":1,\"old_base_id\":\"B01534\",\"name\":\"11010 - 11419\",\"zone_id_1\":1,\"zone_id_2\":2,\"priority\":1,\"base_price\":5,\"mile_rate\":2,\"minute_rate\":1,\"service_fee\":1,\"wait_rate\":0.5,\"minimum_price\":10,\"option_surcharges\":\"[]\",\"vehicle_modifiers\":\"[{\\\"type_id\\\":2,\\\"name\\\":\\\"SUV\\\",\\\"minimum_price\\\":35,\\\"base_price\\\":35,\\\"mile_rate\\\":2,\\\"minute_rate\\\":1,\\\"wait_rate\\\":0.5,\\\"service_fee\\\":1}]\",\"new_vehicle_modifiers\":\"[{\\\"type_id\\\":2,\\\"name\\\":\\\"SUV\\\",\\\"minimum_price\\\":35,\\\"base_price\\\":35,\\\"mile_rate\\\":2,\\\"minute_rate\\\":1,\\\"wait_rate\\\":0.5,\\\"service_fee\\\":1}]\",\"is_default\":1,\"is_active\":1,\"is_deleted\":0,\"date_created\":\"2016-07-26 19:37:24\",\"date_updated\":\"2017-05-04 01:23:58\",\"_type\":\"generic\",\"is_flat_rate\":false,\"applied_option_surcharges\":[],\"distance_miles\":2.1,\"estimated_time_minutes\":13,\"wait_time\":null,\"estimated_price\":23.2,\"variable_price_estimate_low_buffer\":0.1,\"variable_price_estimate_high_buffer\":0.1,\"estimated_price_low\":20.88,\"estimated_price_high\":25.52}],\"meta\":{\"code\":200,\"code_description\":\"Ok\",\"items\":1}}"}],"_postman_id":"63cdfe90-5f67-46ba-8b85-eab5cacd50f1"},{"name":"Calculate actual price","id":"a0f16b57-1e4e-4b15-95eb-b2279b8b10af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/pricing/calculateactualprice?job_id=562554","urlObject":{"path":["pricing","calculateactualprice"],"host":["{{host}}"],"query":[{"key":"job_id","value":"562554"}],"variable":[]}},"response":[{"id":"c984d036-112b-42f2-a2ad-bf0d9dffed05","name":"Calculate actual price","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":{"raw":"{{host}}/pricing/calculateactualprice?job_id=562554","host":["{{host}}"],"path":["pricing","calculateactualprice"],"query":[{"key":"job_id","value":"562554"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"3169","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:28:52 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"c61-HC03imMlEvCpXPQgnV3N1P5sYpY\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":{\"route_costs\":[{\"distance_meters\":0,\"duration_seconds\":0,\"option_ids\":[],\"wait_time_overage\":0,\"process_initial_price\":true,\"price\":{\"pricing_id\":1,\"company_id\":1,\"base_id\":1,\"old_base_id\":\"B01534\",\"name\":\"11010 - 11419\",\"zone_id_1\":1,\"zone_id_2\":2,\"priority\":1,\"base_price\":0,\"mile_rate\":2,\"minute_rate\":2,\"service_fee\":1,\"wait_rate\":0.5,\"stop_rate\":0,\"cancellation_fee\":7,\"minimum_price\":5,\"new_vehicle_modifiers\":\"[{\\\"type_id\\\":2,\\\"name\\\":\\\"SUV\\\",\\\"minimum_price\\\":35,\\\"base_price\\\":35,\\\"mile_rate\\\":2,\\\"minute_rate\\\":1,\\\"wait_rate\\\":0.5,\\\"service_fee\\\":1}]\",\"is_default\":1,\"is_active\":1,\"is_deleted\":0,\"date_created\":\"2016-07-26 19:37:24\",\"date_updated\":\"2018-07-06 22:23:12\",\"is_flat_rate\":false,\"applied_option_surcharges\":[],\"distance_meters\":0,\"duration_seconds\":0,\"wait_time_overage\":0,\"amount_of_stops\":0,\"process_initial_price\":true,\"estimated_price\":5,\"variable_price_estimate_low_buffer\":0.1,\"variable_price_estimate_high_buffer\":0.1,\"estimated_price_low\":4.5,\"estimated_price_high\":5.5},\"stop\":{\"job_stop_id\":1179731}},{\"distance_meters\":0,\"duration_seconds\":0,\"option_ids\":[],\"wait_time_overage\":0,\"amount_of_stops\":1,\"price\":{\"pricing_id\":1,\"company_id\":1,\"base_id\":1,\"old_base_id\":\"B01534\",\"name\":\"11010 - 11419\",\"zone_id_1\":1,\"zone_id_2\":2,\"priority\":1,\"base_price\":0,\"mile_rate\":2,\"minute_rate\":2,\"service_fee\":1,\"wait_rate\":0.5,\"stop_rate\":0,\"cancellation_fee\":7,\"minimum_price\":5,\"new_vehicle_modifiers\":\"[{\\\"type_id\\\":2,\\\"name\\\":\\\"SUV\\\",\\\"minimum_price\\\":35,\\\"base_price\\\":35,\\\"mile_rate\\\":2,\\\"minute_rate\\\":1,\\\"wait_rate\\\":0.5,\\\"service_fee\\\":1}]\",\"is_default\":1,\"is_active\":1,\"is_deleted\":0,\"date_created\":\"2016-07-26 19:37:24\",\"date_updated\":\"2018-07-06 22:23:12\",\"is_flat_rate\":false,\"applied_option_surcharges\":[],\"distance_meters\":0,\"duration_seconds\":0,\"wait_time_overage\":0,\"amount_of_stops\":1,\"process_initial_price\":false,\"estimated_price\":5,\"variable_price_estimate_low_buffer\":0,\"variable_price_estimate_high_buffer\":0,\"estimated_price_low\":5,\"estimated_price_high\":5},\"stop\":{\"job_stop_id\":1179732}},{\"distance_meters\":0,\"duration_seconds\":0,\"option_ids\":[],\"wait_time_overage\":0,\"amount_of_stops\":1,\"price\":{\"pricing_id\":1,\"company_id\":1,\"base_id\":1,\"old_base_id\":\"B01534\",\"name\":\"11010 - 11419\",\"zone_id_1\":1,\"zone_id_2\":2,\"priority\":1,\"base_price\":0,\"mile_rate\":2,\"minute_rate\":2,\"service_fee\":1,\"wait_rate\":0.5,\"stop_rate\":0,\"cancellation_fee\":7,\"minimum_price\":5,\"new_vehicle_modifiers\":\"[{\\\"type_id\\\":2,\\\"name\\\":\\\"SUV\\\",\\\"minimum_price\\\":35,\\\"base_price\\\":35,\\\"mile_rate\\\":2,\\\"minute_rate\\\":1,\\\"wait_rate\\\":0.5,\\\"service_fee\\\":1}]\",\"is_default\":1,\"is_active\":1,\"is_deleted\":0,\"date_created\":\"2016-07-26 19:37:24\",\"date_updated\":\"2018-07-06 22:23:12\",\"is_flat_rate\":false,\"applied_option_surcharges\":[],\"distance_meters\":0,\"duration_seconds\":0,\"wait_time_overage\":0,\"amount_of_stops\":1,\"process_initial_price\":false,\"estimated_price\":5,\"variable_price_estimate_low_buffer\":0.1,\"variable_price_estimate_high_buffer\":0.1,\"estimated_price_low\":4.5,\"estimated_price_high\":5.5},\"stop\":{\"job_stop_id\":1179733}}],\"total_distance_meters\":0,\"total_duration_seconds\":0,\"total_cost\":15},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"a0f16b57-1e4e-4b15-95eb-b2279b8b10af"}],"id":"3778a8c1-c07c-4731-b4c6-48a740c1c927","_postman_id":"3778a8c1-c07c-4731-b4c6-48a740c1c927","description":""},{"name":"Promo Codes","item":[{"name":"Get all promo codes for a company","id":"24f396c5-69fe-411a-868e-9da3b5f436e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{X-ACCESS-TOKEN}}"}],"url":"{{host}}/promo_codes/companycodes","description":"<p>must be an admin or dispatcher to do this</p>\n","urlObject":{"path":["promo_codes","companycodes"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"24f396c5-69fe-411a-868e-9da3b5f436e4"},{"name":"Get report for promo code id","id":"75c7a49e-36e4-4d2f-aaf9-4bb0782f65ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{X-ACCESS-TOKEN}}"}],"url":"{{host}}/promo_codes/report?promo_code_id=19","description":"<p>Gets an array of all used promo codes with job appended</p>\n","urlObject":{"path":["promo_codes","report"],"host":["{{host}}"],"query":[{"key":"promo_code_id","value":"19"}],"variable":[]}},"response":[],"_postman_id":"75c7a49e-36e4-4d2f-aaf9-4bb0782f65ce"},{"name":"Create a code","id":"90bce152-7aca-46c2-8fbb-7e2d70a15747","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{X-ACCESS-TOKEN}}"}],"url":"{{host}}/promo_codes/?company_id=1&code=THISISTHECODE&discount_amount=10&discount_percentage=10&minimum_price=1&max_uses=100&uses_per_user&activation_date=2017-10-10&expiration_date=2020-10-10&active=1&restricted_to_user_id=211&owned_by_user_id=211","description":"<p>Gets an array of all used promo codes with job appended</p>\n","urlObject":{"path":["promo_codes",""],"host":["{{host}}"],"query":[{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"company_id","value":"1"},{"description":{"content":"<p>between 6-20 characters, unique for each company</p>\n","type":"text/plain"},"key":"code","value":"THISISTHECODE"},{"description":{"content":"<p>positive float, can be 0</p>\n","type":"text/plain"},"key":"discount_amount","value":"10"},{"description":{"content":"<p>float between 0-100, must have either amount or percentage</p>\n","type":"text/plain"},"key":"discount_percentage","value":"10"},{"description":{"content":"<p>positive float, can be 0, optional</p>\n","type":"text/plain"},"key":"minimum_price","value":"1"},{"description":{"content":"<p>positive int, can be 0, optional</p>\n","type":"text/plain"},"key":"max_uses","value":"100"},{"description":{"content":"<p>positive int, can be 0, optional</p>\n","type":"text/plain"},"key":"uses_per_user","value":""},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"activation_date","value":"2017-10-10"},{"description":{"content":"<p>optional</p>\n","type":"text/plain"},"key":"expiration_date","value":"2020-10-10"},{"description":{"content":"<p>boolean, optional, defaults to 1</p>\n","type":"text/plain"},"key":"active","value":"1"},{"description":{"content":"<p>int, optional</p>\n","type":"text/plain"},"key":"restricted_to_user_id","value":"211"},{"description":{"content":"<p>int, optional</p>\n","type":"text/plain"},"key":"owned_by_user_id","value":"211"}],"variable":[]}},"response":[],"_postman_id":"90bce152-7aca-46c2-8fbb-7e2d70a15747"},{"name":"Set code activation status","id":"31f49960-92e2-4f85-a856-7e4188a78e4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-access-token","value":"{{X-ACCESS-TOKEN}}"}],"url":"{{host}}/promo_codes/setstatus?promo_code_id=1&status=1","urlObject":{"path":["promo_codes","setstatus"],"host":["{{host}}"],"query":[{"key":"promo_code_id","value":"1"},{"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"status","value":"1"}],"variable":[]}},"response":[],"_postman_id":"31f49960-92e2-4f85-a856-7e4188a78e4a"},{"name":"Add a code to a users queue","id":"c2911e88-276a-45b2-bd23-6b1bd49a0794","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"code","value":"123456789","type":"text"},{"key":"user_id","value":"207","type":"text"}]},"url":"{{host}}/promo_codes/addtoqueue","description":"<p>GetIndex()\ngets a promo code object by id</p>\n","urlObject":{"path":["promo_codes","addtoqueue"],"host":["{{host}}"],"query":[{"disabled":true,"key":"code","value":"mergetest2"},{"disabled":true,"key":"user_id","value":"214"}],"variable":[]}},"response":[{"id":"da7e3bfa-fae0-4d6f-988f-c0aa32a62985","name":"Add a code to a users queue","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"code","value":"123456789","type":"text"},{"key":"user_id","value":"207","type":"text"}]},"url":{"raw":"{{host}}/promo_codes/addtoqueue","host":["{{host}}"],"path":["promo_codes","addtoqueue"],"query":[{"key":"code","value":"mergetest2","disabled":true},{"key":"user_id","value":"214","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"471"},{"key":"ETag","value":"W/\"1d7-v+4b+CIEMFzZd+nKEuX7PvnQMFY\""},{"key":"Date","value":"Thu, 17 Oct 2019 14:53:30 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"promo_code_id\": 34,\n        \"company_id\": 1,\n        \"code\": \"123456789\",\n        \"active\": 1,\n        \"minimum_price\": 0,\n        \"max_uses\": null,\n        \"uses\": 6,\n        \"uses_per_user\": null,\n        \"discount_amount\": 2,\n        \"discount_percentage\": 0,\n        \"activation_date\": \"2018-02-21 05:00:00\",\n        \"expiration_date\": null,\n        \"date_created\": \"2018-02-21 20:57:34\",\n        \"location\": null,\n        \"restricted_to_user_id\": null,\n        \"owned_by_user_id\": null,\n        \"description\": null,\n        \"date_updated\": \"2018-06-13 18:38:06\",\n        \"date_deleted\": null\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\"\n    }\n}"}],"_postman_id":"c2911e88-276a-45b2-bd23-6b1bd49a0794"},{"name":"Get promo codes for a user ","id":"49108298-407b-4be1-8aa9-0a3c3c772269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":"{{host}}/promo_codes/userqueue?user_id=215","description":"<p>Gets an array of all queued promo codes for a specific user</p>\n","urlObject":{"path":["promo_codes","userqueue"],"host":["{{host}}"],"query":[{"key":"user_id","value":"215"}],"variable":[]}},"response":[{"id":"cb0c9a08-438c-462a-b256-9736d88023eb","name":"Get promo codes for a user ","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":{"raw":"{{host}}/promo_codes/userqueue?user_id=215","host":["{{host}}"],"path":["promo_codes","userqueue"],"query":[{"key":"user_id","value":"215"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"500"},{"key":"ETag","value":"W/\"1f4-4TbA/nUHUG9iWIA08hHSLvJJaA4\""},{"key":"Date","value":"Fri, 30 Aug 2019 18:02:47 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"promo_code_id\": 36,\n            \"company_id\": 1,\n            \"code\": \"mergetest\",\n            \"active\": 1,\n            \"minimum_price\": 0,\n            \"max_uses\": null,\n            \"uses\": 4,\n            \"uses_per_user\": null,\n            \"discount_amount\": 1,\n            \"discount_percentage\": 10,\n            \"activation_date\": \"2018-07-12 04:00:00\",\n            \"expiration_date\": null,\n            \"date_created\": \"2018-07-12 14:05:08\",\n            \"location\": null,\n            \"restricted_to_user_id\": null,\n            \"owned_by_user_id\": null,\n            \"description\": \"for the merge test\",\n            \"date_updated\": \"2018-07-12 15:02:58\",\n            \"date_deleted\": null\n        }\n    ],\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"items\": 1\n    }\n}"}],"_postman_id":"49108298-407b-4be1-8aa9-0a3c3c772269"}],"id":"ce556dc5-19a2-4334-81f9-3698e6a892f7","description":"<p>Endpoints with all params for Promo Codes</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"83e027d8-9d0b-4ec0-8bf0-03d73248b7b4"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"019eccae-9e0d-4162-9226-703dd5ffb450"}}],"_postman_id":"ce556dc5-19a2-4334-81f9-3698e6a892f7"},{"name":"Rating","item":[{"name":"Rate driver","id":"70d69f92-c55a-4e27-adc9-4b45113b3a0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_id","value":"1","type":"text"},{"key":"rating","value":"5","description":"<p>int from 1-5</p>\n","type":"text"},{"key":"notes","value":"Driver was very nice!","description":"<p>Optional</p>\n","type":"text"}]},"url":"{{host}}/rating/driver","urlObject":{"path":["rating","driver"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"01dd286f-ba44-4d66-a897-12e7389cd2e3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"to_employee_id","value":"704","type":"text"},{"key":"message","value":"sup","type":"text"},{"key":"job_id","value":"123","type":"text"}]},"url":"{{host}}/message"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"3863","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 20 Jul 2017 14:48:35 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"f17-ukiXpAJ7no8XUTR8DJMZT/T6KXI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1500562115386751","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3Aosp9IAz_yGxoC-Jg7m8P06F6pvY3bRZD.wxrt46O5KivIU7xfqb4IbHFjwLMvbwmwKfPf8Mt7EHw","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"message_id\":35881,\"conversation_id\":\"630bbc5cc887ff28168830aa1\",\"company_id\":1,\"from_user_id\":193,\"to_user_id\":704,\"from_account_type\":\"user\",\"to_account_type\":\"employee\",\"message\":\"sup\",\"is_read\":0,\"date_read\":null,\"date_created\":\"2017-07-20 14:48:35\",\"date_updated\":\"2017-07-20 14:48:35\",\"date_deleted\":null,\"job_id\":123,\"_type\":\"generic\",\"from_user\":{\"user_id\":193,\"company_id\":1,\"password\":\"$2a$08$7OIDuQhHk2RqITzWwtyAuuFv1YTQeziCT8lwoEDUYBD6zBrQmJi.m\",\"hash\":\"R61KKhhOY\",\"email\":\"localtest@liverydesk.com\",\"device_id\":null,\"first_name\":\"wassup\",\"last_name\":\"guy22\",\"location_id\":null,\"phone_country\":\"US\",\"phone\":\"1233832939\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":\"stripe\",\"payment_processor_id\":\"cus_AnglxrUzth0UCh\",\"payment_processor_card_id\":\"card_1AS5UyEgaH5gKO4gQYbgsVhQ\",\"card_last_4\":\"4242\",\"card_address_line1\":\"123 some street\",\"card_address_line2\":\"line 2\",\"card_address_city\":\"new york\",\"card_address_state\":\"ny\",\"card_address_zip\":\"11010\",\"card_address_country\":\"USA\",\"date_created\":\"2017-06-04 23:50:01\",\"date_updated\":\"2017-06-10 17:21:46\",\"last_login_date\":\"2017-06-07 14:15:14\",\"phone_verified\":0,\"phone_verification_code\":null,\"phone_verified_date\":null,\"picture\":null,\"_type\":\"user\"},\"to_user\":{\"employee_id\":704,\"driver_number\":123,\"first_name\":\"Test\",\"last_name\":\"Driver\",\"username\":\"testdr123@mlcabs\",\"email\":\"testemail@email.com\",\"password\":\"$2a$08$naKQdwt52pH8FDm5z5BsDOKSvVN5WKhoCH2MPxQKiqWYllaIlCX7W\",\"password_hint\":\"pa*****4\",\"hash\":\"Hk4ykPmb-\",\"company_id\":1,\"location_id\":386303,\"primary_phone_country\":\"US\",\"primary_phone\":\"9171234567\",\"secondary_phone_country\":\"US\",\"secondary_phone\":null,\"is_driver\":0,\"role_name\":\"driver\",\"is_active\":1,\"is_deleted\":0,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":0,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":0,\"base_fee_start_date\":null,\"hack_license_number\":\"05/24/2019\",\"hack_license_expiration\":\"2019-05-24\",\"driver_license_number\":\"123\",\"driver_license_expiration\":\"2019-01-01\",\"driver_license_class\":\"d\",\"is_car_owner\":0,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":\"2017-05-24 19:28:28\",\"date_updated\":\"2017-07-14 00:15:22\",\"car_type_id\":1,\"new_car_type_id\":null,\"car_make\":\"asdf\",\"car_model\":\"asdf2\",\"car_year\":2016,\"car_color\":\"red\",\"registration_number\":\"asdf\",\"registration_expiration\":\"2019-01-01\",\"registration_owner_name\":\"asdfasfd\",\"license_plate_number\":\"asdf\",\"insurance_policy_number\":\"sdfasdfasdf\",\"insurance_provider_name\":\"asdfasdf\",\"insurance_expiration_date\":\"2019-01-01\",\"tlc_number\":\"05/24/2019\",\"tlc_expiration_date\":\"2019-05-24\",\"tlc_inspection_date\":\"2019-05-24\",\"tlc_inspection_expiration_date\":\"2019-05-24\",\"on_duty\":0,\"on_duty_date\":null,\"phone_verified\":1,\"phone_verification_code\":null,\"phone_verified_date\":\"2017-06-21 22:01:31\",\"picture\":{\"stored_name_sm\":\"zZeNg8emT-sm.png\",\"stored_name\":\"zZeNg8emT.png\",\"type\":\"image\",\"original_filename\":\"Screen Shot 2017-06-22 at 10.20.52 PM.png\",\"remote_path\":\"liverydesk-public/employee/picture\",\"url_fullsize\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT.png\",\"url_small\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/picture/zZeNg8emT-sm.png\"},\"attributes\":{\"has_own_vehicle\":\"1\",\"courier_insurance\":\"http://d2u9wtvq2reskn.cloudfront.net/employee/custom/1_courier_insurance_rJxURDYE-.png\",\"vehicle_engine_size\":\"123\"},\"profile\":\"I'm the best\",\"_type\":\"employee\"}},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"70d69f92-c55a-4e27-adc9-4b45113b3a0f"},{"name":"Rate Passenger","id":"9ba69fe1-cdcb-4a2e-9d6b-f0965fec6a4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{access-token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_id","value":"563890","type":"text"},{"key":"rating","value":"3","description":"<p>int from 1-5</p>\n","type":"text"},{"key":"notes","value":"Very friendly!","description":"<p>optional</p>\n","type":"text"}]},"url":"{{host}}/rating/passenger","urlObject":{"path":["rating","passenger"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8d1051c7-e976-4e87-8d96-6828a57e961d","name":"Rate Passenger","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"job_id","value":"563890","type":"text"},{"key":"rating","value":"3","description":"int from 1-5","type":"text"},{"key":"notes","value":"'This is a string'","description":"optional","type":"text"}]},"url":"{{host}}/rating/passenger"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"54","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:32:30 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"36-vyy6sGgTFN3Ivb8BHQQqH9IHs/o\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":1,\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"9ba69fe1-cdcb-4a2e-9d6b-f0965fec6a4c"},{"name":"Get Driver Ratings","id":"b9f95bac-c694-4ac0-ae30-c7ed41ce430a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":"{{host}}/rating/driver?driver_id=743","urlObject":{"path":["rating","driver"],"host":["{{host}}"],"query":[{"key":"driver_id","value":"743"}],"variable":[]}},"response":[{"id":"14427d63-0095-403d-ac21-e7614d46af24","name":"Get Driver Ratings","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":{"raw":"{{host}}/rating/driver?driver_id=743","host":["{{host}}"],"path":["rating","driver"],"query":[{"key":"driver_id","value":"743"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"119","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:32:37 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"77-jYke3IaecE7vF+A3X2KZbQST1G4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":[],\"meta\":{\"ratings_meta\":{\"total_ratings\":0,\"average_rating\":0},\"code\":200,\"code_description\":\"Ok\",\"items\":0}}"}],"_postman_id":"b9f95bac-c694-4ac0-ae30-c7ed41ce430a"},{"name":"Get Passenger Ratings","id":"b4046349-e929-4ec5-819f-135e7d8b5b5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{access-token}}"}],"url":"{{host}}/rating/passenger?user_id=12","urlObject":{"path":["rating","passenger"],"host":["{{host}}"],"query":[{"key":"user_id","value":"12"}],"variable":[]}},"response":[{"id":"62d8fab3-3d2f-44c4-9c38-189fad20bc0a","name":"Get Passenger Ratings","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":{"raw":"{{host}}/rating/passenger?user_id=12","host":["{{host}}"],"path":["rating","passenger"],"query":[{"key":"user_id","value":"12"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"119","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:33:51 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"77-jYke3IaecE7vF+A3X2KZbQST1G4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":[],\"meta\":{\"ratings_meta\":{\"total_ratings\":0,\"average_rating\":0},\"code\":200,\"code_description\":\"Ok\",\"items\":0}}"}],"_postman_id":"b4046349-e929-4ec5-819f-135e7d8b5b5f"}],"id":"73592bb3-bb5b-4e0c-8309-15d7f2ce5ea7","description":"<p>Ratings are stored on job objects for that particular job. Once a user or driver has rated eachother for a specific job, the job object will have <code>driver_rating</code> and <code>passenger_rating</code> values</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"30f6f475-2b73-4ff7-a4d6-d09ebeb16917"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"766cda80-de5e-4bc8-aab3-7d05c472d87d"}}],"_postman_id":"73592bb3-bb5b-4e0c-8309-15d7f2ce5ea7"},{"name":"Referral Codes","item":[{"name":"Create Referral Code","id":"d0360bef-7fd7-49fa-afb2-4d3c517827de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{X-API-KEY}}"},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"NicksCode","type":"text"},{"key":"owner_entity_type","value":"employee","type":"text"},{"key":"owner_entity_id","value":"728","type":"text"},{"key":"amount_flat_rate","value":"1","type":"text"},{"key":"amount_percentage","value":"10","type":"text"},{"key":"description","value":"this is to fund nicks golf addiction","type":"text"},{"key":"is_active","value":"1","type":"text"}]},"url":"{{host}}/referral_code","urlObject":{"path":["referral_code"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d0360bef-7fd7-49fa-afb2-4d3c517827de"},{"name":"Update Referral Code","id":"e6b16682-0878-48ed-9919-1ceba7e29f59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-API-KEY","value":"{{X-API-KEY}}"},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"NicksCode11","type":"text","disabled":true},{"key":"owner_entity_type","value":"employee","type":"text","disabled":true},{"key":"owner_entity_id","value":"728","type":"text","disabled":true},{"key":"amount_flat_rate","value":"1","type":"text","disabled":true},{"key":"amount_percentage","value":"10","type":"text","disabled":true},{"key":"description","value":"this is to fund nicks golf addiction","type":"text","disabled":true},{"key":"is_active","value":"0","type":"text"},{"key":"referral_code_id","value":"1","type":"text"}]},"url":"{{host}}/referral_code","urlObject":{"path":["referral_code"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e6b16682-0878-48ed-9919-1ceba7e29f59"},{"name":"Get All Referral Codes","id":"c25f230f-82e3-4648-b1eb-4379aa0c2519","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","value":"{{api_key}}"},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/referral_code","urlObject":{"path":["referral_code"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c25f230f-82e3-4648-b1eb-4379aa0c2519"},{"name":"Get A Code","id":"b6b1721d-2d54-4f36-8c15-a99295495b50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","value":"{{X-API-KEY}}"},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/referral_code/:referral_code_id","urlObject":{"path":["referral_code",":referral_code_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"2","key":"referral_code_id"}]}},"response":[],"_postman_id":"b6b1721d-2d54-4f36-8c15-a99295495b50"},{"name":"Get Referral Code Uses","id":"e6807a66-95e6-40d6-b8c2-7ec3948ba06a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","value":"{{X-API-KEY}}"},{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjcyOCwiZXhwIjoxNTgzODUzMzMxMTMwLCJhcHBsaWNhdGlvbl9pZCI6NTAsImFjY291bnRfdHlwZSI6ImVtcGxveWVlIiwiY29tcGFueV9pZCI6MX0.ipL0argePgg9ibM-AeQ1jK5wJSMmcCvgcA4c5eaftVQ"}],"url":"{{host}}/referral_code/uses/search","urlObject":{"path":["referral_code","uses","search"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e6807a66-95e6-40d6-b8c2-7ec3948ba06a"},{"name":"Get Driver Recruiting Csv","id":"6e843bb7-b57f-42e2-be72-4feadbefcfb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-API-KEY","value":"{{X-API-KEY}}"},{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjcxOCwiZXhwIjoxNTcyNTI3NzA0MzE4LCJhcHBsaWNhdGlvbl9pZCI6MSwiYWNjb3VudF90eXBlIjoiZW1wbG95ZWUiLCJjb21wYW55X2lkIjoxfQ.zFbnAr7hdoSqWKCKHPzDBCcIyIelPTd-uddqFJQzK0U"}],"url":"{{host}}/referral_code/report/driver-recruiting","urlObject":{"path":["referral_code","report","driver-recruiting"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e843bb7-b57f-42e2-be72-4feadbefcfb7"}],"id":"db24c8a5-51e1-474b-9d37-25f476557128","_postman_id":"db24c8a5-51e1-474b-9d37-25f476557128","description":""},{"name":"User","item":[{"name":"Payment Methods","item":[{"name":"Add Payment Method","id":"c256c291-6445-498f-a6a6-1d7b530dbf5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"number","value":"4242424242424242","type":"text"},{"key":"cvc","value":"123","type":"text"},{"key":"expiration_month","value":"12","type":"text"},{"key":"expiration_year","value":"23","type":"text"},{"key":"address_line1","value":"123 some street","type":"text"},{"key":"address_line2","value":"line 2","type":"text"},{"key":"address_city","value":"new york","type":"text"},{"key":"address_state","value":"ny","type":"text"},{"key":"address_zip","value":"11010","type":"text"},{"key":"address_country","value":"USA","type":"text"},{"key":"payment_method","value":"credit","type":"text"}]},"url":"{{host}}/user/payment-method","urlObject":{"path":["user","payment-method"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c256c291-6445-498f-a6a6-1d7b530dbf5b"},{"name":"Delete Payment Method","id":"864db049-018a-4d67-b84d-4eb64bc38c6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"user_id","value":"214","type":"text"},{"key":"payment_source_reference","value":"card_1EUcYMEgaH5gKO4gbJB4jAnl","type":"text"}]},"url":"{{host}}/user/payment-method","urlObject":{"path":["user","payment-method"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"864db049-018a-4d67-b84d-4eb64bc38c6b"},{"name":"Add 3D Secure Payment Method","id":"ad1aa4a5-6bc9-41e4-91ef-dde118bff7a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"user_id","value":"1","description":"<p>Required for admins. Will not override access_token user_id for regular users</p>\n","type":"text"},{"key":"setup_object_id","value":"seti_1FHFsEEgaH5gKO4glHJrJ81i","description":"<p>This is the id of the setup intent requested from Payment / Get Setup</p>\n","type":"text"},{"key":"gateway_id","value":"stripe_3ds2","description":"<p>only supports 'stripe_3ds2'</p>\n","type":"text"}]},"url":"{{host}}/user/3ds2/payment-method","urlObject":{"path":["user","3ds2","payment-method"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad1aa4a5-6bc9-41e4-91ef-dde118bff7a2"}],"id":"07b93160-262c-4816-ad10-bb67c1e77876","_postman_id":"07b93160-262c-4816-ad10-bb67c1e77876","description":""},{"name":"Business Account","item":[{"name":"Add business account","id":"c4696cca-1437-4fca-923d-f4d30f00dc35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"139196","type":"text"},{"key":"account_number","value":"111","type":"text"}]},"url":"{{host}}/user/account","urlObject":{"path":["user","account"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"531cd1d7-7d6f-417b-8696-adee393fb23b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"482725","type":"text"}]},"url":"{{host}}/user/account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"151","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 16 Aug 2017 14:36:44 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"97-glGMiF0PmK2HRobZDDB7zaBfjiM\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1502894204580443","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3A6zS3apJ2i7GphzDMBOl-S6hDmpn-hGGp.sxXn4%2BFhZ%2BYqv3DElJgiGmV7xr784fDLpmyvxVxoHPU","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"user_id\":193,\"account_id\":15,\"company_id\":1,\"date_created\":\"2017-08-16 14:35:31\",\"is_primary\":0},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"},{"id":"dc39c9d7-10d7-4781-95ad-b1993967724d","name":"Successful","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"},{"key":"","value":"","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"account_pin","value":"399708","type":"text"},{"key":"account_number","value":"9903","type":"text"}]},"url":"{{host}}/user/account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"938","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 18 Aug 2017 17:01:29 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"3aa-eFH9GvL5jKgESk0+1JlRZl5oNXw\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1503075689352448","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3A6zS3apJ2i7GphzDMBOl-S6hDmpn-hGGp.sxXn4%2BFhZ%2BYqv3DElJgiGmV7xr784fDLpmyvxVxoHPU","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"account_id\":73,\"company_id\":1,\"account_number\":9903,\"is_active\":1,\"is_deleted\":0,\"business_type\":null,\"name\":\"Asdfasdf\",\"location_id\":386452,\"phone_country\":\"US\",\"phone_number\":\"2312333333\",\"fax_number\":null,\"contact_name\":\"asdfasdf\",\"contact_email\":null,\"billing_location_id\":null,\"billing_name\":null,\"billing_phone_country\":null,\"billing_phone_number\":null,\"billing_fax_number\":null,\"billing_contact_name\":null,\"payment_conditions\":null,\"payment_cc_number\":null,\"payment_cc_holder_name\":null,\"payment_cc_type\":null,\"payment_cc_expiration_date\":null,\"payment_cc_authorization_code\":null,\"base_fee_pct\":null,\"fixed_fare_charge\":null,\"hourly_rate\":null,\"mile_rate\":null,\"stops_rate\":null,\"gratuity_pct\":null,\"date_created\":\"2017-08-18 16:39:42\",\"date_updated\":\"2017-08-18 16:39:42\",\"notes\":null,\"pin\":\"399708\",\"phone_international\":\"+1 231 233 3333\",\"phone_national\":\"(231) 233-3333\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"c4696cca-1437-4fca-923d-f4d30f00dc35"},{"name":"Remove business account","id":"52d9e51b-4b72-4354-b6c7-dbe3ef89bf0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"account_id","value":"15","type":"text"}]},"url":"{{host}}/user/account","urlObject":{"path":["user","account"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f8234370-a6bb-46fc-989f-256282e64ff9","name":"Remove business account","originalRequest":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"account_id","value":"15","type":"text"}]},"url":"{{host}}/user/account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"63","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:30:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"3f-MSRj3gnE8TD+w+GvpEA4pZQin+o\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":{},\"meta\":{\"code\":204,\"code_description\":\"No Content\"}}"}],"_postman_id":"52d9e51b-4b72-4354-b6c7-dbe3ef89bf0a"}],"id":"392cd7bf-d1d4-45dc-9a94-fcbe6f70339f","_postman_id":"392cd7bf-d1d4-45dc-9a94-fcbe6f70339f","description":""},{"name":"Phone Verification","item":[{"name":"Start user phone verification ","id":"77fbd165-2dc0-4220-bac1-61159d2ce43e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/user/verifyphone","urlObject":{"path":["user","verifyphone"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"77fbd165-2dc0-4220-bac1-61159d2ce43e"},{"name":"Verify phone number with code","id":"24c7a227-f655-4bf1-9dfd-9d0a8c174ad4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"verification_code","value":"97533","type":"text"}]},"url":"{{host}}/user/verifyphonecode","urlObject":{"path":["user","verifyphonecode"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"50c0b085-b7cf-4f48-9ada-cdc40e29e2df","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"verification_code","value":"97533","type":"text"}]},"url":"{{host}}/api/user/verifyphonecode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"70","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 15:15:31 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"46-vB9GpJ5iB/e5MJWS+1xc5f94K1k\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1496848531896190","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AL4GNEyaj2JcZywq3acs_3D_L3f5xPgo2.UHN4TZt%2Bo5V6%2BGbezG2oZGS3KCfu25XSKjUtGQ2ev6I","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"verified\":true},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"24c7a227-f655-4bf1-9dfd-9d0a8c174ad4"}],"id":"5b66184b-3cfd-43fa-a030-d36d5eab8dd0","_postman_id":"5b66184b-3cfd-43fa-a030-d36d5eab8dd0","description":""},{"name":"Create user","id":"b0fb1920-6f1b-4c47-9ba6-5a3649eb0e20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{X-API-KEY}}"},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"1new4dp4r@liverydesk.com","type":"text"},{"key":"first_name","value":"wassup","type":"text"},{"key":"last_name","value":"guy","type":"text"},{"key":"phone","value":"9175555555","type":"text"},{"key":"password","value":"pass1234","type":"text"},{"key":"phone_country","value":"US","description":"<p>2-character ISO 3166-1 region code (e.g. 'SE' for Sweden, 'US' for United States)</p>\n","type":"text"},{"key":"picture","type":"file","value":null},{"key":"latitude","value":"-74.000","type":"text"},{"key":"longitude","value":"40.1","type":"text"}]},"url":"{{host}}/user","urlObject":{"path":["user"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"86873b58-e86f-4832-af26-c0e011d47bfa","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"localatest2a@liverydesk.com","type":"text"},{"key":"first_name","value":"wassup","type":"text"},{"key":"last_name","value":"guy","type":"text"},{"key":"phone","value":"123-383-2939","type":"text"},{"key":"password","value":"1234","type":"text"}]},"url":"{{host}}/api/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1393","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 14:10:16 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"571-MKzHe8+qn9iZ/igH0QWwVHGkWHQ\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1496844616600554","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AL4GNEyaj2JcZywq3acs_3D_L3f5xPgo2.UHN4TZt%2Bo5V6%2BGbezG2oZGS3KCfu25XSKjUtGQ2ev6I","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"access_token\":{\"access_token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjE5NCwiZXhwIjoxNTI4MzgwNjE2NTU4LCJhcHBsaWNhdGlvbl9pZCI6NCwiYWNjb3VudF90eXBlIjoidXNlciIsImNvbXBhbnlfaWQiOjF9.cLS6cXG8-ocYfEkYhAyG4EEch0p2iGD9cUovSCgrHl4\",\"expiration_date\":\"2018-06-07 14:10:16\"},\"user\":{\"user_id\":194,\"company_id\":1,\"password\":\"$2a$08$ccs/lAcuO3Zj6sl5yGWr1u22s0Tx9zdegc3Wn8fWkfqsaOYwDSxx2\",\"hash\":\"zugo00RVY\",\"email\":\"localatest2a@liverydesk.com\",\"device_id\":null,\"first_name\":\"wassup\",\"last_name\":\"guy\",\"location_id\":null,\"phone\":\"1233832939\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":null,\"payment_processor_id\":null,\"payment_processor_card_id\":null,\"card_last_4\":null,\"card_address_line1\":null,\"card_address_line2\":null,\"card_address_city\":null,\"card_address_state\":null,\"card_address_zip\":null,\"card_address_country\":null,\"date_created\":\"2017-06-07 14:10:16\",\"date_updated\":\"2017-06-07 14:10:16\",\"last_login_date\":null,\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"_type\":\"user\"}},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"b0fb1920-6f1b-4c47-9ba6-5a3649eb0e20"},{"name":"Get a user","id":"bf68ca95-be6a-4c34-94bb-50e643e4a6bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/user","urlObject":{"path":["user"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ea8f78b0-f295-469e-a7ef-f2c81b00293c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/api/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1126","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 14:10:55 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"466-BESeA0Eo/Iqpg359+00gTfozkxM\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1496844655883884","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AL4GNEyaj2JcZywq3acs_3D_L3f5xPgo2.UHN4TZt%2Bo5V6%2BGbezG2oZGS3KCfu25XSKjUtGQ2ev6I","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"user_id\":193,\"company_id\":1,\"password\":\"$2a$08$RAJ1XBf8or0Osr2JmGwD/uUghyHTRNMjnjYMC0/fgnbrHrG0eQphq\",\"hash\":\"R61KKhhOY\",\"email\":\"localtest@liverydesk.com\",\"device_id\":null,\"first_name\":\"wassup\",\"last_name\":\"guy\",\"location_id\":null,\"phone\":\"1233832939\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":null,\"payment_processor_id\":null,\"payment_processor_card_id\":null,\"card_last_4\":null,\"card_address_line1\":null,\"card_address_line2\":null,\"card_address_city\":null,\"card_address_state\":null,\"card_address_zip\":null,\"card_address_country\":null,\"date_created\":\"2017-06-04 23:50:01\",\"date_updated\":\"2017-06-04 23:53:09\",\"last_login_date\":\"2017-06-04 23:53:09\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"_type\":\"user\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"bf68ca95-be6a-4c34-94bb-50e643e4a6bf"},{"name":"Update user","id":"a098b1a7-49b1-4506-8f9c-1925c4db3dbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-API-KEY","value":"{{api_key}}"},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"wassup","type":"text"},{"key":"last_name","value":"guy","type":"text"},{"key":"phone","value":"123-383-2939","type":"text","disabled":true},{"key":"phone_country","value":"US","type":"text","disabled":true},{"key":"password","value":"1234","type":"text"},{"key":"picture","type":"file","value":null},{"key":"latitude","value":"-74.1","type":"text"},{"key":"longitude","value":"40","type":"text"},{"key":"user_id","value":"1","type":"text"}]},"url":"{{host}}/user","urlObject":{"path":["user"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"40016bee-81d8-4642-89a3-6019bcfdff51","name":"Success","originalRequest":{"method":"PUT","header":[{"key":"X-API-KEY","value":"{{api_key}}"},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"wassup","type":"text"},{"key":"last_name","value":"guy","type":"text"},{"key":"phone","value":"123-383-2939","type":"text"},{"key":"password","value":"1234","type":"text"}]},"url":"{{host}}/api/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1126","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 14:11:06 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"466-BESeA0Eo/Iqpg359+00gTfozkxM\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1496844666865712","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AL4GNEyaj2JcZywq3acs_3D_L3f5xPgo2.UHN4TZt%2Bo5V6%2BGbezG2oZGS3KCfu25XSKjUtGQ2ev6I","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"user_id\":193,\"company_id\":1,\"password\":\"$2a$08$RAJ1XBf8or0Osr2JmGwD/uUghyHTRNMjnjYMC0/fgnbrHrG0eQphq\",\"hash\":\"R61KKhhOY\",\"email\":\"localtest@liverydesk.com\",\"device_id\":null,\"first_name\":\"wassup\",\"last_name\":\"guy\",\"location_id\":null,\"phone\":\"1233832939\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":null,\"payment_processor_id\":null,\"payment_processor_card_id\":null,\"card_last_4\":null,\"card_address_line1\":null,\"card_address_line2\":null,\"card_address_city\":null,\"card_address_state\":null,\"card_address_zip\":null,\"card_address_country\":null,\"date_created\":\"2017-06-04 23:50:01\",\"date_updated\":\"2017-06-04 23:53:09\",\"last_login_date\":\"2017-06-04 23:53:09\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"_type\":\"user\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"a098b1a7-49b1-4506-8f9c-1925c4db3dbe"},{"name":"Get  job history","id":"50e9c0ee-c09d-46fe-9a26-6c6f383ee80b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjIxNCwiZXhwIjoxNTY3NzkyNzQ4NTUyLCJhcHBsaWNhdGlvbl9pZCI6NCwiYWNjb3VudF90eXBlIjoidXNlciIsImNvbXBhbnlfaWQiOjF9.YaQpDDTNCsvoyJrkyvJM_rhbth_KvIkuTK2EaBPUuwY"}],"url":"{{host}}/job?_start=0&_limit=25&_page=1&start_date=06/12/2018&end_date=07/14/2018","description":"<p>Get job history for a User depending on the access_token</p>\n","urlObject":{"path":["job"],"host":["{{host}}"],"query":[{"key":"_start","value":"0"},{"key":"_limit","value":"25"},{"key":"_page","value":"1"},{"key":"start_date","value":"06/12/2018"},{"key":"end_date","value":"07/14/2018"}],"variable":[]}},"response":[{"id":"a4bd1452-6775-4507-9841-2827f12521d9","name":"Success","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/api/job"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"16978","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 15:17:03 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"4252-jwskkPFygkUDraQLpn4KwjaNwhE\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1496848623962700","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AL4GNEyaj2JcZywq3acs_3D_L3f5xPgo2.UHN4TZt%2Bo5V6%2BGbezG2oZGS3KCfu25XSKjUtGQ2ev6I","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":[{\"job_id\":562525,\"job_number\":562508,\"origin_job_number\":null,\"hash\":\"S1E89QGfW\",\"user_id\":193,\"contact_name\":\"wassup guy\",\"account_id\":0,\"phone\":\"1233832939\",\"company_id\":1,\"origin_company_id\":null,\"application_id\":4,\"driver_id\":0,\"pickup_location_id\":386303,\"actual_pickup_location_id\":null,\"dropoff_location_id\":386435,\"actual_dropoff_location_id\":null,\"pickup_location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"pickup_location_name\":null,\"pickup_location_notes\":\"\",\"dropoff_location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"dropoff_location_name\":null,\"pickup_date\":\"2017-06-05 00:48:11\",\"actual_pickup_date\":null,\"dropoff_date\":null,\"car_type_id\":0,\"passengers\":1,\"status_id\":1,\"in_progress_date\":null,\"infront_date\":null,\"cancelled_date\":null,\"driver_notes\":\"\",\"internal_notes\":\"\",\"is_reservation\":0,\"reservation_confirmation\":null,\"entered_by_employee_id\":null,\"updated_by_employee_id\":null,\"date_timezone_offset\":240,\"notify_passenger\":0,\"passenger_notified_date\":null,\"estimated_price\":null,\"show_estimated_price\":0,\"suggested_actual_price\":null,\"actual_price\":null,\"tip\":null,\"pricing_data\":null,\"payment_processor\":null,\"payment_method\":\"cash\",\"payment_status\":\"pending\",\"payment_confirmation\":null,\"payment_authorized_amount\":null,\"payment_authorized_date\":null,\"payment_paid_date\":null,\"payment_refunded_amount\":null,\"payment_refunded_date\":null,\"start_date\":null,\"driver_reminded_date\":null,\"date_created\":\"2017-06-05 00:48:11\",\"date_updated\":\"2017-06-05 00:48:11\",\"autodispatch_date\":null,\"autodispatch_config_id\":null,\"exclude_from_autodispatcher\":0,\"driver\":{\"employee_id\":null,\"driver_number\":null,\"first_name\":null,\"last_name\":null,\"username\":null,\"email\":null,\"password\":null,\"password_hint\":null,\"hash\":null,\"company_id\":null,\"location_id\":null,\"primary_phone\":null,\"secondary_phone\":null,\"is_driver\":null,\"role_name\":null,\"is_active\":null,\"is_deleted\":null,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":null,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":null,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":null,\"driver_license_expiration\":null,\"driver_license_class\":null,\"is_car_owner\":null,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":null,\"date_updated\":null,\"car_type_id\":null,\"new_car_type_id\":null,\"car_make\":null,\"car_model\":null,\"car_year\":null,\"car_color\":null,\"registration_number\":null,\"registration_expiration\":null,\"registration_owner_name\":null,\"license_plate_number\":null,\"insurance_policy_number\":null,\"insurance_provider_name\":null,\"insurance_expiration_date\":null,\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"_type\":\"employee\"},\"driver_base\":{\"base_id\":null,\"name\":null},\"origin_company\":{\"company_id\":null,\"plan_id\":null,\"name\":null,\"location_id\":null,\"subdomain\":null,\"phone\":null,\"email\":null,\"website\":null,\"is_active\":null,\"is_on_trial\":null,\"trial_end_date\":null,\"timezone\":null,\"date_created\":null,\"date_updated\":null,\"enable_partnerships\":null,\"current_job_number\":null,\"config\":null},\"account\":{\"account_id\":null,\"company_id\":null,\"account_number\":null,\"name\":null,\"_type\":\"account\"},\"job_status\":{\"status_id\":1,\"name\":\"Pending\",\"slug\":\"pending\",\"order\":10},\"application\":{\"application_id\":4,\"name\":\"Metroline Passenger App Android\",\"role_name\":\"api-public\",\"api_key\":\"166982d0c74906f525ee25000b4b0693\",\"company_id\":1,\"base_id\":1,\"is_active\":1,\"icon\":\"fa fa-sm fa-user\",\"type\":null,\"is_internal\":0,\"date_created\":\"2015-06-05 15:00:18\",\"date_updated\":\"2017-03-04 17:28:48\",\"_type\":\"application\"},\"user\":{\"user_id\":193,\"company_id\":1,\"password\":\"$2a$08$bQG6Ju5AId8nKc.zRb.sWOQUktX2ggyzSpkxm5JBKtQNhufkPgetO\",\"hash\":\"R61KKhhOY\",\"email\":\"localtest@liverydesk.com\",\"device_id\":null,\"first_name\":\"wassup\",\"last_name\":\"guy\",\"location_id\":null,\"phone\":\"9175677735\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":\"stripe\",\"payment_processor_id\":\"cus_AnglxrUzth0UCh\",\"payment_processor_card_id\":\"card_1AS5UyEgaH5gKO4gQYbgsVhQ\",\"card_last_4\":\"4242\",\"card_address_line1\":\"123 some street\",\"card_address_line2\":\"line 2\",\"card_address_city\":\"new york\",\"card_address_state\":\"ny\",\"card_address_zip\":\"11010\",\"card_address_country\":\"USA\",\"date_created\":\"2017-06-04 23:50:01\",\"date_updated\":\"2017-06-07 15:15:31\",\"last_login_date\":\"2017-06-07 14:15:14\",\"phone_verified\":1,\"phone_verification_code\":null,\"phone_verified_date\":\"2017-06-07 15:15:31\",\"_type\":\"user\"},\"employee\":{\"employee_id\":null,\"first_name\":null,\"last_name\":null,\"email\":null,\"company_id\":null,\"_type\":\"employee\"},\"job_options\":null,\"car_types\":[{\"type_id\":\"1\",\"name\":\"Sedan\",\"order\":\"1\",\"icon\":\"sedan.png\",\"_type\":\"generic\"},{\"type_id\":\"2\",\"name\":\"SUV\",\"order\":\"500\",\"icon\":\"suv.png\",\"_type\":\"generic\"}],\"_type\":\"job\",\"status\":{\"status_id\":1,\"name\":\"Pending\",\"slug\":\"pending\",\"order\":10},\"job_stops\":[{\"job_stop_id\":1179648,\"company_id\":1,\"job_id\":562525,\"location_id\":386303,\"actual_location_id\":null,\"user_id\":null,\"type\":\"pickup\",\"meta\":null,\"status_id\":1,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":null,\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":null,\"contact_name\":null,\"driver_notes\":\"walk with a bat\",\"internal_notes\":\"shady location\",\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-05 00:48:12\",\"date_updated\":\"2017-06-05 00:48:12\",\"date_deleted\":null,\"location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"actual_location\":{\"location_id\":null,\"address\":null,\"address_two\":null,\"city\":null,\"state\":null,\"postal_code\":null,\"country\":null,\"long_name\":null,\"short_name\":null,\"latitude\":null,\"longitude\":null,\"date_created\":null,\"date_updated\":null,\"_type\":\"location\"},\"_type\":\"job_stop\"},{\"job_stop_id\":1179647,\"company_id\":1,\"job_id\":562525,\"location_id\":386435,\"actual_location_id\":null,\"user_id\":null,\"type\":\"dropoff\",\"meta\":null,\"status_id\":1,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":null,\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":\"dropopff ph\",\"contact_name\":\"dropoff loc person\",\"driver_notes\":null,\"internal_notes\":null,\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-05 00:48:12\",\"date_updated\":\"2017-06-05 00:48:12\",\"date_deleted\":null,\"location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"actual_location\":{\"location_id\":null,\"address\":null,\"address_two\":null,\"city\":null,\"state\":null,\"postal_code\":null,\"country\":null,\"long_name\":null,\"short_name\":null,\"latitude\":null,\"longitude\":null,\"date_created\":null,\"date_updated\":null,\"_type\":\"location\"},\"_type\":\"job_stop\"}]},{\"job_id\":562524,\"job_number\":562507,\"origin_job_number\":null,\"hash\":\"H158O7fGZ\",\"user_id\":193,\"contact_name\":\"wassup guy\",\"account_id\":0,\"phone\":\"1233832939\",\"company_id\":1,\"origin_company_id\":null,\"application_id\":4,\"driver_id\":0,\"pickup_location_id\":386303,\"actual_pickup_location_id\":null,\"dropoff_location_id\":386435,\"actual_dropoff_location_id\":null,\"pickup_location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"pickup_location_name\":null,\"pickup_location_notes\":\"\",\"dropoff_location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"dropoff_location_name\":null,\"pickup_date\":\"2017-06-05 00:39:45\",\"actual_pickup_date\":null,\"dropoff_date\":null,\"car_type_id\":0,\"passengers\":1,\"status_id\":1,\"in_progress_date\":null,\"infront_date\":null,\"cancelled_date\":null,\"driver_notes\":\"\",\"internal_notes\":\"\",\"is_reservation\":0,\"reservation_confirmation\":null,\"entered_by_employee_id\":null,\"updated_by_employee_id\":null,\"date_timezone_offset\":240,\"notify_passenger\":0,\"passenger_notified_date\":null,\"estimated_price\":null,\"show_estimated_price\":0,\"suggested_actual_price\":null,\"actual_price\":null,\"tip\":null,\"pricing_data\":null,\"payment_processor\":null,\"payment_method\":\"cash\",\"payment_status\":\"pending\",\"payment_confirmation\":null,\"payment_authorized_amount\":null,\"payment_authorized_date\":null,\"payment_paid_date\":null,\"payment_refunded_amount\":null,\"payment_refunded_date\":null,\"start_date\":null,\"driver_reminded_date\":null,\"date_created\":\"2017-06-05 00:39:45\",\"date_updated\":\"2017-06-05 00:39:45\",\"autodispatch_date\":null,\"autodispatch_config_id\":null,\"exclude_from_autodispatcher\":0,\"driver\":{\"employee_id\":null,\"driver_number\":null,\"first_name\":null,\"last_name\":null,\"username\":null,\"email\":null,\"password\":null,\"password_hint\":null,\"hash\":null,\"company_id\":null,\"location_id\":null,\"primary_phone\":null,\"secondary_phone\":null,\"is_driver\":null,\"role_name\":null,\"is_active\":null,\"is_deleted\":null,\"social_security_number\":null,\"date_of_birth\":null,\"base\":null,\"base_id\":null,\"old_base_id\":null,\"base_license_number\":null,\"base_fee\":null,\"base_fee_frequency\":null,\"base_fee_last_processed\":null,\"enable_recurring_base_fee\":null,\"base_fee_start_date\":null,\"hack_license_number\":null,\"hack_license_expiration\":null,\"driver_license_number\":null,\"driver_license_expiration\":null,\"driver_license_class\":null,\"is_car_owner\":null,\"dispatch_app_version\":null,\"device_id\":null,\"date_created\":null,\"date_updated\":null,\"car_type_id\":null,\"new_car_type_id\":null,\"car_make\":null,\"car_model\":null,\"car_year\":null,\"car_color\":null,\"registration_number\":null,\"registration_expiration\":null,\"registration_owner_name\":null,\"license_plate_number\":null,\"insurance_policy_number\":null,\"insurance_provider_name\":null,\"insurance_expiration_date\":null,\"tlc_number\":null,\"tlc_expiration_date\":null,\"tlc_inspection_date\":null,\"tlc_inspection_expiration_date\":null,\"_type\":\"employee\"},\"driver_base\":{\"base_id\":null,\"name\":null},\"origin_company\":{\"company_id\":null,\"plan_id\":null,\"name\":null,\"location_id\":null,\"subdomain\":null,\"phone\":null,\"email\":null,\"website\":null,\"is_active\":null,\"is_on_trial\":null,\"trial_end_date\":null,\"timezone\":null,\"date_created\":null,\"date_updated\":null,\"enable_partnerships\":null,\"current_job_number\":null,\"config\":null},\"account\":{\"account_id\":null,\"company_id\":null,\"account_number\":null,\"name\":null,\"_type\":\"account\"},\"job_status\":{\"status_id\":1,\"name\":\"Pending\",\"slug\":\"pending\",\"order\":10},\"application\":{\"application_id\":4,\"name\":\"Metroline Passenger App Android\",\"role_name\":\"api-public\",\"api_key\":\"166982d0c74906f525ee25000b4b0693\",\"company_id\":1,\"base_id\":1,\"is_active\":1,\"icon\":\"fa fa-sm fa-user\",\"type\":null,\"is_internal\":0,\"date_created\":\"2015-06-05 15:00:18\",\"date_updated\":\"2017-03-04 17:28:48\",\"_type\":\"application\"},\"user\":{\"user_id\":193,\"company_id\":1,\"password\":\"$2a$08$bQG6Ju5AId8nKc.zRb.sWOQUktX2ggyzSpkxm5JBKtQNhufkPgetO\",\"hash\":\"R61KKhhOY\",\"email\":\"localtest@liverydesk.com\",\"device_id\":null,\"first_name\":\"wassup\",\"last_name\":\"guy\",\"location_id\":null,\"phone\":\"9175677735\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":\"stripe\",\"payment_processor_id\":\"cus_AnglxrUzth0UCh\",\"payment_processor_card_id\":\"card_1AS5UyEgaH5gKO4gQYbgsVhQ\",\"card_last_4\":\"4242\",\"card_address_line1\":\"123 some street\",\"card_address_line2\":\"line 2\",\"card_address_city\":\"new york\",\"card_address_state\":\"ny\",\"card_address_zip\":\"11010\",\"card_address_country\":\"USA\",\"date_created\":\"2017-06-04 23:50:01\",\"date_updated\":\"2017-06-07 15:15:31\",\"last_login_date\":\"2017-06-07 14:15:14\",\"phone_verified\":1,\"phone_verification_code\":null,\"phone_verified_date\":\"2017-06-07 15:15:31\",\"_type\":\"user\"},\"employee\":{\"employee_id\":null,\"first_name\":null,\"last_name\":null,\"email\":null,\"company_id\":null,\"_type\":\"employee\"},\"job_options\":null,\"car_types\":[{\"type_id\":\"1\",\"name\":\"Sedan\",\"order\":\"1\",\"icon\":\"sedan.png\",\"_type\":\"generic\"},{\"type_id\":\"2\",\"name\":\"SUV\",\"order\":\"500\",\"icon\":\"suv.png\",\"_type\":\"generic\"}],\"_type\":\"job\",\"status\":{\"status_id\":1,\"name\":\"Pending\",\"slug\":\"pending\",\"order\":10},\"job_stops\":[{\"job_stop_id\":1179645,\"company_id\":1,\"job_id\":562524,\"location_id\":386303,\"actual_location_id\":null,\"user_id\":null,\"type\":\"pickup\",\"meta\":null,\"status_id\":1,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":null,\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":null,\"contact_name\":null,\"driver_notes\":\"walk with a bat\",\"internal_notes\":\"shady location\",\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-05 00:39:46\",\"date_updated\":\"2017-06-05 00:39:46\",\"date_deleted\":null,\"location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2017-06-04 20:31:18\",\"_type\":\"location\"},\"actual_location\":{\"location_id\":null,\"address\":null,\"address_two\":null,\"city\":null,\"state\":null,\"postal_code\":null,\"country\":null,\"long_name\":null,\"short_name\":null,\"latitude\":null,\"longitude\":null,\"date_created\":null,\"date_updated\":null,\"_type\":\"location\"},\"_type\":\"job_stop\"},{\"job_stop_id\":1179646,\"company_id\":1,\"job_id\":562524,\"location_id\":386435,\"actual_location_id\":null,\"user_id\":null,\"type\":\"dropoff\",\"meta\":null,\"status_id\":1,\"arrival_date\":\"2017-06-04 16:11:00\",\"actual_arrival_date\":null,\"in_progress_date\":null,\"completed_date\":null,\"cancelled_date\":null,\"contact_phone\":\"dropopff ph\",\"contact_name\":\"dropoff loc person\",\"driver_notes\":null,\"internal_notes\":null,\"order\":1,\"attachments\":null,\"date_created\":\"2017-06-05 00:39:46\",\"date_updated\":\"2017-06-05 00:39:46\",\"date_deleted\":null,\"location\":{\"location_id\":386435,\"address\":\"330 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"330 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.7383,\"longitude\":-73.64538,\"date_created\":\"2017-04-25 03:19:27\",\"date_updated\":\"2017-05-10 22:57:25\",\"_type\":\"location\"},\"actual_location\":{\"location_id\":null,\"address\":null,\"address_two\":null,\"city\":null,\"state\":null,\"postal_code\":null,\"country\":null,\"long_name\":null,\"short_name\":null,\"latitude\":null,\"longitude\":null,\"date_created\":null,\"date_updated\":null,\"_type\":\"location\"},\"_type\":\"job_stop\"}]}],\"meta\":{\"code\":200,\"code_description\":\"Ok\",\"items\":2}}"}],"_postman_id":"50e9c0ee-c09d-46fe-9a26-6c6f383ee80b"},{"name":"Update user push tokens","id":"aea31e16-4325-40c1-800a-075e3721a3fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"push_token","value":"sometoken","type":"text"},{"key":"platform","value":"ios","description":"<p><code>android</code> or <code>ios</code></p>\n","type":"text"}]},"url":"{{host}}/user/sync","urlObject":{"path":["user","sync"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e5c47c04-ba8d-459f-98df-7d9afd60a721","name":"Success","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"push_token","value":"sometoken","type":"text"},{"key":"platform","value":"ios","type":"text"}]},"url":"{{host}}/api/user/sync"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1126","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 14:15:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"466-H2dhlAH5hCxkqOIZh2WD4UgwSP8\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1496844914233192","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AL4GNEyaj2JcZywq3acs_3D_L3f5xPgo2.UHN4TZt%2Bo5V6%2BGbezG2oZGS3KCfu25XSKjUtGQ2ev6I","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"user_id\":193,\"company_id\":1,\"password\":\"$2a$08$RAJ1XBf8or0Osr2JmGwD/uUghyHTRNMjnjYMC0/fgnbrHrG0eQphq\",\"hash\":\"R61KKhhOY\",\"email\":\"localtest@liverydesk.com\",\"device_id\":null,\"first_name\":\"wassup\",\"last_name\":\"guy\",\"location_id\":null,\"phone\":\"1233832939\",\"role_name\":\"registered-user\",\"facebook_id\":null,\"gender\":null,\"is_active\":1,\"timezone\":null,\"locale\":null,\"notification_sandbox\":0,\"image_stored_name\":null,\"image_original_name\":null,\"image_thumb_stored_name\":null,\"image_extension\":null,\"image_size\":null,\"password_reset_hash\":null,\"password_reset_client_hash\":null,\"password_reset_hash_date\":null,\"payment_processor\":null,\"payment_processor_id\":null,\"payment_processor_card_id\":null,\"card_last_4\":null,\"card_address_line1\":null,\"card_address_line2\":null,\"card_address_city\":null,\"card_address_state\":null,\"card_address_zip\":null,\"card_address_country\":null,\"date_created\":\"2017-06-04 23:50:01\",\"date_updated\":\"2017-06-07 14:15:14\",\"last_login_date\":\"2017-06-07 14:15:14\",\"phone_verified\":null,\"phone_verification_code\":null,\"phone_verified_date\":null,\"_type\":\"user\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"aea31e16-4325-40c1-800a-075e3721a3fe"},{"name":"Forgot Password start","id":"d61c730a-a513-4f65-97fa-e58d76a94612","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"localtest@liverydesk.com","type":"text"}]},"url":"{{host}}/user/forgotpassword","urlObject":{"path":["user","forgotpassword"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"bd924fba-1728-4a0f-84d0-bb9ef6462f0a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"localtest@liverydesk.com","type":"text"}]},"url":"{{host}}/api/user/forgotpassword"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"133","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Jun 2017 14:54:10 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"85-i8A3l036EmRJhXHal/DabaKe1xA\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""},{"key":"x-parent","value":"0","name":"x-parent","description":""},{"key":"x-server-send","value":"1496847250522561","name":"x-server-send","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"api.liverydesk.local","path":"/","secure":false,"value":"s%3AL4GNEyaj2JcZywq3acs_3D_L3f5xPgo2.UHN4TZt%2Bo5V6%2BGbezG2oZGS3KCfu25XSKjUtGQ2ev6I","key":"connect.sid"}],"responseTime":null,"body":"{\"data\":{\"token\":\"TGgZFpLZ8FxcDN41Q++CYv9ubJg=\",\"expiration_date\":\"2017-06-08 14:54:07\"},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"d61c730a-a513-4f65-97fa-e58d76a94612"},{"name":"Reset password","id":"21affef0-a91d-4ccc-af48-85cd427aa259","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"token","value":"Psx8dyOlgByinPHel5%2BdvuIBjIk%3D ","type":"text"},{"key":"password","value":"pass1234","type":"text"},{"key":"password_confirmation","value":"pass1234","type":"text"}]},"url":"{{host}}/user/resetpassword","urlObject":{"path":["user","resetpassword"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21affef0-a91d-4ccc-af48-85cd427aa259"},{"name":"Logout","id":"852a8dc3-c9a4-451c-a9dc-c80c5bbc98bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/user/logout","urlObject":{"path":["user","logout"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d9321179-7e3a-4db1-86b6-9871fea48203","name":"Logout","originalRequest":{"method":"POST","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"{{host}}/user/logout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"55","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:30:57 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"37-kKkXe6Aga9BBf062Yq3yW1sMOBo\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":{},\"meta\":{\"code\":200,\"code_description\":\"Ok\"}}"}],"_postman_id":"852a8dc3-c9a4-451c-a9dc-c80c5bbc98bf"},{"name":"Get Location History","id":"1385757f-9b31-4d1d-9530-9f9f969368ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjIxMywiZXhwIjoxNTQ5MDczODcxNTc3LCJhcHBsaWNhdGlvbl9pZCI6NSwiYWNjb3VudF90eXBlIjoidXNlciIsImNvbXBhbnlfaWQiOjF9.XNRcYDX7lB8zyoRLYR6jDJFwZRd_p8_opmGvYVuy3X4"}],"url":"{{host}}/user/location-history?type=dropoff","description":"<p>Get the last 10 locations this user had for this stop type</p>\n","urlObject":{"path":["user","location-history"],"host":["{{host}}"],"query":[{"description":{"content":"<p>only 'dropoff' or 'pickup'</p>\n","type":"text/plain"},"key":"type","value":"dropoff"}],"variable":[]}},"response":[{"id":"b76bffd0-919f-42d9-9cc5-bd92d316f6c5","name":"Get Location History","originalRequest":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjIxMywiZXhwIjoxNTQ5MDczODcxNTc3LCJhcHBsaWNhdGlvbl9pZCI6NSwiYWNjb3VudF90eXBlIjoidXNlciIsImNvbXBhbnlfaWQiOjF9.XNRcYDX7lB8zyoRLYR6jDJFwZRd_p8_opmGvYVuy3X4"}],"url":{"raw":"{{host}}/user/location-history?type=dropoff","host":["{{host}}"],"path":["user","location-history"],"query":[{"key":"type","value":"dropoff","description":"only 'dropoff' or 'pickup'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"5236","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 18 Jul 2018 19:31:04 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1474-GeePRI2AIDcBUVAGKnoGwPJvhQk\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"s%3AqIqrdK8HQyXSsnzAr8a6JEmsaOta0zfj.zafLFtkEX3qcA1FHapKgmVvcGvWzJEqSGKCa%2Bfu0Z3s","key":"connect.sid"},{"expires":"Invalid Date","httpOnly":false,"domain":"mlcabs.liverydesk.local","path":"/","secure":false,"value":"j%3A%7B%22company_id%22%3A1%2C%22subdomain%22%3A%22mlcabs%22%2C%22name%22%3A%22LD%20Loca2l%22%2C%22api_key%22%3A%223423423432057d1f6f242f58ca8744f1%22%7D","key":"company"}],"responseTime":null,"body":"{\"data\":[{\"contact_name\":null,\"contact_phone\":null,\"contact_phone_country\":null,\"notes\":null,\"driver_notes\":null,\"location\":{\"location_id\":387065,\"address\":\"234 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"234 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"234 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.73892,\"longitude\":-73.64043,\"date_created\":\"2018-03-05 15:20:56\",\"date_updated\":\"2018-03-27 21:24:32\",\"place_id\":null}},{\"contact_name\":null,\"contact_phone\":null,\"contact_phone_country\":null,\"notes\":null,\"driver_notes\":null,\"location\":{\"location_id\":386819,\"address\":\"444 Northern Boulevard\",\"address_two\":null,\"city\":\"Great Neck\",\"state\":\"New York\",\"postal_code\":\"11021\",\"country\":\"US\",\"long_name\":\"444 Northern Blvd, Great Neck, NY 11021, USA\",\"short_name\":\"444 Northern Blvd, Great Neck, NY 11021, USA\",\"latitude\":40.7797,\"longitude\":-73.72106,\"date_created\":\"2017-12-14 00:25:39\",\"date_updated\":\"2018-03-29 16:06:49\",\"place_id\":null}},{\"contact_name\":null,\"contact_phone\":null,\"contact_phone_country\":null,\"notes\":null,\"driver_notes\":null,\"location\":{\"location_id\":387052,\"address\":\"1286 Northern Boulevard\",\"address_two\":null,\"city\":\"Manhasset\",\"state\":\"New York\",\"postal_code\":\"11030\",\"country\":\"US\",\"long_name\":\"1286 Northern Blvd, Manhasset, NY 11030, USA\",\"short_name\":\"1286 Northern Blvd, Manhasset, NY 11030, USA\",\"latitude\":40.79242,\"longitude\":-73.69864,\"date_created\":\"2018-03-01 22:32:59\",\"date_updated\":\"2018-03-29 15:52:46\",\"place_id\":null}},{\"contact_name\":null,\"contact_phone\":null,\"contact_phone_country\":null,\"notes\":null,\"driver_notes\":null,\"location\":{\"location_id\":387078,\"address\":\"123-40 Merrick Boulevard\",\"address_two\":null,\"city\":\"Queens\",\"state\":\"New York\",\"postal_code\":\"11434\",\"country\":\"US\",\"long_name\":\"123-40 Merrick Blvd, Jamaica, NY 11434, USA\",\"short_name\":\"123-40 Merrick Blvd, Jamaica, NY 11434, USA\",\"latitude\":40.68234,\"longitude\":-73.76775,\"date_created\":\"2018-03-05 18:56:00\",\"date_updated\":\"2018-03-28 22:04:14\",\"place_id\":null}},{\"contact_name\":null,\"contact_phone\":null,\"contact_phone_country\":null,\"notes\":null,\"driver_notes\":null,\"location\":{\"location_id\":386793,\"address\":\"1230 Old Country Road\",\"address_two\":null,\"city\":\"Westbury\",\"state\":\"New York\",\"postal_code\":\"11590\",\"country\":\"US\",\"long_name\":\"1230 Old Country Rd, Westbury, NY 11590, USA\",\"short_name\":\"1230 Old Country Rd, Westbury, NY 11590, USA\",\"latitude\":40.74343,\"longitude\":-73.59999,\"date_created\":\"2017-11-29 23:58:11\",\"date_updated\":\"2018-04-03 14:10:46\",\"place_id\":null}},{\"contact_name\":null,\"contact_phone\":null,\"contact_phone_country\":null,\"notes\":null,\"driver_notes\":null,\"location\":{\"location_id\":386303,\"address\":\"123 Jericho Turnpik\",\"address_two\":null,\"city\":\"Floral Park\",\"state\":\"New York\",\"postal_code\":\"11001\",\"country\":\"US\",\"long_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"short_name\":\"123 Jericho Turnpike, Floral Park, NY 11001, USA\",\"latitude\":40.72822,\"longitude\":-73.70667,\"date_created\":\"2016-06-18 22:41:36\",\"date_updated\":\"2018-07-18 19:18:14\",\"place_id\":null}},{\"contact_name\":null,\"contact_phone\":null,\"contact_phone_country\":null,\"notes\":null,\"driver_notes\":null,\"location\":{\"location_id\":387070,\"address\":\"123 Old Country Road\",\"address_two\":null,\"city\":\"Mineola\",\"state\":\"New York\",\"postal_code\":\"11501\",\"country\":\"US\",\"long_name\":\"123 Old Country Rd, Mineola, NY 11501, USA\",\"short_name\":\"123 Old Country Rd, Mineola, NY 11501, USA\",\"latitude\":40.73968,\"longitude\":-73.63541,\"date_created\":\"2018-03-05 15:29:46\",\"date_updated\":\"2018-03-05 15:29:46\",\"place_id\":null}},{\"contact_name\":null,\"contact_phone\":null,\"contact_phone_country\":null,\"notes\":null,\"driver_notes\":null,\"location\":{\"location_id\":387068,\"address\":\"1115 Old Country Road\",\"address_two\":null,\"city\":\"Westbury\",\"state\":\"New York\",\"postal_code\":\"11590\",\"country\":\"US\",\"long_name\":\"1115 Old Country Rd, Westbury, NY 11590, USA\",\"short_name\":\"1115 Old Country Rd, Westbury, NY 11590, USA\",\"latitude\":40.74773,\"longitude\":-73.59235,\"date_created\":\"2018-03-05 15:29:16\",\"date_updated\":\"2018-03-29 19:44:03\",\"place_id\":null}},{\"contact_name\":null,\"contact_phone\":null,\"contact_phone_country\":null,\"notes\":null,\"driver_notes\":null,\"location\":{\"location_id\":387066,\"address\":\"213-4 Northern Boulevard\",\"address_two\":null,\"city\":\"Queens\",\"state\":\"New York\",\"postal_code\":\"11361\",\"country\":\"US\",\"long_name\":\"213-4 Northern Blvd, Bayside, NY 11361, USA\",\"short_name\":\"213-4 Northern Blvd, Bayside, NY 11361, USA\",\"latitude\":40.75956,\"longitude\":-73.7702,\"date_created\":\"2018-03-05 15:21:34\",\"date_updated\":\"2018-03-05 15:21:38\",\"place_id\":null}},{\"contact_name\":null,\"contact_phone\":null,\"contact_phone_country\":null,\"notes\":null,\"driver_notes\":null,\"location\":{\"location_id\":386821,\"address\":\"555 Northern Boulevard\",\"address_two\":null,\"city\":\"Great Neck\",\"state\":\"New York\",\"postal_code\":\"11021\",\"country\":\"US\",\"long_name\":\"555 Northern Blvd, Great Neck, NY 11021, USA\",\"short_name\":\"555 Northern Blvd, Great Neck, NY 11021, USA\",\"latitude\":40.78187,\"longitude\":-73.7184,\"date_created\":\"2017-12-15 22:56:24\",\"date_updated\":\"2018-03-20 15:36:32\",\"place_id\":null}}],\"meta\":{\"code\":200,\"code_description\":\"Ok\",\"items\":10}}"}],"_postman_id":"1385757f-9b31-4d1d-9530-9f9f969368ae"},{"name":"Invite a user","id":"3e65301d-e2c5-4703-8cae-aff4b7bd68f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{api_key}}"},{"key":"X-ACCESS-TOKEN","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOjIxNCwiZXhwIjoxNTgzOTUyNjc5NTcxLCJhcHBsaWNhdGlvbl9pZCI6NSwiYWNjb3VudF90eXBlIjoidXNlciIsImNvbXBhbnlfaWQiOjF9.9PJ9KShgl4ayJRGAmc7FERAh_i6f7JoFe5KEqIdfNO0"}],"body":{"mode":"formdata","formdata":[{"key":"phone","value":"123123123","type":"text"},{"key":"phone_country","value":"US","type":"text"},{"key":"email","value":"someuser@email.com","type":"text"}]},"url":"{{host}}/user/invite","urlObject":{"path":["user","invite"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e65301d-e2c5-4703-8cae-aff4b7bd68f7"}],"id":"4bbb3ed3-ab64-4581-845e-8de074f5646c","_postman_id":"4bbb3ed3-ab64-4581-845e-8de074f5646c","description":""},{"name":"Vehicles","item":[{"name":"Get Vehicle","id":"26f7e6c3-2bf6-40de-8609-ad9818f430e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":"{{host}}/vehicle/:vehicle_id","urlObject":{"path":["vehicle",":vehicle_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"12","key":"vehicle_id"}]}},"response":[{"id":"2930134a-5dfd-472f-bc9b-991e41341dc2","name":"Get Vehicle","originalRequest":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"url":{"raw":"{{host}}/vehicle/:vehicle_id","host":["{{host}}"],"path":["vehicle",":vehicle_id"],"variable":[{"key":"vehicle_id","value":"376"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1070"},{"key":"ETag","value":"W/\"42e-BWvEaBsnsv7mHU7kZgkk6Nf+3DA\""},{"key":"Date","value":"Tue, 10 Mar 2020 22:08:16 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"vehicle_id\": 376,\n        \"company_id\": 1,\n        \"type_id\": 1,\n        \"make\": \"Toyota\",\n        \"model\": \"Celica\",\n        \"year\": 1990,\n        \"color\": \"Black\",\n        \"registration_number\": \"123\",\n        \"registration_expiration_date\": \"2020-10-10T00:00:00Z\",\n        \"registration_owner_name\": \"123\",\n        \"license_plate_number\": \"123\",\n        \"insurance_policy_number\": \"123\",\n        \"insurance_provider_name\": \"123\",\n        \"insurance_expiration_date\": \"2020-10-10T00:00:00Z\",\n        \"tlc_number\": \"123\",\n        \"tlc_expiration_date\": \"2020-10-10T00:00:00Z\",\n        \"tlc_inspection_date\": \"2020-10-10T00:00:00Z\",\n        \"tlc_inspection_expiration_date\": \"2020-10-10T00:00:00Z\",\n        \"date_created\": \"2020-03-10T22:07:22Z\",\n        \"date_updated\": \"2020-03-10T22:07:22Z\",\n        \"date_deleted\": null,\n        \"inspection_expiration_date\": \"2020-10-10T00:00:00Z\",\n        \"_type\": \"vehicle\",\n        \"car_type\": {\n            \"type_id\": 1,\n            \"old_type_id\": 1,\n            \"company_id\": 1,\n            \"name\": \"Sedan\",\n            \"order\": 8,\n            \"icon\": \"sedan.png\",\n            \"attributes\": {\n                \"capacity\": {\n                    \"value\": 4\n                }\n            },\n            \"is_active\": 1,\n            \"date_created\": null,\n            \"date_updated\": \"2019-02-22T02:46:01Z\",\n            \"date_deleted\": null,\n            \"side_image\": \"default_sedan.png\",\n            \"top_image\": null,\n            \"_type\": \"car_type\"\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.25.4\"\n    }\n}"}],"_postman_id":"26f7e6c3-2bf6-40de-8609-ad9818f430e2"},{"name":"Get All Vehicles","id":"1d169d3d-da7c-4b73-a391-e4c6c8031209","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/vehicle","urlObject":{"path":["vehicle"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d169d3d-da7c-4b73-a391-e4c6c8031209"},{"name":"Create Vehicle","id":"931c4753-9101-48c2-99fc-529bb7431e9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"type_id","value":"1","type":"text"},{"key":"make","value":"Toyota","type":"text"},{"key":"model","value":"Celica","type":"text"},{"key":"year","value":"1990","type":"text"},{"key":"color","value":"Black","type":"text"},{"key":"registration_number","value":"123","type":"text"},{"key":"registration_expiration_date","value":"2020-10-10","type":"text"},{"key":"registration_owner_name","value":"123","type":"text"},{"key":"license_plate_number","value":"123","type":"text"},{"key":"insurance_policy_number","value":"123","type":"text"},{"key":"insurance_provider_name","value":"123","type":"text"},{"key":"insurance_expiration_date","value":"2020-10-10","type":"text"},{"key":"tlc_number","value":"123","type":"text"},{"key":"tlc_expiration_date","value":"2020-10-10","description":"<p>Optional</p>\n","type":"text"},{"key":"tlc_inspection_date","value":"2020-10-10","description":"<p>Optional</p>\n","type":"text"},{"key":"tlc_inspection_expiration_date","value":"2020-10-10","description":"<p>Optional</p>\n","type":"text"},{"key":"inspection_expiration_date","value":"2020-10-10","description":"<p>Optional</p>\n","type":"text"}]},"url":"{{host}}/vehicle","urlObject":{"path":["vehicle"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"4476159a-1f3e-421d-86ac-4d9a9ad24fa6","name":"Create Vehicle","originalRequest":{"method":"POST","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"type_id","value":"1","type":"text"},{"key":"make","value":"Toyota","type":"text"},{"key":"model","value":"Celica","type":"text"},{"key":"year","value":"1990","type":"text"},{"key":"color","value":"Black","type":"text"},{"key":"registration_number","value":"123","type":"text"},{"key":"registration_expiration_date","value":"2020-10-10","type":"text"},{"key":"registration_owner_name","value":"123","type":"text"},{"key":"license_plate_number","value":"123","type":"text"},{"key":"insurance_policy_number","value":"123","type":"text"},{"key":"insurance_provider_name","value":"123","type":"text"},{"key":"insurance_expiration_date","value":"2020-10-10","type":"text"},{"key":"tlc_number","value":"123","type":"text"},{"key":"tlc_expiration_date","value":"2020-10-10","description":"Optional","type":"text"},{"key":"tlc_inspection_date","value":"2020-10-10","description":"Optional","type":"text"},{"key":"tlc_inspection_expiration_date","value":"2020-10-10","description":"Optional","type":"text"},{"key":"inspection_expiration_date","value":"2020-10-10","description":"Optional","type":"text"}]},"url":"{{host}}/vehicle"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1070"},{"key":"ETag","value":"W/\"42e-BWvEaBsnsv7mHU7kZgkk6Nf+3DA\""},{"key":"Date","value":"Tue, 10 Mar 2020 22:07:22 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"vehicle_id\": 376,\n        \"company_id\": 1,\n        \"type_id\": 1,\n        \"make\": \"Toyota\",\n        \"model\": \"Celica\",\n        \"year\": 1990,\n        \"color\": \"Black\",\n        \"registration_number\": \"123\",\n        \"registration_expiration_date\": \"2020-10-10T00:00:00Z\",\n        \"registration_owner_name\": \"123\",\n        \"license_plate_number\": \"123\",\n        \"insurance_policy_number\": \"123\",\n        \"insurance_provider_name\": \"123\",\n        \"insurance_expiration_date\": \"2020-10-10T00:00:00Z\",\n        \"tlc_number\": \"123\",\n        \"tlc_expiration_date\": \"2020-10-10T00:00:00Z\",\n        \"tlc_inspection_date\": \"2020-10-10T00:00:00Z\",\n        \"tlc_inspection_expiration_date\": \"2020-10-10T00:00:00Z\",\n        \"date_created\": \"2020-03-10T22:07:22Z\",\n        \"date_updated\": \"2020-03-10T22:07:22Z\",\n        \"date_deleted\": null,\n        \"inspection_expiration_date\": \"2020-10-10T00:00:00Z\",\n        \"_type\": \"vehicle\",\n        \"car_type\": {\n            \"type_id\": 1,\n            \"old_type_id\": 1,\n            \"company_id\": 1,\n            \"name\": \"Sedan\",\n            \"order\": 8,\n            \"icon\": \"sedan.png\",\n            \"attributes\": {\n                \"capacity\": {\n                    \"value\": 4\n                }\n            },\n            \"is_active\": 1,\n            \"date_created\": null,\n            \"date_updated\": \"2019-02-22T02:46:01Z\",\n            \"date_deleted\": null,\n            \"side_image\": \"default_sedan.png\",\n            \"top_image\": null,\n            \"_type\": \"car_type\"\n        }\n    },\n    \"meta\": {\n        \"code\": 200,\n        \"code_description\": \"Ok\",\n        \"api_version\": \"2.25.4\"\n    }\n}"}],"_postman_id":"931c4753-9101-48c2-99fc-529bb7431e9e"},{"name":"Edit Vehicle","id":"efb88eef-94fa-4ca8-a6b1-5e2725118d3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"type_id","value":"2","type":"text"},{"key":"make","value":"Toyota2","type":"text"},{"key":"model","value":"Celica2","type":"text"},{"key":"year","value":"19903","type":"text"},{"key":"color","value":"Black","type":"text","disabled":true},{"key":"registration_number","value":"123","type":"text","disabled":true},{"key":"registration_expiration_date","value":"2021-10-10","type":"text"},{"key":"registration_owner_name","value":"123","type":"text","disabled":true},{"key":"license_plate_number","value":"123","type":"text","disabled":true},{"key":"insurance_policy_number","value":"123","type":"text","disabled":true},{"key":"insurance_provider_name","value":"123","type":"text","disabled":true},{"key":"insurance_expiration_date","value":"2021-10-10","type":"text"},{"key":"tlc_number","value":"123","type":"text","disabled":true},{"key":"tlc_expiration_date","value":"2020-10-10","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"tlc_inspection_date","value":"2020-10-10","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"tlc_inspection_expiration_date","value":"2020-10-10","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"inspection_expiration_date","value":"2020-10-10","description":"<p>Optional</p>\n","type":"text","disabled":true}]},"url":"{{host}}/vehicle/:vehicle_id","urlObject":{"path":["vehicle",":vehicle_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"376","key":"vehicle_id"}]}},"response":[],"_postman_id":"efb88eef-94fa-4ca8-a6b1-5e2725118d3c"},{"name":"Delete Vehicle","id":"39aecd98-3b2d-4289-b74e-3c1af9848107","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/vehicle/:vehicle_id","urlObject":{"path":["vehicle",":vehicle_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"357","key":"vehicle_id"}]}},"response":[{"id":"db949db2-0431-453e-b192-2a4ed6321152","name":"Delete Vehicle","originalRequest":{"method":"DELETE","header":[{"key":"x-access-token","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{host}}/vehicle/:vehicle_id","host":["{{host}}"],"path":["vehicle",":vehicle_id"],"variable":[{"key":"vehicle_id","value":"357"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"86"},{"key":"ETag","value":"W/\"56-91606nlqpdmW0Jy2O5a+lOmZL7I\""},{"key":"set-cookie","value":"connect.sid=s%3AI84E8jUBi0fuKiXIHYrv_88TOu9tZ5y_.oFEjLsJC4vlhgGucEsp41s10igOVe6VTzs2xvDFqWfA; Path=/; Expires=Wed, 21 Apr 2021 21:57:11 GMT; HttpOnly"},{"key":"Date","value":"Tue, 21 Apr 2020 21:57:52 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {},\n    \"meta\": {\n        \"code\": 204,\n        \"code_description\": \"No Content\",\n        \"api_version\": \"2.28.5\"\n    }\n}"}],"_postman_id":"39aecd98-3b2d-4289-b74e-3c1af9848107"}],"id":"5706c81f-9869-4b54-bf10-2bda5aa73fd4","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"bb165e9e-2daa-41f9-ae32-110774c50437"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"ab6ffd0a-c1d3-43ab-a2eb-608f5cb0e299"}}],"_postman_id":"5706c81f-9869-4b54-bf10-2bda5aa73fd4","description":""},{"name":"Webhook","item":[{"name":"Create Webhook","id":"16abba13-3ab8-4e26-af7a-f7ca0cd5b72c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-API-KEY","value":"{{X-API-KEY}}"},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"event","value":"job:created","type":"text"},{"key":"name","value":"Job Created","type":"text"},{"key":"method","value":"POST","type":"text"},{"key":"url","value":"www.boner.com","type":"text"},{"key":"custom_headers[0][key]","value":"this_is_key","type":"text"},{"key":"custom_headers[0][value]","value":"this_is_value","type":"text"}]},"url":"{{host}}/webhook","urlObject":{"path":["webhook"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"16abba13-3ab8-4e26-af7a-f7ca0cd5b72c"},{"name":"Get a webook","id":"447c444f-af33-40ff-a0a5-ff794a0cf516","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/webhook/:webhook_id","urlObject":{"path":["webhook",":webhook_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"1","key":"webhook_id"}]}},"response":[],"_postman_id":"447c444f-af33-40ff-a0a5-ff794a0cf516"},{"name":"Get all webhooks","id":"2ac45903-1a8f-4eee-959c-ac553ad2e48e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"url":"{{host}}/webhook/","urlObject":{"path":["webhook",""],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ac45903-1a8f-4eee-959c-ac553ad2e48e"},{"name":"Update Webhook","id":"275fb147-44c6-49aa-a6c3-24c4d6539553","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-API-KEY","value":"{{X-API-KEY}}"},{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"event","value":"job:created","type":"text"},{"key":"name","value":"Job Created234","type":"text"},{"key":"method","value":"POST","type":"text"},{"key":"url","value":"www.boner.com","type":"text"},{"key":"custom_headers[api-key]","value":"X-API-KEU","type":"text"},{"key":"custom_headers[0][value]","value":"this_is_value","type":"text","disabled":true},{"key":"webhook_id","value":"1","type":"text"}]},"url":"{{host}}/webhook","urlObject":{"path":["webhook"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"275fb147-44c6-49aa-a6c3-24c4d6539553"},{"name":"Delete Webhook","id":"b24c9891-35ec-4d6d-9a38-ac8ddfa3d0fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"X-ACCESS-TOKEN","value":"{{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"pickup_location_latitude","value":"40.77392","type":"text"},{"key":"pickup_location_longitude","value":"-73.87200","type":"text"},{"key":"dropoff_location_latitude","value":"41.77392","type":"text"},{"key":"dropoff_location_longitude","value":"-72.87200","type":"text"}]},"url":"{{host}}/webhook/:webhook_id","urlObject":{"path":["webhook",":webhook_id"],"host":["{{host}}"],"query":[],"variable":[{"type":"any","value":"1","key":"webhook_id"}]}},"response":[],"_postman_id":"b24c9891-35ec-4d6d-9a38-ac8ddfa3d0fe"}],"id":"1607a91c-1ba4-4bf0-9c59-edd3c95e7218","_postman_id":"1607a91c-1ba4-4bf0-9c59-edd3c95e7218","description":""}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"f000ef96-e3a1-4091-ac85-159d707a625b"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"89eccde2-bff9-4273-9125-aaa54aaaa086"}}]}