{"info":{"_postman_id":"80ab8a59-6432-43d5-b5bf-74c5fd061f2a","name":"FuelCloud API v1.0","description":"<html><head></head><body><p>Welcome! The FuelCloud API is designed using REST principals and JSON objects. Our API can be used to retrieve information and create new entities in your account. If there's something you would like to see, let us know!</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>FuelCloud uses API access tokens for authentication. Access tokens should be added using the <code>Authentication</code> header. You can manage your Access Tokens in your FuelCloud account under Settings&gt;API.</p>\n<p>Access tokens expire 30 minutes from the time they are generated. They can be refreshed by sending a request to the Refresh token endpoint. The response will include a new 30-minute JWT access token and a new refresh token valid for 90 days. If an Access token expires it cannot be refreshed through the API, it must be regenerated in your FuelCloud account.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"1923921","collectionId":"80ab8a59-6432-43d5-b5bf-74c5fd061f2a","publishedId":"S17oyqeo","public":true,"customColor":{"top-bar":"031A49","right-sidebar":"303030","highlight":"0070DF"},"publishDate":"2024-08-14T09:17:23.000Z"},"item":[{"name":"Tanks","item":[{"name":"Get All Tanks","id":"4ba864dc-f8ea-4b73-989f-e31e0807cc3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/tank","description":"<p>Return all tanks and their attributes.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>The meta section is included at the bottom of each request to the tank endpoint. It gives the link to the next and previous pages, the total tank count, and number of tanks included on each page.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Data Type</th>\n<th>Min Value</th>\n<th>Max Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>int</td>\n<td>0</td>\n<td>no max</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/tank?page[number]={pageNumber}</code></p>\n<h2 id=\"structure\">Structure:</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"meta\": {\n        \"previous\": \"https://api.fuelcloud.com/rest/v1.0/tank?page[number]=1\",\n        \"total\": 393,\n        \"per_page\": 50,\n        \"next\": \"https://api.fuelcloud.com/rest/v1.0/tank?page[number]=3\"\n\n</code></pre>","urlObject":{"protocol":"https","path":["rest","v1.0","tank"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ba864dc-f8ea-4b73-989f-e31e0807cc3f"},{"name":"Get Tank Detail","id":"084ea3c2-b38f-4d10-9bf0-d7cd7dcfc0c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/tank/{tankID}","description":"<p>Return one tank and its attributes.</p>\n","urlObject":{"protocol":"https","path":["rest","v1.0","tank","{tankID}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"3f11c8be-63e5-4baf-9836-63fdbb240b82","name":"Get Tank Detail","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://api.fuelcloud.com/rest/v1.0/tank/200014"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 200014,\n            \"name\": \"The Big Tank\",\n            \"code\": null,\n            \"resource_uri\": \"https://api.fuelcloud.com/rest/v1.0/tank/200014\",\n            \"tank_shape\": \"cylinder-v\",\n            \"tank_capacity\": 13219.16,\n            \"current_inventory\": 700,\n            \"low_level\": 35,\n            \"critical_low_level\": 25,\n            \"high_level\": null,\n            \"critical_high_level\": null,\n            \"tank_product\": 881,\n            \"product\": {\n                \"id\": 881,\n                \"product_name\": \"B5 Diesel\",\n                \"product_category\": \"diesel\"\n            },\n            \"inventory_level\": \"critical_low\",\n            \"price_per_unit\": 3,\n            \"variance_tolerance\": 5,\n            \"fuel_temp\": null,\n            \"status\": 1,\n            \"inventory_unit\": \"Gallons\",\n            \"site\": {\n                \"id\": 200018,\n                \"name\": \"First Location\",\n                \"resource_uri\": \"https://api.fuelcloud.com/rest/v1.0/site/200018\",\n                \"address\": \"3053 SE Oxbow Park Rd\",\n                \"city\": \"Estacada\",\n                \"state\": \"US-IN\",\n                \"country\": \"US\",\n                \"latitude\": 45.500877,\n                \"longitude\": -122.31031,\n                \"zip\": \"97080\"\n            },\n            \"pump\": {\n                \"200500\": {\n                    \"device_id\": 200500,\n                    \"label\": \"Diesel Pump #1\",\n                    \"serial\": \"xxxxxxxxxxxxxxxx\",\n                    \"port\": 0,\n                    \"unit\": 0,\n                    \"pulse_rate\": 10\n                }\n            },\n            \"access_groups\": {\n                \"200314\": {\n                    \"id\": 200314,\n                    \"name\": \"Fire Department\"\n                },\n                \"200315\": {\n                    \"id\": 200315,\n                    \"name\": \"EMT\"\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 1,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"084ea3c2-b38f-4d10-9bf0-d7cd7dcfc0c9"},{"name":"Set Tank","event":[{"listen":"test","script":{"id":"54a1d424-6227-4e71-ab51-39237969ebd0","exec":[""],"type":"text/javascript","packages":{}}}],"id":"c4466223-a995-4d29-bd3a-76e7778beef1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"low_level\": \"17\",\n    \"critical_low_level\": \"27\",\n    \"high_level\": \"76\",\n    \"critical_high_level\": \"91\",\n    \"inventory_unit\": \"GAL\"\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/tank/{tankID}","description":"<p>Update attributes for a specific tank.</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>low_level</td>\n<td>optional</td>\n<td>int/float</td>\n<td>The percentage of tank volume when the low level alert should be sent.</td>\n</tr>\n<tr>\n<td>critical_low_level</td>\n<td>optional</td>\n<td>int/float</td>\n<td>The percentage of tank volume when the critical low level alert should be sent.</td>\n</tr>\n<tr>\n<td>high_level</td>\n<td>optional</td>\n<td>int/float</td>\n<td>The percentage of tank volume when the high level alert should be sent.</td>\n</tr>\n<tr>\n<td>critical_high_level</td>\n<td>optional</td>\n<td>int/float</td>\n<td>The percentage of tank volume when the critical high level alert should be sent.</td>\n</tr>\n<tr>\n<td>inventory_unit</td>\n<td>optional</td>\n<td>string</td>\n<td>The unit used to measure the volume of the tank. Accepted values: GAL, L, QUART</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","tank","{tankID}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"a6439796-1852-4df4-b61d-fa2e15ad2782","name":"Set Tank","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"your-access-token-here","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"low_level\": \"17\",\n    \"critical_low_level\": \"27\",\n    \"high_level\": \"76\",\n    \"critical_high_level\": \"91\",\n    \"inventory_unit\": \"GAL\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/tank/200014"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 200014,\n            \"name\": \"Diesel Tank\",\n            \"code\": \"D1S191091\",\n            \"resource_uri\": \"https://api.fuelcloud.com/rest/v1.0/tank/200014\",\n            \"tank_shape\": \"cylinder-v\",\n            \"tank_capacity\": 13219.16,\n            \"current_inventory\": 2001,\n            \"low_level\": 17,\n            \"critical_low_level\": 27,\n            \"high_level\": 76,\n            \"critical_high_level\": 91,\n            \"tank_product\": 881,\n            \"product\": {\n                \"id\": 881,\n                \"product_name\": \"B5 Diesel\",\n                \"product_category\": \"diesel\"\n            },\n            \"inventory_level\": \"critical_low\",\n            \"price_per_unit\": 16,\n            \"variance_tolerance\": 5,\n            \"fuel_temp\": null,\n            \"status\": 1,\n            \"inventory_unit\": \"Gallons\",\n            \"site\": {\n                \"id\": 200018,\n                \"name\": \"First Location\",\n                \"resource_uri\": \"https://api.fuelcloud.com/rest/v1.0/site/200018\",\n                \"address\": \"3053 SE Oxbow Park Rd\",\n                \"city\": \"Estacada\",\n                \"state\": \"US-IN\",\n                \"country\": \"US\",\n                \"latitude\": 45.500877,\n                \"longitude\": -122.31031,\n                \"zip\": \"97080\"\n            },\n            \"pump\": {\n                \"200500\": {\n                    \"device_id\": 200500,\n                    \"label\": \"Diesel Pump #1\",\n                    \"serial\": \"0000000000000000\",\n                    \"port\": 0,\n                    \"unit\": 0,\n                    \"pulse_rate\": 10\n                }\n            },\n            \"access_groups\": {\n                \"200314\": {\n                    \"id\": 200314,\n                    \"name\": \"Fire Department\"\n                },\n                \"200315\": {\n                    \"id\": 200315,\n                    \"name\": \"EMT\"\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 1,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"c4466223-a995-4d29-bd3a-76e7778beef1"},{"name":"Adjust Inventory","id":"894c70bc-5bbb-443a-9324-b9347ba49f23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"your-access-token","type":"text"}],"body":{"mode":"raw","raw":"{\n \"current_inventory\" : 10000,\n \"created\": 1725431428\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/tank/adjust-inventory/{tankID}","description":"<p>Update inventory for a specific tank.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>current_inventory</td>\n<td>required</td>\n<td>number</td>\n<td>The updated inventory, the value must be greater than 0 and smaller than tank's capactity</td>\n</tr>\n<tr>\n<td>created</td>\n<td>no</td>\n<td>UNIX timestamp</td>\n<td>The adjust time. If not given, the value will be current UNIX timestamp</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","tank","adjust-inventory","{tankID}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"4f6e6c5d-47d0-48a5-b31f-6be869d085ab","name":"Adjust Inventory","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"your-access-token","type":"text"}],"body":{"mode":"raw","raw":"{\n \"current_inventory\" : 10000\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/tank/adjust-inventory/{tankID}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 203397,\n            \"name\": \"tank liter\",\n            \"code\": null,\n            \"resource_uri\": \"http://skyletonweb.test/rest/v1.0/tank/203397\",\n            \"tank_shape\": \"cylinder-h\",\n            \"tank_capacity\": 10152.34,\n            \"current_inventory\": 9999.99990016749,\n            \"low_level\": 35,\n            \"critical_low_level\": 25,\n            \"high_level\": 0,\n            \"critical_high_level\": 0,\n            \"tank_product\": 883,\n            \"product\": {\n                \"id\": 883,\n                \"product_name\": \"BIO-DIESEL B5\",\n                \"product_category\": \"diesel\"\n            },\n            \"inventory_level\": \"low\",\n            \"price_per_unit\": 1.50000061190224,\n            \"variance_tolerance\": 5,\n            \"fuel_temp\": null,\n            \"status\": 1,\n            \"inventory_unit\": \"Liters\",\n            \"barcode_1\": null,\n            \"barcode_2\": null,\n            \"barcode_3\": null,\n            \"site\": {\n                \"id\": 200022,\n                \"name\": \"chung site\",\n                \"resource_uri\": \"http://skyletonweb.test/rest/v1.0/site/200022\",\n                \"address\": \"155 an dương vương\",\n                \"city\": null,\n                \"state\": \"VN-20\",\n                \"country\": \"VN\",\n                \"latitude\": 10.756417,\n                \"longitude\": 106.669487,\n                \"zip\": \"700000\"\n            },\n            \"pump\": [],\n            \"custom_data_field\": [\n                {\n                    \"id\": 1,\n                    \"label\": null,\n                    \"value\": null\n                },\n                {\n                    \"id\": 2,\n                    \"label\": null,\n                    \"value\": null\n                },\n                {\n                    \"id\": 3,\n                    \"label\": null,\n                    \"value\": null\n                },\n                {\n                    \"id\": 4,\n                    \"label\": null,\n                    \"value\": null\n                }\n            ],\n            \"access_groups\": [],\n            \"transaction_id\": \"2aea1744-2d22-4d2f-ac52-c4677377dbd1\"\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 1,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"894c70bc-5bbb-443a-9324-b9347ba49f23"},{"name":"Adjust Price","id":"f1582301-4ad5-4bc7-b93f-e5f5474d5198","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"your-access-token","type":"text"}],"body":{"mode":"raw","raw":"{\n \"price\" : 10.25,\n \"created\": 1725431428\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/tank/adjust-price/{tankID}","description":"<p>Update price for a specific tank.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>price</td>\n<td>required</td>\n<td>number</td>\n<td>The updated price</td>\n</tr>\n<tr>\n<td>created</td>\n<td>no</td>\n<td>UNIX timestamp</td>\n<td>The adjust time. If not given, the value will be current UNIX timestamp</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","tank","adjust-price","{tankID}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"4b7f2d92-f5c9-43d4-96a7-dad5c403cfce","name":"Adjust Price","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"your-access-token","type":"text"}],"body":{"mode":"raw","raw":"{\n \"price\" : 10.25\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/tank/adjust-price/{tankID}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 203397,\n            \"name\": \"tank liter\",\n            \"code\": null,\n            \"resource_uri\": \"http://skyletonweb.test/rest/v1.0/tank/203397\",\n            \"tank_shape\": \"cylinder-h\",\n            \"tank_capacity\": 10152.34,\n            \"current_inventory\": 9999.99990016749,\n            \"low_level\": 35,\n            \"critical_low_level\": 25,\n            \"high_level\": 0,\n            \"critical_high_level\": 0,\n            \"tank_product\": 883,\n            \"product\": {\n                \"id\": 883,\n                \"product_name\": \"BIO-DIESEL B5\",\n                \"product_category\": \"diesel\"\n            },\n            \"inventory_level\": \"low\",\n            \"price_per_unit\": 1.50000061190224,\n            \"variance_tolerance\": 5,\n            \"fuel_temp\": null,\n            \"status\": 1,\n            \"inventory_unit\": \"Liters\",\n            \"barcode_1\": null,\n            \"barcode_2\": null,\n            \"barcode_3\": null,\n            \"site\": {\n                \"id\": 200022,\n                \"name\": \"chung site\",\n                \"resource_uri\": \"http://skyletonweb.test/rest/v1.0/site/200022\",\n                \"address\": \"155 an dương vương\",\n                \"city\": null,\n                \"state\": \"VN-20\",\n                \"country\": \"VN\",\n                \"latitude\": 10.756417,\n                \"longitude\": 106.669487,\n                \"zip\": \"700000\"\n            },\n            \"pump\": [],\n            \"custom_data_field\": [\n                {\n                    \"id\": 1,\n                    \"label\": null,\n                    \"value\": null\n                },\n                {\n                    \"id\": 2,\n                    \"label\": null,\n                    \"value\": null\n                },\n                {\n                    \"id\": 3,\n                    \"label\": null,\n                    \"value\": null\n                },\n                {\n                    \"id\": 4,\n                    \"label\": null,\n                    \"value\": null\n                }\n            ],\n            \"access_groups\": [],\n            \"transaction_id\": \"2aea1744-2d22-4d2f-ac52-c4677377dbd1\"\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 1,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"f1582301-4ad5-4bc7-b93f-e5f5474d5198"}],"id":"54acbe4b-7b23-4067-ab47-920b318cc3a4","event":[{"listen":"prerequest","script":{"id":"2c3fea61-b56b-4d46-86b7-6e8d9ac32c46","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"48d0ade8-5dbe-40e7-8cfd-29600962ea3c","type":"text/javascript","exec":[""]}}],"_postman_id":"54acbe4b-7b23-4067-ab47-920b318cc3a4","description":""},{"name":"Sites","item":[{"name":"Get All Sites","id":"0126fd04-7fae-48cc-9f99-c26f3a3cfe72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/site","description":"<p>Return all sites and their attributes.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>The meta section is included at the bottom of each request to the site endpoint. It gives the link to the next and previous pages, the total site count, and number of sites included on each page.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Data Type</th>\n<th>Min Value</th>\n<th>Max Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>int</td>\n<td>0</td>\n<td>no max</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/site?page[number]={pageNumber}</code></p>\n<h2 id=\"structure\">Structure:</h2>\n<p>Plain Text</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"meta\": {\n        \"previous\": \"https://api.fuelcloud.com/rest/v1.0/site?page[number]=1\",\n        \"total\": 393,\n        \"per_page\": 50,\n        \"next\": \"https://api.fuelcloud.com/rest/v1.0/site?page[number]=3\"\n</code></pre>","urlObject":{"protocol":"https","path":["rest","v1.0","site"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0126fd04-7fae-48cc-9f99-c26f3a3cfe72"},{"name":"Get Sites Detail","id":"542d6770-5220-40a3-b534-2f24ec41a5e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/site/{siteID}","description":"<p>Return one site and its attributes.</p>\n","urlObject":{"protocol":"https","path":["rest","v1.0","site","{siteID}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"7cfb0c46-4e93-4fcb-9b35-f82ae931de8d","name":"Get Sites Detail","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"url":"https://api.fuelcloud.com/rest/v1.0/site/200018"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 200018,\n            \"name\": \"First Location\",\n            \"resource_uri\": \"https://api.fuelcloud.com/rest/v1.0/site/200018\",\n            \"type\": \"STATIONARY\",\n            \"code\": \"S1\",\n            \"address\": \"3053 SE Oxbow Park Rd\",\n            \"city\": \"Estacada\",\n            \"state\": \"US-IN\",\n            \"country\": \"US\",\n            \"latitude\": 45.500877,\n            \"longitude\": -122.31031,\n            \"zip\": \"97080\",\n            \"utc_offset\": \"-8\",\n            \"tank\": [\n                {\n                    \"id\": 200014,\n                    \"name\": \"Diesel Tank\"\n                },\n                {\n                    \"id\": 200015,\n                    \"name\": \"The Small Tank\"\n                }\n            ],\n            \"hardwares\": [\n                {\n                    \"id\": 200500,\n                    \"name\": \"First CloudBox\",\n                    \"hardware_type\": \"CloudBox\"\n                }\n            ],\n            \"pump\": {\n                \"200500\": {\n                    \"device_id\": 200500,\n                    \"label\": \"Diesel Pump #1\",\n                    \"serial\": \"xxxxxxxxxxxxxxxx\",\n                    \"port\": 0,\n                    \"unit\": 0,\n                    \"pulse_rate\": 10\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 1,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"542d6770-5220-40a3-b534-2f24ec41a5e3"}],"id":"860f435f-c968-4947-be58-f501ce3985a9","_postman_id":"860f435f-c968-4947-be58-f501ce3985a9","description":""},{"name":"Vehicles","item":[{"name":"Get All Vehicles","id":"b8000fd0-0fe6-462c-a7ab-b7aef2f743a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/vehicle","description":"<p>Return all vehicles and their attributes.</p>\n<h2 id=\"rate-limit\"><strong>Rate limit:</strong></h2>\n<ul>\n<li><p>Limit: 150 reqs/min.</p>\n</li>\n<li><p>Returns: 429 Too Many Requests.</p>\n</li>\n</ul>\n<h2 id=\"pagination\">Pagination</h2>\n<p>The meta section is included at the bottom of each request to the vehicle endpoint. It gives the link to the next and previous pages, the total vehicle count, and number of vehicles included on each page.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Data Type</th>\n<th>Min Value</th>\n<th>Max Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>int</td>\n<td>0</td>\n<td>no max</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/vehicle?page[number]={pageNumber}</code></p>\n<h2 id=\"structure\">Structure:</h2>\n<p>Plain Text</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"meta\": {\n        \"previous\": \"https://api.fuelcloud.com/rest/v1.0/vehicle?page[number]=1\",\n        \"total\": 393,\n        \"per_page\": 50,\n        \"next\": \"https://api.fuelcloud.com/rest/v1.0/vehicle?page[number]=3\"\n\n</code></pre>","urlObject":{"protocol":"https","path":["rest","v1.0","vehicle"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8000fd0-0fe6-462c-a7ab-b7aef2f743a7"},{"name":"Get All Vehicles w/ filter","id":"2434b632-c135-4d06-a045-3df6e7d614b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/vehicle?filter[status]={status}","description":"<p>Return all vehicles and their attributes that meet filter critera. Filter can be applied to status field the vehicle object.</p>\n<h2 id=\"rate-limit\"><strong>Rate limit:</strong></h2>\n<ul>\n<li><p>Limit: 150 reqs/min.</p>\n</li>\n<li><p>Returns: 429 Too Many Requests.</p>\n</li>\n</ul>\n<h2 id=\"status-filter\">Status Filter</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[status]={status}</td>\n<td>0: Inactive status  <br />1: Active status</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/vehicle?filter[status]=1</code></p>\n","urlObject":{"protocol":"https","path":["rest","v1.0","vehicle"],"host":["api","fuelcloud","com"],"query":[{"key":"filter[status]","value":"{status}"}],"variable":[]}},"response":[],"_postman_id":"2434b632-c135-4d06-a045-3df6e7d614b5"},{"name":"Get Vehicles Detail","id":"b6e9f0bc-1aab-41f2-94d3-60b00ad01d70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/vehicle/{vehicleID}","description":"<p>Return one vehicle and its attributes.</p>\n<h2 id=\"rate-limit\"><strong>Rate limit:</strong></h2>\n<ul>\n<li><p>Limit: 150 reqs/min.</p>\n</li>\n<li><p>Returns: 429 Too Many Requests.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["rest","v1.0","vehicle","{vehicleID}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6e9f0bc-1aab-41f2-94d3-60b00ad01d70"},{"name":"Create Vehicle","id":"976cc4d8-8a4a-4ff1-87c9-42dce4bcfbc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"your-access-token-here"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Diesel Truck #2\",\n\t\"code\": \"DT19191\",\n\t\"status\": 1,\n\t\"taxable\": \"none\",\n    \"tank_capacity\": \"100\",\n    \"product_type\": \"Diesel\",\n    \"inventory_unit\": \"GAL\",\n    \"all_allowed_products\": 0,\n\t\"product\": [\n\t\t{\n\t\t\t\"id\": 883,\n\t\t\t\"name\": \"BIO-DIESEL B5\"\n\t\t},\n\t\t{\n\t\t\t\"id\": 881,\n\t\t\t\"name\": \"B5 Diesel\"\n\t\t}\n\t],\n\t\"custom_data_field\": [\n\t    {\n\t        \"id\": 1,\n\t        \"label\": \"Fuel Card #1\",\n\t        \"value\": \"12345\"\n\t    },\n\t    {\n\t        \"id\": 2,\n\t        \"label\": \"Department\",\n\t        \"value\": \"Police\"\n\t    },\n\t    {\n\t        \"id\": 3,\n\t        \"label\": \"State\",\n\t        \"value\": \"Oregon\"\n\t    }\n\t]\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/vehicle","description":"<p>Create a new vehicle in your account.</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>required</td>\n<td>string</td>\n<td>The name of the vehicle in the system.</td>\n</tr>\n<tr>\n<td>taxable</td>\n<td>required</td>\n<td>string</td>\n<td>The tax status of the vehicle. Accepted values: <code>fed, state, fed_state, none</code></td>\n</tr>\n<tr>\n<td>tank_capacity</td>\n<td>optional</td>\n<td>int/float</td>\n<td>The volume of the fuel tank the vehicle uses to operate.</td>\n</tr>\n<tr>\n<td>product_type</td>\n<td>required</td>\n<td>string</td>\n<td>The category of fuel this vehicle burns. Accepted values: <code>diesel, gasoline, special, all</code></td>\n</tr>\n<tr>\n<td>inventory_unit</td>\n<td>optional</td>\n<td>string</td>\n<td>The unit of measure for this vehicle's fuel tank Gallons, Liters, or Quarts. Accepted values: <code>gal, l, quart</code></td>\n</tr>\n<tr>\n<td>is_all_products</td>\n<td>optional</td>\n<td>int</td>\n<td>When set to <code>1</code>, this vehicle can fill its tank with all products from all categories. When set to <code>0</code>, this vehicle can only fill its tank with products from its product list and category</td>\n</tr>\n<tr>\n<td>all_allowed_products</td>\n<td>optional</td>\n<td>int</td>\n<td>When set to <code>1</code>, this vehicle can use all products in its product category. When set to <code>0</code>, this vehicle can only use product listed in the <code>product</code> array.</td>\n</tr>\n</tbody>\n</table>\n</div><p>If you want a vehicle to have access to ALL products:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>        {\n\n           \"is_all_products\" : 1,\n           \"all_allowed_products\": 0\n\n        }\n</code></pre><p>If you want a vehicle to have access to all products in a category (such as Diesel):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>        {\n\n           \"is_all_products\" : 0,\n           \"all_allowed_products\": 1\n\n        }\n</code></pre><p>If you want to give access to specific products only:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"is_all_products\" : 0,\n    \"all_allowed_products\" : 0,\n    \"products\": [\n        {\n            \"id\": 883,\n            \"name\": \"BIO-DIESEL B5\"\n        },\n        {\n            \"id\": 881,\n            \"name\": \"B5 Diesel\"\n        }\n    ],\n</code></pre>","urlObject":{"protocol":"https","path":["rest","v1.0","vehicle"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"31b01f81-5510-4544-855b-4cb5b2e930f7","name":"Create Vehicle","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"New Vehicle\",\n\t\"code\": \"vehicle code\",\n\t\"taxable\": \"fed\",\n\t\"tank_capacity\": \"50\",\n\t\"product_type\": \"Diesel\",\n\t\"inventory_unit\": \"GAL\",\n\t\"all_allowed_products\" : 0,\n\t\"product\": [\n\t\t{\n\t\t\t\"id\": 25863,\n\t\t\t\"name\": \"OFF-ROAD DIESEL\"\n\t\t}\n\t],\n\t\"custom_data_field\": [\n\t\t{\n\t\t\t\"id\": 1,\n\t\t\t\"label\": \"Department\",\n\t\t\t\"value\": \"Farm\"\n\t\t},\n\t\t{\n\t\t\t\"id\": 2,\n\t\t\t\"label\": \"VIN\",\n\t\t\t\"value\": \"na\"\n\t\t}\n\t]\n\t\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/vehicle"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 213408,\n        \"resource_uri\": \"https://api.fuelcloud.com/rest/v1.0/vehicle/213408\",\n        \"name\": \"New Vehicle\",\n        \"code\": \"vehicle code\",\n        \"status\": 1,\n        \"taxable\": \"fed\",\n        \"tank_capacity\": 0,\n        \"product_type\": \"Diesel\",\n        \"product\": [\n            {\n                \"id\": 25863,\n                \"name\": \"OFF-ROAD DIESEL\"\n            }\n        ],\n        \"custom_data_field\": [\n            {\n                \"id\": 1,\n                \"label\": \"Department\",\n                \"value\": \"Farm\"\n            },\n            {\n                \"id\": 2,\n                \"label\": \"VIN\",\n                \"value\": \"na\"\n            },\n            {\n                \"id\": 3,\n                \"label\": null,\n                \"value\": null\n            }\n        ],\n        \"access_groups\": []\n    },\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 1,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"976cc4d8-8a4a-4ff1-87c9-42dce4bcfbc0"},{"name":"Set Vehicle","id":"70f5fca8-8707-4919-a8e9-9486681377ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"vehicle name\",\n    \"code\": \"vehicle code\",\n    \"status\": 1,\n    \"taxable\": \"state\",\n    \"tank_capacity\": 50,\n    \"product_type\": \"Gasoline\",\n    \"all_allowed_products\": 0,\n    \"product\": [\n        {\n            \"id\": 438\n        },\n        {\n            \"id\": 437\n        }\n    ],\n    \"custom_data_field\": [\n        {\n            \"id\": 1,\n            \"value\": \"new\"\n        },\n        {\n            \"id\": 2,\n            \"value\": \"val\"\n        },\n        {\n            \"id\": 3,\n            \"value\": \"est\"\n        }\n    ]\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/vehicle/{vehicleID}","description":"<p>Update attributes for a specific vehicle.</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>optional</td>\n<td>string</td>\n<td>The label of the vehicle. This is used to identify the vehicle within your account.</td>\n</tr>\n<tr>\n<td>code</td>\n<td>optional</td>\n<td>string</td>\n<td>Vehicle code is an arbitrary code you can assign to a vehicle. This value can be included in reports, and is often used for importing into other systems.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>optional</td>\n<td>int</td>\n<td>When set to <code>1</code> this vehicle will be active. When set to <code>0</code> this vehicle will be disabled. Disabled vehicles cannot be used by drivers at the pump.</td>\n</tr>\n<tr>\n<td>taxable</td>\n<td>optional</td>\n<td>string</td>\n<td>Tax exemption status for the vehicle. Accepted values: <code>fed, state, fed_state, none</code></td>\n</tr>\n<tr>\n<td>tank_capacity</td>\n<td>optional</td>\n<td>int/float</td>\n<td>Volume of the vehicle's tank.</td>\n</tr>\n<tr>\n<td>product_type</td>\n<td>optional</td>\n<td>string</td>\n<td>Fuel type of the vehicle. Accepted values: <code>Gasoline, Diesel, Special, all</code></td>\n</tr>\n<tr>\n<td>all_allowed_products</td>\n<td>optional</td>\n<td>int</td>\n<td>When set to <code>1</code>, this vehicle can use all products in its product category. When set to <code>0</code>, this vehicle can only use the products listed in the <code>product</code> array.</td>\n</tr>\n<tr>\n<td>product</td>\n<td>optional</td>\n<td>array</td>\n<td>Accepts an array of product IDs. If <code>all_allowed_products</code> is set to <code>1</code>, this vehicle can only use pumps with these products.</td>\n</tr>\n<tr>\n<td>custom_data_field</td>\n<td>optional</td>\n<td>array</td>\n<td>Accepts an array of objects.  <code>id</code> is the ID of the <code>custom_data_field</code> in your account, <code>value</code> is that vehicle's new value for that field.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Custom Data Field array</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>required</td>\n<td>int</td>\n<td>ID for each custom data field can be retrieved through the GET /vehicle endpoint</td>\n</tr>\n<tr>\n<td>label</td>\n<td>optional</td>\n<td>string</td>\n<td>Label cannot be set through this endpoint.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>optional</td>\n<td>string</td>\n<td>Update the value in the custom data field for this vehicle.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","vehicle","{vehicleID}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"4d75b406-dbdc-414f-8770-d6ba1b03af68","name":"Set Vehicle","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"vehicle name\",\n    \"code\": \"vehicle code\",\n    \"status\": 1,\n    \"taxable\": \"state\",\n    \"tank_capacity\": 50,\n    \"product_type\": \"Gasoline\",\n    \"all_allowed_products\": 0,\n    \"product\": [\n        {\n            \"id\": 438\n        },\n        {\n            \"id\": 437\n        }\n    ],\n    \"custom_data_field\": [\n        {\n            \"id\": 1,\n            \"value\": \"new\"\n        },\n        {\n            \"id\": 2,\n            \"value\": \"val\"\n        },\n        {\n            \"id\": 3,\n            \"value\": \"est\"\n        }\n    ]\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/vehicle/201810"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 201810,\n            \"resource_uri\": \"https://api.fuelcloud.com/rest/v1.0/vehicle/201810\",\n            \"name\": \"vehicle name\",\n            \"code\": \"vehicle code\",\n            \"status\": 1,\n            \"taxable\": \"state\",\n            \"tank_capacity\": 50,\n            \"product_type\": \"Gasoline\",\n            \"product\": [\n                {\n                    \"id\": 437,\n                    \"name\": \"UNLEADED\"\n                },\n                {\n                    \"id\": 438,\n                    \"name\": \"UNLEADED 10% ETHANOL\"\n                }\n            ],\n            \"custom_data_field\": [\n                {\n                    \"id\": 1,\n                    \"label\": \"Vcd1\",\n                    \"value\": \"new\"\n                },\n                {\n                    \"id\": 2,\n                    \"label\": null,\n                    \"value\": \"val\"\n                },\n                {\n                    \"id\": 3,\n                    \"label\": null,\n                    \"value\": \"est\"\n                }\n            ],\n            \"access_groups\": {\n                \"200108\": {\n                    \"id\": 200108,\n                    \"name\": \"ATGgroup\"\n                }\n            },\n            \"drivers\": []\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 1,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"70f5fca8-8707-4919-a8e9-9486681377ca"}],"id":"3bbb60b3-7d43-4604-900f-7706603e1a91","_postman_id":"3bbb60b3-7d43-4604-900f-7706603e1a91","description":""},{"name":"Drivers","item":[{"name":"Get All Drivers","id":"6b486561-8739-4a14-9d44-9cc5a48a8ae9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"your-token-here","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/driver","description":"<p>Return all drivers and their attributes.</p>\n<h2 id=\"rate-limit\"><strong>Rate limit:</strong></h2>\n<ul>\n<li><p>Limit: 150 reqs/min</p>\n</li>\n<li><p>Returns: 429 Too Many Requests.</p>\n</li>\n</ul>\n<h2 id=\"pagination\">Pagination</h2>\n<p>The meta section is included at the bottom of each request to the driver endpoint. It gives the link to the next and previous pages, the total driver count, and number of drivers included on each page.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Data Type</th>\n<th>Min Value</th>\n<th>Max Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>int</td>\n<td>0</td>\n<td>no max</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/driver?page[number]={pageNumber}</code></p>\n<h2 id=\"structure\">Structure:</h2>\n<p>Plain Text</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"meta\": {\n        \"previous\": \"https://api.fuelcloud.com/rest/v1.0/driver?page[number]=1\",\n        \"total\": 393,\n        \"per_page\": 50,\n        \"next\": \"https://api.fuelcloud.com/rest/v1.0/driver?page[number]=3\"\n\n</code></pre>","urlObject":{"protocol":"https","path":["rest","v1.0","driver"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b486561-8739-4a14-9d44-9cc5a48a8ae9"},{"name":"Get All Drivers w/ filter","id":"f5b2e802-f18c-4678-8ba4-1ffbe81f538a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/driver?filter[status]=1","description":"<p>Return all drivers and their attributes that meet filter critera. Filter can be applied to status, phone, and code fields in the driver object.</p>\n<h2 id=\"rate-limit\"><strong>Rate limit:</strong></h2>\n<ul>\n<li><p>Limit: 150 reqs/min.</p>\n</li>\n<li><p>Returns: 429 Too Many Requests.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["rest","v1.0","driver"],"host":["api","fuelcloud","com"],"query":[{"key":"filter[status]","value":"1"}],"variable":[]}},"response":[],"_postman_id":"f5b2e802-f18c-4678-8ba4-1ffbe81f538a"},{"name":"Get Drivers Detail","id":"d676c712-b259-4b9a-98f1-9a6cb72813a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/driver/{driverID}","description":"<p>Return one driver and its attributes.</p>\n<h2 id=\"rate-limit\"><strong>Rate limit:</strong></h2>\n<ul>\n<li><p>Limit: 150 reqs/min.</p>\n</li>\n<li><p>Returns: 429 Too Many Requests.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["rest","v1.0","driver","{driverID}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d676c712-b259-4b9a-98f1-9a6cb72813a0"},{"name":"Create Driver","id":"5cb824b2-7faf-46a2-98b1-698e79d4786e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"full_name\": \"driver name\",\n\t\"phone\": \"503-379-1980\",\n    \"code\": \"abc test\",\n    \"pin\": \"62626\",\n\t\"custom_data_field\": [\n\t    {\n\t        \"id\": 4,\n\t        \"label\": \"Driver Fuel Card #1\",\n\t        \"value\": \"12345\"\n\t    },\n\t    {\n\t        \"id\": 5,\n\t        \"label\": \"Department\",\n\t        \"value\": \"Police\"\n\t    },\n\t    {\n\t        \"id\": 6,\n\t        \"label\": \"State\",\n\t        \"value\": \"Oregon\"\n\t    }\n\t],\n\t\"schedule\": {\n                \"mon\": {\n                    \"start_hour\": \"09\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"11\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 0\n                },\n                \"tue\": {\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"wed\": {\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"thu\": {\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"fri\": {\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"sat\": {\n                    \"status\": 0,\n                    \"all\": 0\n                },\n                \"sun\": { \n                    \"status\": 0,\n                    \"all\": 0\n                }\n            }\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/driver","description":"<p>Create a new driver in your account.</p>\n<h2 id=\"attributes\">Attributes</h2>\n<h2 id=\"driver-attributes\">Driver Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>full_name</td>\n<td>required</td>\n<td>string</td>\n<td>The name of the driver in the system</td>\n</tr>\n<tr>\n<td>pin</td>\n<td>optional</td>\n<td>int</td>\n<td>PINs must be unique for each driver in an account. If pin field is omitted, a PIN will be randomly generated and assigned to the driver.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>optional</td>\n<td>string</td>\n<td>The driver's phone number.</td>\n</tr>\n<tr>\n<td>code</td>\n<td>optional</td>\n<td>string</td>\n<td>A custom code assigned to this driver. This field is often used to include a code or identifier from another system to be used for billing or reporting.</td>\n</tr>\n<tr>\n<td>custom_data_field</td>\n<td>optional</td>\n<td>array</td>\n<td>Set the values for custom data fields for this driver.</td>\n</tr>\n<tr>\n<td>schedule</td>\n<td>optional</td>\n<td>array</td>\n<td>The access schedule for this driver.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"custom-data-field-array-child-attributes\">Custom Data Field Array: child attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>required</td>\n<td>int</td>\n<td>The ID of the custom data field from the system.</td>\n</tr>\n<tr>\n<td>label</td>\n<td>optional</td>\n<td>string</td>\n<td>Label cannot be updated through this endpoint. It is returned to provide context. If this custom data field has not been configured, it will be returned as <code>null</code>.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>optional</td>\n<td>int</td>\n<td>The value of the custom data field for this driver.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"custom-data-field-structure\">Custom Data Field structure:</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"custom_data_field\": [\n        {\n            \"id\": 4,\n            \"label\": \"Driver Fuel Card #1\",\n            \"value\": \"12345\"\n        },\n        {\n            \"id\": 5,\n            \"label\": \"Department\",\n            \"value\": \"Police\"\n        },\n        {\n            \"id\": 6,\n            \"label\": \"State\",\n            \"value\": \"Oregon\"\n        }\n    ],\n</code></pre><h2 id=\"schedule-array-child-attributes\">Schedule Array: child attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_hour</td>\n<td>optional</td>\n<td>int</td>\n<td>The beginning hour of the driver's schedule. Accepted values: <em>00-11</em></td>\n</tr>\n<tr>\n<td>start_min</td>\n<td>optional</td>\n<td>int</td>\n<td>The beginning minute of the driver's schedule. Accepted values: <em>00-59</em></td>\n</tr>\n<tr>\n<td>start_meridiem</td>\n<td>optional</td>\n<td>string</td>\n<td>The 12 hour period of the day when the schedule begins. Accepted values: <code>am</code>, <code>pm</code></td>\n</tr>\n<tr>\n<td>end_hour</td>\n<td>optional</td>\n<td>int</td>\n<td>The end hour of the driver's schedule. Accepted values: <em>00-11</em></td>\n</tr>\n<tr>\n<td>end_min</td>\n<td>optional</td>\n<td>int</td>\n<td>The ending minute of the driver's schedule. Accepted values: <em>00-59</em></td>\n</tr>\n<tr>\n<td>end_meridiem</td>\n<td>optional</td>\n<td>string</td>\n<td>The 12 hour period of the day when the schedule ends. Accepted values: <code>am</code>, <code>pm</code></td>\n</tr>\n<tr>\n<td>status</td>\n<td>optional</td>\n<td>int</td>\n<td>Setting this to <code>0</code> will prevent the driver from accessing the system. Settings this to <code>1</code> will allow the driver to access the system. Accepted values: <code>0</code>, <code>1</code></td>\n</tr>\n<tr>\n<td>all</td>\n<td>optional</td>\n<td>int</td>\n<td>Setting this to <code>1</code> ignores  all <em>start</em> and <em>end</em> attributes, and allows access all day.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"schedule-structure\">Schedule Structure</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"schedule\": {\n                \"mon\": {\n                    \"start_hour\": \"09\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"11\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 0\n                },\n                \"tue\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"wed\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"thu\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"fri\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"sat\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"sun\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                }\n            }\n</code></pre>","urlObject":{"protocol":"https","path":["rest","v1.0","driver"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"b3ec36dd-5a08-49e1-a195-54e9ac69c755","name":"Create Driver","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"full_name\": \"New Driver\",\n    \"pin\": \"68888\",\n    \"phone\": \"503-379-0000\",\n    \"code\": \"D1121987\",\n    \"custom_data_field\": [\n        {\n            \"id\": 4,\n            \"label\": \"Driver Fuel Card #1\",\n            \"value\": \"12345\"\n        },\n        {\n            \"id\": 5,\n            \"label\": \"Department\",\n            \"value\": \"Police\"\n        },\n        {\n            \"id\": 6,\n            \"label\": \"State\",\n            \"value\": \"Oregon\"\n        }\n    ],\n    \"schedule\": {\n        \"mon\": {\n            \"start_hour\": \"09\",\n            \"start_min\": \"00\",\n            \"start_meridiem\": \"am\",\n            \"end_hour\": \"05\",\n            \"end_min\": \"00\",\n            \"end_meridiem\": \"pm\",\n            \"status\": 1,\n            \"all\": 0\n        },\n        \"tue\": {\n            \"start_hour\": \"09\",\n            \"start_min\": \"00\",\n            \"start_meridiem\": \"am\",\n            \"end_hour\": \"05\",\n            \"end_min\": \"00\",\n            \"end_meridiem\": \"pm\",\n            \"status\": 1,\n            \"all\": 0\n        },\n        \"wed\": {\n            \"start_hour\": \"09\",\n            \"start_min\": \"00\",\n            \"start_meridiem\": \"am\",\n            \"end_hour\": \"05\",\n            \"end_min\": \"00\",\n            \"end_meridiem\": \"pm\",\n            \"status\": 1,\n            \"all\": 0\n        },\n        \"thu\": {\n            \"status\": 1,\n            \"all\": 1\n        },\n        \"fri\": {\n            \"status\": 1,\n            \"all\": 1\n        },\n        \"sat\": {\n            \"status\": 0,\n            \"all\": 0\n        },\n        \"sun\": {\n            \"status\": 0,\n            \"all\": 0\n        }\n    }\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/driver"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 414940,\n            \"fullname\": \"New Driver\",\n            \"full_name\": \"New Driver\",\n            \"pin\": \"68888\",\n            \"phone\": \"503-379-0000\",\n            \"code\": \"D1121987\",\n            \"status\": 1,\n            \"schedule\": {\n                \"mon\": {\n                    \"start_hour\": \"09\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"05\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"pm\",\n                    \"status\": 1,\n                    \"all\": 0\n                },\n                \"tue\": {\n                    \"start_hour\": \"09\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"05\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"pm\",\n                    \"status\": 1,\n                    \"all\": 0\n                },\n                \"wed\": {\n                    \"start_hour\": \"09\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"05\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"pm\",\n                    \"status\": 1,\n                    \"all\": 0\n                },\n                \"thu\": {\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"fri\": {\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"sat\": {\n                    \"status\": 0,\n                    \"all\": 0\n                },\n                \"sun\": {\n                    \"status\": 0,\n                    \"all\": 0\n                }\n            },\n            \"all_tanks\": true,\n            \"tanks\": [],\n            \"all_vehicles\": true,\n            \"vehicles\": [],\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/driver/414940\",\n            \"limits\": null,\n            \"accumulated\": null,\n            \"custom_data_field\": [\n                {\n                    \"id\": 4,\n                    \"label\": \"Driver Fuel Card #1\",\n                    \"value\": \"12345\"\n                },\n                {\n                    \"id\": 5,\n                    \"label\": \"Department\",\n                    \"value\": \"Police\"\n                },\n                {\n                    \"id\": 6,\n                    \"label\": \"State\",\n                    \"value\": \"Oregon\"\n                }\n            ],\n            \"access_groups\": []\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 1,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"5cb824b2-7faf-46a2-98b1-698e79d4786e"},{"name":"Set Driver","id":"04913aa9-7d59-46ff-be87-25fc53237e0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"full_name\": \"driver nume\",\n    \"phone\": \"503-379-1111\",\n    \"code\": \"F8917\",\n    \"pin\": \"62624\",\n    \"status\": 0,\n    \"custom_data_field\": [\n        {\n            \"id\": 4,\n            \"label\": \"Driver Fuel Card #1\",\n            \"value\": \"669911\"\n        },\n        {\n            \"id\": 5,\n            \"label\": \"Department\",\n            \"value\": \"Fire\"\n        },\n        {\n            \"id\": 6,\n            \"label\": \"State\",\n            \"value\": \"Michigan\"\n        }\n    ],\n    \"schedule\": {\n        \"mon\": {\n            \"status\": 1,\n            \"all\": 1\n        },\n        \"tue\": {\n            \"status\": 1,\n            \"all\": 1\n        },\n        \"wed\": {\n            \"start_hour\": \"09\",\n            \"start_min\": \"00\",\n            \"start_meridiem\": \"am\",\n            \"end_hour\": \"05\",\n            \"end_min\": \"00\",\n            \"end_meridiem\": \"pm\",\n            \"status\": 1,\n            \"all\": 0\n        },\n        \"thu\": {\n            \"start_hour\": \"09\",\n            \"start_min\": \"00\",\n            \"start_meridiem\": \"am\",\n            \"end_hour\": \"05\",\n            \"end_min\": \"00\",\n            \"end_meridiem\": \"pm\",\n            \"status\": 1,\n            \"all\": 0\n        },\n        \"fri\": {\n            \"start_hour\": \"09\",\n            \"start_min\": \"00\",\n            \"start_meridiem\": \"am\",\n            \"end_hour\": \"05\",\n            \"end_min\": \"00\",\n            \"end_meridiem\": \"pm\",\n            \"status\": 1,\n            \"all\": 0\n        },\n        \"sat\": {\n            \"status\": 0,\n            \"all\": 0\n        },\n        \"sun\": {\n            \"status\": 0,\n            \"all\": 0\n        }\n    }\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/driver/{driverID}","description":"<p>Driver Attributes</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>full_name</td>\n<td>optional</td>\n<td>string</td>\n<td>The name of the driver in the system</td>\n</tr>\n<tr>\n<td>pin</td>\n<td>optional</td>\n<td>int</td>\n<td>When updating a driver, if pin field is omitted the driver's PIN will not be changed.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>optional</td>\n<td>string</td>\n<td>The driver's phone number.</td>\n</tr>\n<tr>\n<td>code</td>\n<td>optional</td>\n<td>string</td>\n<td>A custom code assigned to this driver. This field is often used to include a code or identifier from another system to be used for billing or reporting.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>optional</td>\n<td>int</td>\n<td>Setting this to <code>0</code> will disable the driver which prevents their PIN from authorizing transactions. Settings this to <code>1</code> will enable the driver and allow them to access the system normally. Accepted values: <code>0</code>, <code>1</code></td>\n</tr>\n<tr>\n<td>custom_data_field</td>\n<td>optional</td>\n<td>array</td>\n<td>Set the values for custom data fields for this driver.</td>\n</tr>\n<tr>\n<td>schedule</td>\n<td>optional</td>\n<td>array</td>\n<td>Set access schedule for this driver. Drivers can only authorize transactions within their access schedule.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Custom Data Field Array: child attributes</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>optional</td>\n<td>int</td>\n<td>The ID of the custom data field to be updated.</td>\n</tr>\n<tr>\n<td>label</td>\n<td>optional</td>\n<td>string</td>\n<td>Label cannot be updated through this endpoint. It is returned to provide context for each custom data field. If a custom data field has not been configured, it will be returned as <code>null</code>.</td>\n</tr>\n<tr>\n<td>value</td>\n<td>optional</td>\n<td>int</td>\n<td>The new value for the custom data field. ID is required to set a new value.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Custom Data Field structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"custom_data_field\": [\n        {\n            \"id\": 4,\n            \"label\": \"Driver Fuel Card #1\",\n            \"value\": \"12345\"\n        },\n        {\n            \"id\": 5,\n            \"label\": \"Department\",\n            \"value\": \"Police\"\n        },\n        {\n            \"id\": 6,\n            \"label\": \"State\",\n            \"value\": \"Oregon\"\n        }\n    ],\n</code></pre><p>Schedule Array: child attributes</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_hour</td>\n<td>optional</td>\n<td>int</td>\n<td>The beginning hour of the driver's schedule. Accepted values: <em>00-12</em></td>\n</tr>\n<tr>\n<td>start_min</td>\n<td>optional</td>\n<td>int</td>\n<td>The beginning minute of the driver's schedule. Accepted values: <em>00-59</em></td>\n</tr>\n<tr>\n<td>start_meridiem</td>\n<td>optional</td>\n<td>string</td>\n<td>The 12 hour period of the day when the schedule begins. Accepted values: <code>am</code>, <code>pm</code></td>\n</tr>\n<tr>\n<td>end_hour</td>\n<td>optional</td>\n<td>int</td>\n<td>The end hour of the driver's schedule. Accepted values: <em>00-12</em></td>\n</tr>\n<tr>\n<td>end_min</td>\n<td>optional</td>\n<td>int</td>\n<td>The ending minute of the driver's schedule. Accepted values: <em>00-59</em></td>\n</tr>\n<tr>\n<td>end_meridiem</td>\n<td>optional</td>\n<td>string</td>\n<td>The 12 hour period of the day when the schedule ends. Accepted values: <code>am</code>, <code>pm</code></td>\n</tr>\n<tr>\n<td>status</td>\n<td>optional</td>\n<td>int</td>\n<td>Setting this to <code>0</code> for a specific day will prevent the driver from accessing the system on that day. When set to <code>0</code>, all <em>start</em> and <em>end</em> attributes can be omitted. Accepted values: <code>0</code>, <code>1</code></td>\n</tr>\n<tr>\n<td>all</td>\n<td>optional</td>\n<td>int</td>\n<td>Setting this to <code>1</code> allows access all day. When set to <code>1</code>, all <em>start</em> and <em>end</em> attributes can be omitted.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Schedule structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"schedule\": {\n                \"mon\": {\n                    \"start_hour\": \"09\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"11\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 0\n                },\n                \"tue\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"wed\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"thu\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"fri\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"sat\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"sun\": {\n                    \"start_hour\": \"\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"am\",\n                    \"status\": 1,\n                    \"all\": 1\n                }\n            }\n</code></pre>","urlObject":{"protocol":"https","path":["rest","v1.0","driver","{driverID}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"e66b9185-b159-4380-890e-5adf8b06ddd1","name":"Set Driver","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"full_name\": \"driver nume\",\n    \"phone\": \"503-379-1111\",\n    \"code\": \"F8917\",\n    \"pin\": \"62624\",\n    \"status\": 0,\n    \"custom_data_field\": [\n        {\n            \"id\": 4,\n            \"label\": \"Driver Fuel Card #1\",\n            \"value\": \"669911\"\n        },\n        {\n            \"id\": 5,\n            \"label\": \"Department\",\n            \"value\": \"Fire\"\n        },\n        {\n            \"id\": 6,\n            \"label\": \"State\",\n            \"value\": \"Michigan\"\n        }\n    ],\n    \"schedule\": {\n        \"mon\": {\n            \"status\": 1,\n            \"all\": 1\n        },\n        \"tue\": {\n            \"status\": 1,\n            \"all\": 1\n        },\n        \"wed\": {\n            \"start_hour\": \"09\",\n            \"start_min\": \"00\",\n            \"start_meridiem\": \"am\",\n            \"end_hour\": \"05\",\n            \"end_min\": \"00\",\n            \"end_meridiem\": \"pm\",\n            \"status\": 1,\n            \"all\": 0\n        },\n        \"thu\": {\n            \"start_hour\": \"09\",\n            \"start_min\": \"00\",\n            \"start_meridiem\": \"am\",\n            \"end_hour\": \"05\",\n            \"end_min\": \"00\",\n            \"end_meridiem\": \"pm\",\n            \"status\": 1,\n            \"all\": 0\n        },\n        \"fri\": {\n            \"start_hour\": \"09\",\n            \"start_min\": \"00\",\n            \"start_meridiem\": \"am\",\n            \"end_hour\": \"05\",\n            \"end_min\": \"00\",\n            \"end_meridiem\": \"pm\",\n            \"status\": 1,\n            \"all\": 0\n        },\n        \"sat\": {\n            \"status\": 0,\n            \"all\": 0\n        },\n        \"sun\": {\n            \"status\": 0,\n            \"all\": 0\n        }\n    }\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/driver/408680"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 408680,\n            \"fullname\": \"driver nume\",\n            \"full_name\": \"driver nume\",\n            \"pin\": \"62624\",\n            \"phone\": \"503-379-1111\",\n            \"code\": \"F8917\",\n            \"status\": 0,\n            \"schedule\": {\n                \"mon\": {\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"tue\": {\n                    \"status\": 1,\n                    \"all\": 1\n                },\n                \"wed\": {\n                    \"start_hour\": \"09\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"05\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"pm\",\n                    \"status\": 1,\n                    \"all\": 0\n                },\n                \"thu\": {\n                    \"start_hour\": \"09\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"05\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"pm\",\n                    \"status\": 1,\n                    \"all\": 0\n                },\n                \"fri\": {\n                    \"start_hour\": \"09\",\n                    \"start_min\": \"00\",\n                    \"start_meridiem\": \"am\",\n                    \"end_hour\": \"05\",\n                    \"end_min\": \"00\",\n                    \"end_meridiem\": \"pm\",\n                    \"status\": 1,\n                    \"all\": 0\n                },\n                \"sat\": {\n                    \"status\": 0,\n                    \"all\": 0\n                },\n                \"sun\": {\n                    \"status\": 0,\n                    \"all\": 0\n                }\n            },\n            \"all_tanks\": true,\n            \"tanks\": [],\n            \"all_vehicles\": true,\n            \"vehicles\": [],\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/driver/408680\",\n            \"limits\": {\n                \"dollar\": {\n                    \"max\": 50,\n                    \"period\": \"daily\"\n                }\n            },\n            \"accumulated\": {\n                \"amount\": 0,\n                \"transaction\": 0,\n                \"dollar\": \"0.000000\"\n            },\n            \"custom_data_field\": [\n                {\n                    \"id\": 4,\n                    \"label\": \"Dcd1\",\n                    \"value\": \"669911\"\n                },\n                {\n                    \"id\": 5,\n                    \"label\": null,\n                    \"value\": \"Fire\"\n                },\n                {\n                    \"id\": 6,\n                    \"label\": null,\n                    \"value\": \"Michigan\"\n                }\n            ],\n            \"access_groups\": []\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 1,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"04913aa9-7d59-46ff-be87-25fc53237e0b"},{"name":"Set Driver Copy","id":"8297a29a-a6dc-4119-907b-402a6bb41625","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"full_name\": \"driver name\",\n\t\"phone\": \"503-379-1980\",\n    \"code\": \"abc test\",\n    \"pin\": \"62626\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/driver/{driverID}","description":"<p>Update info of a specific driver.</p>\n","urlObject":{"protocol":"https","path":["rest","v1.0","driver","{driverID}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8297a29a-a6dc-4119-907b-402a6bb41625"}],"id":"2e10b0dd-b356-4465-9cbc-eec0c730fdb8","_postman_id":"2e10b0dd-b356-4465-9cbc-eec0c730fdb8","description":""},{"name":"Transaction","item":[{"name":"Get All Transactions","id":"e52c2e16-51da-401c-93d5-da53fb230f25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"your-token-here"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"url":"https://api.fuelcloud.com/rest/v1.0/transaction","description":"<p>Return all transactions in your account.</p>\n<p>Transactions are returned in reverse chronological order, with the newest transactions first. The transactions API does not automatically adjust for timezone settings in your account, so all transaction dates/times as well as dates/times in filters are interpreted as UTC.</p>\n<h2 id=\"rate-limit\"><strong>Rate limit:</strong></h2>\n<ul>\n<li><p>Limit: 400 reqs/min.</p>\n</li>\n<li><p>Returns: 429 Too Many Requests.</p>\n</li>\n</ul>\n<h2 id=\"pagination\">Pagination</h2>\n<p>The meta section is included at the bottom of each request to the transaction endpoint. It gives the link to the next and previous pages, the total transaction count, and number of transactions included on each page.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Data Type</th>\n<th>Min Value</th>\n<th>Max Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>int</td>\n<td>0</td>\n<td>no max</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/transaction?page[number]={pageNumber}</code></p>\n<h2 id=\"structure\">Structure:</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    \"meta\": {\n        \"previous\": \"https://api.fuelcloud.com/rest/v1.0/transaction?page[number]=1\",\n        \"total\": 393,\n        \"per_page\": 50,\n        \"next\": \"https://api.fuelcloud.com/rest/v1.0/transaction?page[number]=3\"\n\n</code></pre>","urlObject":{"protocol":"https","path":["rest","v1.0","transaction"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"897f043f-dc9c-4015-af5d-c0d96a5d4d03","name":"Get All Transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"your-access-token"},{"key":"Content-Type","value":"application/json"}],"url":"https://api.fuelcloud.com/rest/v1.0/transaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Nov 2018 04:50:23 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.2.8"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 200051,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200051\",\n            \"transaction_id\": \"00cf881e-4660-c029-1e36-0423a4b48878\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 10000,\n            \"volume\": \"0.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"17.02\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535964556,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": \"\",\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200052,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200052\",\n            \"transaction_id\": \"2018pm09pm03pm50pm36\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200016,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200020,\n            \"product_id\": 410,\n            \"inventory\": 9997.26953,\n            \"volume\": \"2.73\",\n            \"unit\": \"Gal\",\n            \"percent\": \"17.02\",\n            \"price\": 20,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200022,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535964672,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBSG001\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": \"\",\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200053,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200053\",\n            \"transaction_id\": \"C9158254-FDE8-4B15-91B3-F3097CA7FE7C\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200016,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200020,\n            \"product_id\": 410,\n            \"inventory\": 9996.61914,\n            \"volume\": \"0.65\",\n            \"unit\": \"Gal\",\n            \"percent\": \"17.02\",\n            \"price\": 20,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535964797,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBSG001\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 66,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200054,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200054\",\n            \"transaction_id\": \"00cf3d1e-4662-c029-1e36-0423a4b48878\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 10000,\n            \"volume\": \"0.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"17.02\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535965002,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 5588,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200070,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200070\",\n            \"transaction_id\": \"00aff91e-1576-c028-1e36-a423a4e98857\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9979.2002,\n            \"volume\": \"20.80\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.99\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535970286,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": \"\",\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200073,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200073\",\n            \"transaction_id\": \"2018-09-03-17-27-03\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9969.46973,\n            \"volume\": \"9.73\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.97\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535970543,\n            \"payment_account_number\": null,\n            \"pump_name\": \"Tank003\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": \"\",\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200074,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200074\",\n            \"transaction_id\": \"2018-09-03-17-28-11\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9962.73926,\n            \"volume\": \"6.73\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.96\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535970545,\n            \"payment_account_number\": null,\n            \"pump_name\": \"Tank003\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": \"\",\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200075,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200075\",\n            \"transaction_id\": \"00db141e-5e78-c020-1e36-fb23a43888a8\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9932.44043,\n            \"volume\": \"30.30\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.91\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200023,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"Federal + State\",\n            \"created\": 1535970573,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": \"\",\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200076,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200076\",\n            \"transaction_id\": \"2018-09-03-17-34-36\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9924.20996,\n            \"volume\": \"8.23\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.89\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535970887,\n            \"payment_account_number\": null,\n            \"pump_name\": \"Tank003\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200082,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200082\",\n            \"transaction_id\": \"004e7b1e-a67a-c014-1e36-9323a4258856\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9905.20996,\n            \"volume\": \"19.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.86\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535972527,\n            \"payment_account_number\": null,\n            \"pump_name\": \"Tank003\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": \"\",\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200083,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200083\",\n            \"transaction_id\": \"0024f51e-447c-c0df-1e36-5923a48d8843\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9896.20996,\n            \"volume\": \"9.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.84\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535972529,\n            \"payment_account_number\": null,\n            \"pump_name\": \"Tank003\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 85669,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200084,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200084\",\n            \"transaction_id\": \"007b241e-be7d-c090-1e36-1623a489889d\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9861.20996,\n            \"volume\": \"35.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.78\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535972530,\n            \"payment_account_number\": null,\n            \"pump_name\": \"Tank003\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 5,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200085,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200085\",\n            \"transaction_id\": \"007e6f1e-777d-c0c6-1e36-2f23a4268898\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9838.20996,\n            \"volume\": \"23.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.75\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200023,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"Federal + State\",\n            \"created\": 1535972531,\n            \"payment_account_number\": null,\n            \"pump_name\": null,\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 8666,\n                \"200005\": \"chjo\"\n            }\n        },\n        {\n            \"id\": 200086,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200086\",\n            \"transaction_id\": \"0088db1e-f57d-c0b4-1e36-3023a4d48834\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9832.20996,\n            \"volume\": \"6.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.74\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535972533,\n            \"payment_account_number\": null,\n            \"pump_name\": null,\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 5584,\n                \"200005\": \"f\"\n            }\n        },\n        {\n            \"id\": 200087,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200087\",\n            \"transaction_id\": \"009d391e-3a7e-c00d-1e36-0f23a4bd882f\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9826.20996,\n            \"volume\": \"6.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.72\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200022,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535972535,\n            \"payment_account_number\": null,\n            \"pump_name\": null,\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 5666,\n                \"200005\": \"fgj\"\n            }\n        },\n        {\n            \"id\": 200088,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200088\",\n            \"transaction_id\": \"00a1971e-f77e-c00f-1e36-d923a46888f4\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9819.20996,\n            \"volume\": \"7.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.71\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200023,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"Federal + State\",\n            \"created\": 1535972536,\n            \"payment_account_number\": null,\n            \"pump_name\": null,\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 552,\n                \"200005\": \"ff\"\n            }\n        },\n        {\n            \"id\": 200089,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200089\",\n            \"transaction_id\": \"002aca1e-cd7f-c0c2-1e36-4023a4c188cf\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9783.20996,\n            \"volume\": \"36.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.65\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200023,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"Federal + State\",\n            \"created\": 1535972563,\n            \"payment_account_number\": null,\n            \"pump_name\": null,\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 869,\n                \"200005\": \"fhjkm\"\n            }\n        },\n        {\n            \"id\": 200094,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200094\",\n            \"transaction_id\": \"00f12f1e-8a84-c0fe-1e36-2123a41b8819\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9770.70996,\n            \"volume\": \"12.50\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.63\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1535973665,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 566,\n                \"200005\": \"fuio\"\n            }\n        },\n        {\n            \"id\": 200136,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200136\",\n            \"transaction_id\": \"00d8121e-68bb-c0a7-2036-ff23a43f882b\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9756.20996,\n            \"volume\": \"14.50\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.61\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1536118778,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200142,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200142\",\n            \"transaction_id\": \"00cfb11e-4643-c029-2236-0423a4b48878\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9740.70996,\n            \"volume\": \"15.50\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.58\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1536219324,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200143,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200143\",\n            \"transaction_id\": \"00d8671e-6844-c0a7-2236-ff23a43f882b\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9728.41016,\n            \"volume\": \"12.30\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.56\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1536219526,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200201,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200201\",\n            \"transaction_id\": \"00af411e-15d1-c028-2c36-a423a4e98857\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9716.70996,\n            \"volume\": \"11.70\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.54\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537158256,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": \"\",\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200202,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200202\",\n            \"transaction_id\": \"00cfd71e-4697-c029-3036-0423a4b48878\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9702.30957,\n            \"volume\": \"14.40\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.51\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537158353,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 22,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200211,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200211\",\n            \"transaction_id\": \"00d8821e-681f-c0a7-3236-ff23a43f882b\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9676.50977,\n            \"volume\": \"25.80\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.47\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537258615,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 555,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200248,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200248\",\n            \"transaction_id\": \"00cf901e-4664-c029-3336-0423a4b48878\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9662.60938,\n            \"volume\": \"13.90\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.45\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537341818,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 22,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200249,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200249\",\n            \"transaction_id\": \"00d84c1e-6868-c0a7-3336-ff23a43f882b\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9649.81055,\n            \"volume\": \"12.80\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.42\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537342775,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200250,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200250\",\n            \"transaction_id\": \"002c5c1e-a569-c057-3336-7423a46488c4\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9624.60938,\n            \"volume\": \"25.20\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.38\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537343049,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 552,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200251,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200251\",\n            \"transaction_id\": \"00af731e-1569-c028-3336-a423a4e98857\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9600.61035,\n            \"volume\": \"24.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.34\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537343071,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 2222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200252,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200252\",\n            \"transaction_id\": \"00db881e-5e6a-c020-3336-fb23a43888a8\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9441.51074,\n            \"volume\": \"159.10\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.07\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200022,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537343381,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 22,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200253,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200253\",\n            \"transaction_id\": \"0024c51e-446d-c0df-3336-5923a48d8843\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9420.30957,\n            \"volume\": \"21.20\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.03\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537344180,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200254,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200254\",\n            \"transaction_id\": \"007be21e-be6d-c090-3336-1623a489889d\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9403.00977,\n            \"volume\": \"17.30\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.00\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537344206,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200255,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200255\",\n            \"transaction_id\": \"007ead1e-776f-c0c6-3336-2f23a4268898\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9381.30957,\n            \"volume\": \"21.70\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.97\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537344667,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 55,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200256,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200256\",\n            \"transaction_id\": \"0088f81e-f56f-c0b4-3336-3023a4d48834\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9371.10938,\n            \"volume\": \"10.20\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.95\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537344735,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 22,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200257,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200257\",\n            \"transaction_id\": \"009d0f1e-3a70-c00d-3336-0f23a4bd882f\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9352.20996,\n            \"volume\": \"18.90\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.92\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537344762,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200771,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200771\",\n            \"transaction_id\": \"00727d1e-eb17-c006-3b36-f223a49188ee\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9331.91016,\n            \"volume\": \"20.30\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.88\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537846409,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200772,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200772\",\n            \"transaction_id\": \"00b8991e-6c17-c0be-3b36-d923a43488f7\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9327.91016,\n            \"volume\": \"4.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.88\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537846444,\n            \"payment_account_number\": null,\n            \"pump_name\": null,\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200773,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200773\",\n            \"transaction_id\": \"0034661e-2318-c006-3b36-7a23a4338870\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9317.41016,\n            \"volume\": \"10.50\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.86\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537846639,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200774,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200774\",\n            \"transaction_id\": \"0097401e-d719-c052-3b36-1223a4f5887e\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9305.50977,\n            \"volume\": \"11.90\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.84\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537846858,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200775,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200775\",\n            \"transaction_id\": \"00d2ce1e-9419-c095-3b36-6623a4068823\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9292.70996,\n            \"volume\": \"12.80\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.82\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537846999,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200776,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200776\",\n            \"transaction_id\": \"0059491e-f21a-c06f-3b36-fa23a4e788ec\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9268.41016,\n            \"volume\": \"24.30\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.78\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537847368,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 22,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200777,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200777\",\n            \"transaction_id\": \"0075fb1e-5f20-c041-3b36-b823a4d58838\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 9237.11035,\n            \"volume\": \"31.30\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.72\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537849130,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 200909,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/200909\",\n            \"transaction_id\": \"00ff091e-3f5d-c02b-3c36-f123a4fc88d9\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 8940.70996,\n            \"volume\": \"296.40\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.22\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1537930056,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 5555,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 201198,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/201198\",\n            \"transaction_id\": \"002f561e-266f-c098-3f36-8823a4f588b4\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 8917.80957,\n            \"volume\": \"22.90\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.18\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1538131039,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 555,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 201438,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/201438\",\n            \"transaction_id\": \"0064361e-c418-c0af-4336-1523a42888a4\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 8917.80957,\n            \"volume\": \"0.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.18\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1538370852,\n            \"payment_account_number\": null,\n            \"pump_name\": null,\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 12346,\n                \"200005\": \"udidu\"\n            }\n        },\n        {\n            \"id\": 201481,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/201481\",\n            \"transaction_id\": \"0089261e-9d42-c07e-4336-7723a4c6882f\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 8868.60938,\n            \"volume\": \"49.20\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.10\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1538385930,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 2222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 201482,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/201482\",\n            \"transaction_id\": \"0089261e-9d42-c07e-4336-7723a4c6882f\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 8819.40918,\n            \"volume\": \"49.20\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.01\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200021,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1538385930,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 2222,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 202135,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/202135\",\n            \"transaction_id\": \"200023-400048-1538542052\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200016,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200020,\n            \"product_id\": 410,\n            \"inventory\": 9946.62012,\n            \"volume\": \"50.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"16.93\",\n            \"price\": 20,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400054,\n            \"vehicle_id\": 200023,\n            \"pin\": \"61587\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"Federal + State\",\n            \"created\": 1538542052,\n            \"payment_account_number\": null,\n            \"pump_name\": null,\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 555,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 202137,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/202137\",\n            \"transaction_id\": \"00bdf61e-2fd1-c0a1-4536-f723a40f88d9\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 8819.41016,\n            \"volume\": \"0.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.01\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200022,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1538549501,\n            \"payment_account_number\": null,\n            \"pump_name\": \"CBNNB154S\",\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 55,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 202138,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/202138\",\n            \"transaction_id\": \"0068de1e-f4d2-c0d9-4536-3c23a4a88835\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 8819.41016,\n            \"volume\": \"0.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.01\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200022,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1538549752,\n            \"payment_account_number\": null,\n            \"pump_name\": null,\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 55,\n                \"200005\": \"\"\n            }\n        },\n        {\n            \"id\": 202139,\n            \"label\": \"\",\n            \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/202139\",\n            \"transaction_id\": \"00e5b91e-8fd3-c02a-4536-cd23a4c28840\",\n            \"transaction_type\": 1,\n            \"tank_id\": 200018,\n            \"start_date\": \"Didn't set\",\n            \"end_date\": \"Didn't set\",\n            \"location_id\": 200021,\n            \"product_id\": 881,\n            \"inventory\": 8819.41016,\n            \"volume\": \"0.00\",\n            \"unit\": \"Gal\",\n            \"percent\": \"15.01\",\n            \"price\": 10,\n            \"starting_inches\": null,\n            \"ending_inches\": null,\n            \"driver_id\": 400053,\n            \"vehicle_id\": 200022,\n            \"pin\": \"12345\",\n            \"driver_type\": \"Driver\",\n            \"taxed\": \"None\",\n            \"created\": 1538549953,\n            \"payment_account_number\": null,\n            \"pump_name\": null,\n            \"bol_number\": null,\n            \"custom_fields\": {\n                \"200004\": 22,\n                \"200005\": \"\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 226,\n        \"per_page\": 50,\n        \"next\": \"https://api.fuelcloud.com/rest/v1.0/transaction?page%5Bnumber%5D=2\"\n    }\n}"}],"_postman_id":"e52c2e16-51da-401c-93d5-da53fb230f25"},{"name":"Transaction Filters","id":"78082045-e64f-491d-ae6c-3bd1b2c73f3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"your-access-token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"url":"https://api.fuelcloud.com/rest/v1.0/transaction?start_date=2018-10-04T00:00:00&end_date=2018-11-12T07:00:00Z&filter[vehicle_id]={vehicleID}&filter[driver_id]={driverID}&filter[site_id]={siteID}&filter[pump_name]={pump name}&filter[tank_id]={tankID}&filter[transaction_type]={transactionType}","description":"<h2 id=\"rate-limit\"><strong>Rate limit:</strong></h2>\n<ul>\n<li><p>Limit: 400 reqs/min.</p>\n</li>\n<li><p>Returns: 429 Too Many Requests.</p>\n</li>\n</ul>\n<h2 id=\"filters\">Filters</h2>\n<p>Filters and pagination can be added to a transaction request as parameters. Multiple filters can be combined with the <code>&amp;</code> symbol.</p>\n<h2 id=\"date-filter\">Date Filter</h2>\n<p>The date filter requests all transactions between two points in time. The transactions API does not automatically adjust for timezone settings in your account, so all transaction dates/times as well as dates/times in filters are interpreted as UTC.</p>\n<p>Time should be preceeded by a <code>T</code> and formatted in 24 hour clock, with minutes and seconds (HH:MM:SS): <code>T07:09:53</code></p>\n<p>Date should be formatted with four-digit year, and two-digit month and day (YY-MM-DD): <code>2019-02-09</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Format</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>start_date</td>\n<td>datetime</td>\n<td>2019-02-09T08:00:00</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>datetime</td>\n<td>2019-02-20T23:00:00</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/transaction?start_date=2017-02-20T07:00:00&amp;end_date=2019-02-20T08:00:00</code></p>\n<h2 id=\"vehicle-filter\">Vehicle Filter</h2>\n<p>This request filters all transactions involving a vehicle with specific vehicle ID.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Min</th>\n<th>Max</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[vehicle_id]={vehicleID}</td>\n<td>int</td>\n<td>0</td>\n<td>99999999</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/transaction?filter[vehicle_id]=200021</code></p>\n<h2 id=\"driver-filter\">Driver Filter</h2>\n<p>This request filters all transactions involving a driver with specific driver ID.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Min</th>\n<th>Max</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[driver_id]={driverID}</td>\n<td>int</td>\n<td>0</td>\n<td>99999999</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/transaction?filter[driver_id]=200021</code></p>\n<h2 id=\"site-filter\">Site Filter</h2>\n<p>This request filters all transactions involving a site with specific site ID.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Min</th>\n<th>Max</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[site_id]={siteID}</td>\n<td>int</td>\n<td>0</td>\n<td>99999999</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/transaction?filter[site_id]=200021</code></p>\n<h2 id=\"tank-filter\">Tank Filter</h2>\n<p>This request filters all transactions involving a tank with specific tank ID.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n<th>Min</th>\n<th>Max</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[tank_id]={tankID}</td>\n<td>int</td>\n<td>0</td>\n<td>99999999</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/transaction?filter[tank_id]=200021</code></p>\n<h2 id=\"transaction-type-filter\">Transaction type Filter</h2>\n<p>This request filters all transactions involving a transaction type with specific transaction Type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Data Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[transaction_type]={transactionType}</td>\n<td>1: Pump  <br />2: Fill  <br />11: Transfer Pump  <br />12: Transfer Fill</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/transaction?filter[transaction_type]=1</code></p>\n<h2 id=\"combining-filters\">Combining Filters</h2>\n<p>Multiple filters can be combined with the <code>&amp;</code> symbol.</p>\n<p>Example: <code>https://api.fuelcloud.com/rest/v1.0/transaction?filter[driver_id]=403074&amp;filter[site_id]=200134&amp;filter[tank_id]=200132&amp;start_date=2018-10-15T22:25:00&amp;end_date=2018-10-15T22:30:00</code></p>\n","urlObject":{"protocol":"https","path":["rest","v1.0","transaction"],"host":["api","fuelcloud","com"],"query":[{"key":"start_date","value":"2018-10-04T00:00:00"},{"key":"end_date","value":"2018-11-12T07:00:00Z"},{"key":"filter[vehicle_id]","value":"{vehicleID}"},{"key":"filter[driver_id]","value":"{driverID}"},{"key":"filter[site_id]","value":"{siteID}"},{"key":"filter[pump_name]","value":"{pump name}"},{"key":"filter[tank_id]","value":"{tankID}"},{"key":"filter[transaction_type]","value":"{transactionType}"}],"variable":[]}},"response":[],"_postman_id":"78082045-e64f-491d-ae6c-3bd1b2c73f3b"},{"name":"Create PUMP Transactions","id":"073286bc-ce0a-46d2-8417-f9b58278121b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"your-access-token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": 1,\n    \"transaction_id\": \"testapi-000000-00000000-0001\",\n    \"volume\": 50,\n    \"tank_id\": 200016,\n    \"vehicle_id\": 200021,\n    \"driver_id\": 400052,\n    \"created\": 1542884936,\n    \"price\": 10\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/transaction","description":"<p>Create a new PUMP transaction in your account. This will decrease the volume of a tank.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>required</td>\n<td>int</td>\n<td>Settings this to <code>1</code> will create a <em>Pump</em> transaction.</td>\n</tr>\n<tr>\n<td>transaction_id</td>\n<td>required</td>\n<td>string</td>\n<td>A unique identifier for this transaction in the system.</td>\n</tr>\n<tr>\n<td>volume</td>\n<td>required</td>\n<td>int/float</td>\n<td>The liquid volume for the transaction, measured in the Unit of measure for the account.</td>\n</tr>\n<tr>\n<td>tank_id</td>\n<td>required</td>\n<td>int</td>\n<td>The ID of the tank involved in the transaction.</td>\n</tr>\n<tr>\n<td>vehicle_id</td>\n<td>optional (<em>required for pump transactions</em>)</td>\n<td>int</td>\n<td>The ID of the vehicle involved in the transaction.</td>\n</tr>\n<tr>\n<td>driver_id</td>\n<td>optional (<em>required for pump transactions</em>)</td>\n<td>int</td>\n<td>The ID of the driver involved in the transaction</td>\n</tr>\n<tr>\n<td>created</td>\n<td>required</td>\n<td>int</td>\n<td>The UNIX timestamp for the date and time when this transaction happened.</td>\n</tr>\n<tr>\n<td>created_utc</td>\n<td>optional</td>\n<td>datetime</td>\n<td>The date time in UTC when this transaction was created.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>optional (<em>required for fill transactions</em>)</td>\n<td>float</td>\n<td>The price per gallon for the fill.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","transaction"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"d2624914-201a-4ca0-8c0c-26cd810b92f0","name":"Create PUMP Transactions","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"your-access-token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"transaction_type\": 0,\n    \"transaction_id\": \"testapi-000000-00000000-0001\",\n    \"volume\": 50,\n    \"tank_id\": 200016,\n    \"vehicle_id\": 200021,\n    \"driver_id\": 400052,\n    \"created\": 1538654567,\n    \"price\": 10\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/transaction"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Nov 2018 10:13:11 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.2.8"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"659"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 202681,\n        \"label\": \"\",\n        \"self\": \"https://api.fuelcloud.com/rest/v1.0/transaction/202681\",\n        \"transaction_id\": \"testapi-000000-00000000-0001\",\n        \"transaction_type\": 1,\n        \"tank_id\": 200016,\n        \"start_date\": \"Didn't set\",\n        \"end_date\": \"Didn't set\",\n        \"location_id\": 200020,\n        \"product_id\": 410,\n        \"inventory\": 10789.44043,\n        \"volume\": \"50.00\",\n        \"unit\": \"Gal\",\n        \"percent\": \"18.36\",\n        \"price\": 10,\n        \"starting_inches\": null,\n        \"ending_inches\": null,\n        \"driver_id\": null,\n        \"vehicle_id\": 200021,\n        \"pin\": \"15177\",\n        \"driver_type\": \"\",\n        \"taxed\": \"None\",\n        \"created\": 1538654567,\n        \"payment_account_number\": null,\n        \"pump_name\": null,\n        \"bol_number\": null,\n        \"custom_fields\": []\n    },\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 1,\n        \"per_page\": 1,\n        \"next\": null\n    }\n}"}],"_postman_id":"073286bc-ce0a-46d2-8417-f9b58278121b"},{"name":"Create FILL Transactions","id":"1df52b15-7c37-4091-8c40-d61c498b522c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"your-access-token"},{"key":"Content-Type","value":"application/json; charset=utf-8","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"transaction_type\":1,\n\t\"transaction_id\": \"testapi-0000000-0000000-042\",\n\t\"volume\":\"1000\",\n\t\"tank_id\":201242,\n\t\"driver_id\":425127,\n\t\"starting_inches\":10,\n\t\"ending_inches\":50.5,\n\t\"price\":2.2, \n\t\"fill_selection\":0, \n\t\"created\":1542884936 \n\t\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/transaction","description":"<p>Create a new FILL transaction in your account. This will increase the volume of a tank and recalculate the average cost/unit of the tank's inventory.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>transaction_type</td>\n<td>required</td>\n<td>int</td>\n<td>Settings this to <code>2</code> will create a <em>Fill</em> transaction.</td>\n</tr>\n<tr>\n<td>transaction_id</td>\n<td>required</td>\n<td>string</td>\n<td>A unique identifier for this transaction in the system.</td>\n</tr>\n<tr>\n<td>volume</td>\n<td>required</td>\n<td>int/float</td>\n<td>The liquid volume for the transaction, measured in the Unit of measure for the account.</td>\n</tr>\n<tr>\n<td>tank_id</td>\n<td>required</td>\n<td>int</td>\n<td>The ID of the tank involved in the transaction.</td>\n</tr>\n<tr>\n<td>created</td>\n<td>required</td>\n<td>int</td>\n<td>The UNIX timestamp for the date and time when this transaction happened.</td>\n</tr>\n<tr>\n<td>created_utc</td>\n<td>optional</td>\n<td>datetime</td>\n<td>The date and time when this transaction happened.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>optional (<em>required for fill transactions</em>)</td>\n<td>float</td>\n<td>The price per gallon for the fill.</td>\n</tr>\n<tr>\n<td>starting_inches</td>\n<td>optional</td>\n<td>int/float</td>\n<td>The height of fuel in inches in the tank before the transaction.</td>\n</tr>\n<tr>\n<td>ending_inches</td>\n<td>optional</td>\n<td>int/float</td>\n<td>The height of the fuel in inches in the tank after the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","transaction"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1df52b15-7c37-4091-8c40-d61c498b522c"}],"id":"88d95b5f-1ccf-4b1e-bb69-22614ba83051","_postman_id":"88d95b5f-1ccf-4b1e-bb69-22614ba83051","description":""},{"name":"Additional Fields","item":[{"name":"Get  Additional Fields","id":"63d52d76-fde6-4655-8539-1b7cbcd9acb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"your-access-token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"url":"https://api.fuelcloud.com/rest/v1.0/additional-fields","description":"<p>Return all additional questions to be asked at the pump. These are open ended questions that are displayed in the mobile app before a transaction begins. They're used to collect additional information from a driver.</p>\n","urlObject":{"protocol":"https","path":["rest","v1.0","additional-fields"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"04c017f2-666f-4e9b-bec5-31ff0fd05ab9","name":"Get  Additional Fields","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"your-access-token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"url":"https://api.fuelcloud.com/rest/v1.0/additional-fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 12 Nov 2018 10:41:34 GMT"},{"key":"Server","value":"Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.2.8"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.8"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Length","value":"245"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"additional\": [\n            {\n                \"id\": 200004,\n                \"label\": \"Odometer\",\n                \"required\": 1,\n                \"value\": \"\",\n                \"field_type\": \"number\"\n            },\n            {\n                \"id\": 200005,\n                \"label\": \"Job Number\",\n                \"required\": 0,\n                \"value\": \"\",\n                \"field_type\": \"string\"\n            }\n        ]\n    },\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 2,\n        \"per_page\": 2,\n        \"next\": null\n    }\n}"}],"_postman_id":"63d52d76-fde6-4655-8539-1b7cbcd9acb0"}],"id":"1dd39ea9-d376-43d6-bfe2-12948f3e2571","_postman_id":"1dd39ea9-d376-43d6-bfe2-12948f3e2571","description":""},{"name":"Products","item":[{"name":"Get All Products","id":"4386f11e-665c-400b-a0df-728d39360e1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/product","description":"<p>Return all products in the system, along with their ID and the category (type) they belong to.</p>\n","urlObject":{"protocol":"https","path":["rest","v1.0","product"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"33928251-d4bf-486c-bd34-a5ca7df166a5","name":"Get All Products","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-api-token-here"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"url":"https://api.fuelcloud.com/rest/v1.0/product"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 883,\n            \"name\": \"BIO-DIESEL B5\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 881,\n            \"name\": \"B5 Diesel\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 445,\n            \"name\": \"COMPRESSED NATURAL GAS\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 408,\n            \"name\": \"DIESEL #1\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 410,\n            \"name\": \"MARKED RED DIESEL\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 443,\n            \"name\": \"80-87 OCTANE AVIATION GASOLINE\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 442,\n            \"name\": \"100-130 OCTANE AVIATION GASOLINE\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 426,\n            \"name\": \"ULTRA LOW PREMIUM DIESEL\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 425,\n            \"name\": \"ULTRA LOW DIESEL #2\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 424,\n            \"name\": \"ULTRA LOW DIESEL #1\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 422,\n            \"name\": \"RED ULTRA LOW #1\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 421,\n            \"name\": \"PREMIUM DIESEL #2\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 420,\n            \"name\": \"OFF-ROAD BIO-DIESEL B99\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 419,\n            \"name\": \"OFF-ROAD BIO-DIESEL B5\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 417,\n            \"name\": \"OFF-ROAD BIO-DIESEL B2\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 414,\n            \"name\": \"OFF-ROAD BIO-DIESEL B100\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 427,\n            \"name\": \"LEADED PREMIUM GASOLINE\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 428,\n            \"name\": \"MID-GRADE 10% ETHANOL\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 429,\n            \"name\": \"MID-GRADE 5.7% ETHANOL\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 430,\n            \"name\": \"MID-GRADE 8.2-7.7% ETHANOL\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 431,\n            \"name\": \"MID-GRADE UNLEADED\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 432,\n            \"name\": \"NO LEAD WITH LEAD SUB\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 433,\n            \"name\": \"PREMIUM 10% ETHANOL\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 434,\n            \"name\": \"PREMIUM 5.7% ETHANOL\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 435,\n            \"name\": \"PREMIUM 8.2-7.7% ETHANOL\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 436,\n            \"name\": \"PREMIUM UNLEADED\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 437,\n            \"name\": \"UNLEADED\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 438,\n            \"name\": \"UNLEADED 10% ETHANOL\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 439,\n            \"name\": \"UNLEADED 5.7% ETHANOL\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 440,\n            \"name\": \"UNLEADED 8.2-7.7% ETHANOL\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 441,\n            \"name\": \"UNLEADED W/SUB 10%\",\n            \"type\": \"Gasoline\"\n        },\n        {\n            \"id\": 444,\n            \"name\": \"E-15\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 446,\n            \"name\": \"E-30\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 447,\n            \"name\": \"E-85\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 448,\n            \"name\": \"E-20\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 449,\n            \"name\": \"JET-A FUEL\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 450,\n            \"name\": \"KEROSENE\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 451,\n            \"name\": \"LIQUIFIED NATURAL GAS\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 452,\n            \"name\": \"OFF ROAD KEROSENE\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 453,\n            \"name\": \"PROPANE\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 454,\n            \"name\": \"RACING GAS\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 455,\n            \"name\": \"DIESEL EXHAUST FLUID\",\n            \"type\": \"Special\"\n        },\n        {\n            \"id\": 406,\n            \"name\": \"BIO-DIESEL B5\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 404,\n            \"name\": \"BIO-DIESEL B15\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 402,\n            \"name\": \"BIO-DIESEL B100\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 25858,\n            \"name\": \"Diesel\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 25859,\n            \"name\": \"Diesel Exhaust Fluid\",\n            \"type\": \"Diesel\"\n        },\n        {\n            \"id\": 25863,\n            \"name\": \"OFF-ROAD DIESEL\",\n            \"type\": \"Diesel\"\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 48,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"4386f11e-665c-400b-a0df-728d39360e1a"}],"id":"a88def1e-1c10-4607-b28e-c8c62e565063","_postman_id":"a88def1e-1c10-4607-b28e-c8c62e565063","description":""},{"name":"Refresh token","item":[{"name":"Refresh API token","id":"d34a53f1-124c-4d8a-aca6-aee388633122","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/refresh-token/{refreshToken}","description":"<p>Access tokens can be refreshed by calling the Refresh Token endpoint.<br />If the refresh token is valid, the response will include a new <strong>30-minute JWT access token</strong> and a new <strong>refresh token valid for 90 days.</strong></p>\n<p>This process can be repeated as long as the refresh token has not expired.<br />If the refresh token expires, you must generate a new token pair in your FuelCloud account.</p>\n<p><em><strong>Legacy users:</strong></em><br />If you are still using a legacy access/refresh token when JWT is deployed, your first refresh call will automatically migrate you to the JWT system and return the new token pair.</p>\n<h2 id=\"rate-limit\"><strong>Rate limit:</strong></h2>\n<ul>\n<li><p>Limit: 400 reqs/min.</p>\n</li>\n<li><p>Returns: 429 Too Many Requests.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["rest","refresh-token","{refreshToken}"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"d971a34c-0a36-40b3-bfe2-3814b3a8c34c","name":"Refresh API token","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"url":"https://api.fuelcloud.com/rest/refresh-token/{refreshToken}"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"new-access-token\",\n    \"type\": \"Bearer\",\n    \"expires_in\": 604800,\n    \"refresh_token\": \"new-refresh-token\"\n}"}],"_postman_id":"d34a53f1-124c-4d8a-aca6-aee388633122"}],"id":"d2c4a710-030c-4034-916b-91762ffcca5b","_postman_id":"d2c4a710-030c-4034-916b-91762ffcca5b","description":""},{"name":"Timezones","item":[{"name":"Get Timezones","id":"1db32173-c6e4-4ba5-bc98-0b25f94a877c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":"https://api.fuelcloud.com/rest/v1.0/timezones","description":"<p>Return all timezones, their offset from UTC, and their timezone code.</p>\n","urlObject":{"protocol":"https","path":["rest","v1.0","timezones"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[{"id":"1450e787-01be-4c48-a9a4-5c95e4e2ecf7","name":"Get Timezones","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":"https://api.fuelcloud.com/rest/v1.0/timezones"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"name\": \"Hawaiian Standard Time\",\n            \"code\": \"HT\",\n            \"offset\": \"-10\"\n        },\n        {\n            \"name\": \"Alaska Time\",\n            \"code\": \"AKT\",\n            \"offset\": \"-9\"\n        },\n        {\n            \"name\": \"Pacific Time\",\n            \"code\": \"PT\",\n            \"offset\": \"-8\"\n        },\n        {\n            \"name\": \"Mountain Standard Time (Arizona)\",\n            \"code\": \"MST\",\n            \"offset\": \"-7\"\n        },\n        {\n            \"name\": \"Mountain Time\",\n            \"code\": \"MT\",\n            \"offset\": \"-7\"\n        },\n        {\n            \"name\": \"Central America Standard Time\",\n            \"code\": \"CAST\",\n            \"offset\": \"-6\"\n        },\n        {\n            \"name\": \"Central Time\",\n            \"code\": \"CT\",\n            \"offset\": \"-6\"\n        },\n        {\n            \"name\": \"Canada Central Standard Time\",\n            \"code\": \"CCST\",\n            \"offset\": \"-6\"\n        },\n        {\n            \"name\": \"Eastern Time\",\n            \"code\": \"ET\",\n            \"offset\": \"-5\"\n        },\n        {\n            \"name\": \"Atlantic Time\",\n            \"code\": \"AT\",\n            \"offset\": \"-4\"\n        },\n        {\n            \"name\": \"E. South America Time\",\n            \"code\": \"ESAT\",\n            \"offset\": \"-3\"\n        },\n        {\n            \"name\": \"Greenland Standard Time\",\n            \"code\": \"GT\",\n            \"offset\": \"-3\"\n        },\n        {\n            \"name\": \"Greenwich Mean Time\",\n            \"code\": \"GMT\",\n            \"offset\": \"1\"\n        },\n        {\n            \"name\": \"Greenwich Standard Time\",\n            \"code\": \"GST\",\n            \"offset\": \"0\"\n        },\n        {\n            \"name\": \"Central European Time\",\n            \"code\": \"CET\",\n            \"offset\": \"2\"\n        },\n        {\n            \"name\": \"W. Central Africa Standard Time\",\n            \"code\": \"WCAST\",\n            \"offset\": \"1\"\n        },\n        {\n            \"name\": \"Middle East Time\",\n            \"code\": \"MET\",\n            \"offset\": \"3\"\n        },\n        {\n            \"name\": \"South Africa Standard Time\",\n            \"code\": \"SAST\",\n            \"offset\": \"2\"\n        },\n        {\n            \"name\": \"Arab Standard Time\",\n            \"code\": \"AST\",\n            \"offset\": \"3\"\n        },\n        {\n            \"name\": \"Georgian Standard Time\",\n            \"code\": \"GET\",\n            \"offset\": \"4\"\n        },\n        {\n            \"name\": \"West Asia Standard Time\",\n            \"code\": \"WAST\",\n            \"offset\": \"5\"\n        },\n        {\n            \"name\": \"India Standard Time\",\n            \"code\": \"IST\",\n            \"offset\": \"5.5\"\n        },\n        {\n            \"name\": \"Central Asia Standard Time\",\n            \"code\": \"CAST\",\n            \"offset\": \"6\"\n        },\n        {\n            \"name\": \"Indochina Time (+7)\",\n            \"code\": \"ICT\",\n            \"offset\": \"7\"\n        },\n        {\n            \"name\": \"North Asia Standard Time\",\n            \"code\": \"NAST\",\n            \"offset\": \"8\"\n        },\n        {\n            \"name\": \"Singapore Standard Time\",\n            \"code\": \"SGT\",\n            \"offset\": \"8\"\n        },\n        {\n            \"name\": \"North Asia East Standard Time\",\n            \"code\": \"NAEST\",\n            \"offset\": \"9\"\n        },\n        {\n            \"name\": \"Tokyo Standard Time\",\n            \"code\": \"TST\",\n            \"offset\": \"9\"\n        },\n        {\n            \"name\": \"Korea Standard Time\",\n            \"code\": \"KST\",\n            \"offset\": \"9\"\n        },\n        {\n            \"name\": \"AUS Central Standard Time\",\n            \"code\": \"ACST\",\n            \"offset\": \"9.5\"\n        },\n        {\n            \"name\": \"West Pacific Standard Time\",\n            \"code\": \"WPST\",\n            \"offset\": \"10\"\n        },\n        {\n            \"name\": \"Central Pacific Standard Time\",\n            \"code\": \"CPST\",\n            \"offset\": \"11\"\n        },\n        {\n            \"name\": \"New Zealand Standard Time\",\n            \"code\": \"NZST\",\n            \"offset\": \"12\"\n        },\n        {\n            \"name\": \"UTC+12\",\n            \"code\": \"U\",\n            \"offset\": \"12\"\n        }\n    ],\n    \"meta\": {\n        \"previous\": null,\n        \"total\": 34,\n        \"per_page\": 50,\n        \"next\": null\n    }\n}"}],"_postman_id":"1db32173-c6e4-4ba5-bc98-0b25f94a877c"}],"id":"9333caee-c82e-4747-ac12-a1ef61b7d667","_postman_id":"9333caee-c82e-4747-ac12-a1ef61b7d667","description":""},{"name":"Access Group","item":[{"name":"Create access group","id":"dd99b962-7cad-474f-95f7-500477765c56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"My group\"\n}"},"url":"https://api.fuelcloud.com/rest/v1.0/access-groups","description":"<p>Create an access group</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>required</td>\n<td>The name of access group</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","access-groups"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd99b962-7cad-474f-95f7-500477765c56"},{"name":"Get access group list","id":"94b7f23f-200d-494e-bb0b-f15f1c7ca83b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"your-access-token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/access-groups","description":"<p>Get all the access groups</p>\n","urlObject":{"protocol":"https","path":["rest","v1.0","access-groups"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"94b7f23f-200d-494e-bb0b-f15f1c7ca83b"},{"name":"Add tanks to access group","id":"a6e5503e-31c8-4eb7-94a1-aaadd58be3fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"tank_ids\": [203180, 203181]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/access-groups/{groupID}/tanks","description":"<p>Add tanks to an access group</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tank_ids</td>\n<td>required</td>\n<td>The tank IDs want to add to access group</td>\n</tr>\n<tr>\n<td>groupID</td>\n<td>required</td>\n<td>The access group ID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","access-groups","{groupID}","tanks"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a6e5503e-31c8-4eb7-94a1-aaadd58be3fa"},{"name":"Remove tanks from access group","id":"078e9759-94a2-4d32-ad6d-49f89a0483e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"tank_ids\": [203180, 203181]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/access-groups/{groupID}/tanks","description":"<p>Remove tanks from an access group</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tank_ids</td>\n<td>required</td>\n<td>The tank IDs want to remove from access group</td>\n</tr>\n<tr>\n<td>groupID</td>\n<td>required</td>\n<td>The access group ID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","access-groups","{groupID}","tanks"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"078e9759-94a2-4d32-ad6d-49f89a0483e6"},{"name":"Add drivers to access group","id":"7441a0df-8053-4c5d-aef7-380ae8201413","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"driver_ids\": [412207, 477397]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/access-groups/{groupID}/drivers","description":"<p>Add drivers to an access group</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tank_ids</td>\n<td>required</td>\n<td>The driver IDs want to add to access group</td>\n</tr>\n<tr>\n<td>groupID</td>\n<td>required</td>\n<td>The access group ID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","access-groups","{groupID}","drivers"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7441a0df-8053-4c5d-aef7-380ae8201413"},{"name":"Remove drivers from access group","id":"fe4c1e32-eeeb-4d5c-963f-e7eeee1836c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"driver_ids\": [412207, 477397]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/access-groups/{groupID}/drivers","description":"<p>Remove drivers from an access group</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>driver_ids</td>\n<td>required</td>\n<td>The driver IDs want to remove from access group</td>\n</tr>\n<tr>\n<td>groupID</td>\n<td>required</td>\n<td>The access group ID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","access-groups","{groupID}","drivers"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe4c1e32-eeeb-4d5c-963f-e7eeee1836c3"},{"name":"Add vehicles to access group","id":"32ba1d11-1d10-4860-807a-6b9b91681db9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"vehicle_ids\": [202363, 202378]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/access-groups/{groupID}/vehicles","description":"<p>Add vehicles to an access group</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>vehicle_ids</td>\n<td>required</td>\n<td>The vehicle IDs want to add to access group</td>\n</tr>\n<tr>\n<td>groupID</td>\n<td>required</td>\n<td>The access group ID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","access-groups","{groupID}","vehicles"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"32ba1d11-1d10-4860-807a-6b9b91681db9"},{"name":"Remove vehicles from access group","id":"c955ad71-1736-4830-89a2-5cf37ba0ad19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"your-access-token","type":"text"},{"key":"Content-Type","value":"application/json","type":"default"}],"body":{"mode":"raw","raw":"{\n    \"vehicle_ids\": [202363, 202378]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.fuelcloud.com/rest/v1.0/access-groups/{groupID}/vehicles","description":"<p>Remove vehicles from an access group</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>vehicles</td>\n<td>required</td>\n<td>The vehicle IDs want to remove from access group</td>\n</tr>\n<tr>\n<td>groupID</td>\n<td>required</td>\n<td>The access group ID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["rest","v1.0","access-groups","{groupID}","vehicles"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c955ad71-1736-4830-89a2-5cf37ba0ad19"}],"id":"11fe4f81-526a-4027-a8d4-a85fa0e63c8c","_postman_id":"11fe4f81-526a-4027-a8d4-a85fa0e63c8c","description":""},{"name":"Jobber","item":[{"name":"Get All Customers Drivers","id":"f293bc18-7f49-4a9b-aaa2-7cc90f6a838f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"your-token-here","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.fuelcloud.com/rest/v1.0/jobber/drivers","description":"<p>Return all drivers and their attributes.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>The meta section is included at the bottom of each request to the jobber's drivers endpoint. It gives the link to the next and previous pages, the total jobber's drivers count, and number of jobber's drivers included on each page.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Data Type</th>\n<th>Min Value</th>\n<th>Max Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>int</td>\n<td>0</td>\n<td>no max</td>\n</tr>\n</tbody>\n</table>\n</div><p>Example: <code>https://api.fuelcloud.com/rest/v1.0/jobber/drivers?page[number]={pageNumber}</code></p>\n<h2 id=\"structure\">Structure:</h2>\n<p>Plain Text</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"meta\": {\n        \"previous\": \"https://api.fuelcloud.com/rest/v1.0/jobber/drivers?page[number]=1\",\n        \"total\": 393,\n        \"per_page\": 50,\n        \"next\": \"https://api.fuelcloud.com/rest/v1.0/jobber/drivers?page[number]=3\"\n</code></pre>","urlObject":{"protocol":"https","path":["rest","v1.0","jobber","drivers"],"host":["api","fuelcloud","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f293bc18-7f49-4a9b-aaa2-7cc90f6a838f"}],"id":"cd5a0b5a-b752-47b0-81c8-a958766d0886","_postman_id":"cd5a0b5a-b752-47b0-81c8-a958766d0886","description":""}],"event":[{"listen":"prerequest","script":{"id":"5661deec-e2ea-4a6d-aa6c-f52a92c8866f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"058e1ef2-f3d8-4561-8251-5237baea9cd8","type":"text/javascript","exec":[""]}}]}