{
  "info": {
    "name": "Fleetio — mcp.ai",
    "description": "REST API for the Fleetio MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/fleetio",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "fleetio_archive_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/archive/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "archive",
            "contact"
          ]
        },
        "description": "Archive one Fleetio contact by ID. This reversible action is preferred over permanent deletion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_archive_vehicle",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/archive/vehicle",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "archive",
            "vehicle"
          ]
        },
        "description": "Archive one Fleetio vehicle by ID. This is reversible with Restore Vehicle and is preferred over permanent deletion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vehicle_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_change_issue_state",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/change/issue/state",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "change",
            "issue",
            "state"
          ]
        },
        "description": "Close, resolve, or reopen one Fleetio issue using the dedicated lifecycle endpoint for that transition. Closing and resolving require a note; reopening does not accept one.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"issue_id\": 0,\n  \"transition\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_create_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact"
          ]
        },
        "description": "Create a Fleetio contact with a required first name and optional common business identity fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"employee\": false,\n  \"group_id\": 0,\n  \"job_title\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"mobile_phone_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_create_fuel_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/fuel/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "fuel",
            "entry"
          ]
        },
        "description": "Create a Fleetio fuel entry and its required meter reading for a vehicle. Supply volume in the vehicle's configured unit.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"liters\": 0,\n  \"partial\": false,\n  \"personal\": false,\n  \"reference\": \"\",\n  \"vendor_id\": 0,\n  \"meter_void\": false,\n  \"uk_gallons\": 0,\n  \"us_gallons\": 0,\n  \"vehicle_id\": 0,\n  \"meter_value\": 0,\n  \"fuel_type_id\": 0,\n  \"price_per_volume_unit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_create_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "issue"
          ]
        },
        "description": "Report a Fleetio issue for a vehicle or equipment asset with required timing and summary plus optional priority, assignment, and labels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"summary\": \"\",\n  \"asset_id\": 0,\n  \"due_date\": \"\",\n  \"label_ids\": \"\",\n  \"asset_type\": \"\",\n  \"description\": \"\",\n  \"reported_at\": \"\",\n  \"reported_by_id\": 0,\n  \"issue_priority_id\": 0,\n  \"assigned_contact_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_create_meter_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/meter/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "meter",
            "entry"
          ]
        },
        "description": "Record a primary or secondary Fleetio meter reading for a vehicle. Inspect the vehicle's existing meter history first because Fleetio requires values to increase in chronological order and checks read",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"void\": false,\n  \"value\": 0,\n  \"meter_type\": \"\",\n  \"vehicle_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_create_vehicle",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/vehicle",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "vehicle"
          ]
        },
        "description": "Create a Fleetio vehicle with its required name, primary meter unit, status, and type, plus optional common identity and assignment fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vin\": \"\",\n  \"make\": \"\",\n  \"name\": \"\",\n  \"year\": 0,\n  \"model\": \"\",\n  \"group_id\": 0,\n  \"fuel_type_id\": 0,\n  \"license_plate\": \"\",\n  \"vehicle_type_id\": 0,\n  \"vehicle_status_id\": 0,\n  \"primary_meter_unit\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_delete_fuel_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/fuel/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "fuel",
            "entry"
          ]
        },
        "description": "Permanently delete one Fleetio fuel entry and its associated meter entry by exact fuel-entry ID. Both deletions are irreversible and can affect meter history, so use this only for a verified erroneous",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fuel_entry_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_delete_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "issue"
          ]
        },
        "description": "Permanently delete one Fleetio issue by exact ID. This action is irreversible: use it only for a known disposable or erroneous issue after verifying the ID. Prefer issue state transitions for normal l",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"issue_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_delete_meter_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/meter/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "meter",
            "entry"
          ]
        },
        "description": "Permanently delete one Fleetio meter entry by exact ID. This action is irreversible: use it only for a known erroneous or disposable reading after verifying the ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"meter_entry_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_get_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact"
          ]
        },
        "description": "Retrieve one Fleetio contact by ID for assignment, issue, or maintenance workflows. Returns purposeful business and employment details while omitting residential, license, user-access, and account-mem",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_get_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "issue"
          ]
        },
        "description": "Retrieve full details for one Fleetio issue by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"issue_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_get_service_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/service/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "service",
            "entry"
          ]
        },
        "description": "Retrieve one Fleetio service entry by ID, including its status, maintenance tasks, issues, meter data, and costs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"service_entry_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_get_vehicle",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/vehicle",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "vehicle"
          ]
        },
        "description": "Retrieve full current details for one Fleetio vehicle by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vehicle_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_get_work_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/work/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "work",
            "order"
          ]
        },
        "description": "Retrieve full details for one Fleetio work order by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"work_order_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_list_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accounts"
          ]
        },
        "description": "Return Fleetio account identity, plan, state, and permission or feature context for the connected API key. Credential-like account tokens are always removed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"filter_account_name_like\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_list_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contacts"
          ]
        },
        "description": "Find Fleetio contacts using bounded cursor pagination and common identity or employment filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"sort_direction\": \"\",\n  \"filter_email_eq\": \"\",\n  \"filter_email_like\": \"\",\n  \"filter_group_id_eq\": 0,\n  \"filter_last_name_like\": \"\",\n  \"filter_employee_number_eq\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_list_fuel_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/fuel/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "fuel",
            "entries"
          ]
        },
        "description": "Find Fleetio fuel entries by vehicle, vendor, external ID, or date range using bounded cursor pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"sort_direction\": \"\",\n  \"filter_date_gte\": \"\",\n  \"filter_date_lte\": \"\",\n  \"filter_vendor_id_eq\": 0,\n  \"filter_vehicle_id_eq\": 0,\n  \"filter_external_id_eq\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_list_issues",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/issues",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "issues"
          ]
        },
        "description": "Find Fleetio issues by vehicle, state, issue number, assigned contact, due date, or reported date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"state\": \"\",\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"sort_direction\": \"\",\n  \"filter_number_eq\": \"\",\n  \"assigned_contact_id\": 0,\n  \"filter_due_date_lte\": \"\",\n  \"filter_vehicle_id_eq\": 0,\n  \"filter_reported_at_gte\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_list_meter_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/meter/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "meter",
            "entries"
          ]
        },
        "description": "Find Fleetio primary or secondary meter readings by vehicle, meterable asset, category, or date range, ordered for chronology checks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort_by\": \"\",\n  \"category\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"sort_direction\": \"\",\n  \"filter_date_gte\": \"\",\n  \"filter_date_lte\": \"\",\n  \"filter_vehicle_id_eq\": 0,\n  \"associated_resource_id\": 0,\n  \"associated_resource_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_list_reference_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reference/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reference",
            "data"
          ]
        },
        "description": "List one Fleetio reference collection used by vehicle, issue, work-order, service, fuel, vendor, grouping, and inspection workflows.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"per_page\": 0,\n  \"resource\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_list_service_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/service/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "service",
            "entries"
          ]
        },
        "description": "List Fleetio service entries by reference, status, or completion-date range, with sorting and cursor pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"sort_direction\": \"\",\n  \"filter_reference_eq\": \"\",\n  \"filter_reference_like\": \"\",\n  \"filter_completed_at_gte\": \"\",\n  \"filter_completed_at_lte\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_list_service_reminders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/service/reminders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "service",
            "reminders"
          ]
        },
        "description": "Find due, overdue, snoozed, or upcoming Fleetio service reminders by vehicle or service task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"sort_direction\": \"\",\n  \"filter_status_eq\": \"\",\n  \"filter_vehicle_id_eq\": 0,\n  \"filter_service_task_id_eq\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_list_vehicles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/vehicles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "vehicles"
          ]
        },
        "description": "Find active Fleetio vehicles by name, VIN, license plate, group, status, or type, with cursor pagination and configurable sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"filter_vin_eq\": \"\",\n  \"filter_name_eq\": \"\",\n  \"sort_direction\": \"\",\n  \"filter_name_like\": \"\",\n  \"filter_group_id_eq\": 0,\n  \"filter_license_plate_eq\": \"\",\n  \"filter_vehicle_type_id_eq\": 0,\n  \"filter_vehicle_status_id_eq\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_list_work_orders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/work/orders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "work",
            "orders"
          ]
        },
        "description": "Find Fleetio work orders by vehicle, vendor, contact, number, status, or purchase order reference.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort_by\": \"\",\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"status_name\": \"\",\n  \"sort_direction\": \"\",\n  \"filter_number_eq\": \"\",\n  \"filter_vendor_id_eq\": 0,\n  \"filter_contact_id_eq\": 0,\n  \"filter_vehicle_id_eq\": 0,\n  \"filter_purchase_order_number_like\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_restore_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "contact"
          ]
        },
        "description": "Restore one archived Fleetio contact by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_restore_vehicle",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/restore/vehicle",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "restore",
            "vehicle"
          ]
        },
        "description": "Restore one archived Fleetio vehicle by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vehicle_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_update_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact"
          ]
        },
        "description": "Update selected business identity, communication, employment, or group fields on one Fleetio contact; omitted fields remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"employee\": false,\n  \"group_id\": 0,\n  \"job_title\": \"\",\n  \"last_name\": \"\",\n  \"contact_id\": 0,\n  \"first_name\": \"\",\n  \"mobile_phone_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_update_fuel_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/fuel/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "fuel",
            "entry"
          ]
        },
        "description": "Correct selected timestamp, volume, meter, vendor, fuel type, price, flag, or reference fields on one Fleetio fuel entry; omitted fields remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"liters\": 0,\n  \"partial\": false,\n  \"personal\": false,\n  \"reference\": \"\",\n  \"vendor_id\": 0,\n  \"meter_void\": false,\n  \"uk_gallons\": 0,\n  \"us_gallons\": 0,\n  \"meter_value\": 0,\n  \"fuel_type_id\": 0,\n  \"fuel_entry_id\": 0,\n  \"price_per_volume_unit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_update_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "issue"
          ]
        },
        "description": "Update issue content, priority, due date, or assignments without changing the issue lifecycle state; omitted fields remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"summary\": \"\",\n  \"due_date\": \"\",\n  \"issue_id\": 0,\n  \"label_ids\": \"\",\n  \"description\": \"\",\n  \"reported_by_id\": 0,\n  \"issue_priority_id\": 0,\n  \"assigned_contact_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_update_meter_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/meter/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "meter",
            "entry"
          ]
        },
        "description": "Correct the timestamp, value, or void state of one Fleetio meter entry, or change its meter type from primary to secondary. This tool cannot change a secondary entry back to primary. Omitted fields re",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"void\": false,\n  \"value\": 0,\n  \"meter_type\": \"\",\n  \"meter_entry_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_update_vehicle",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/vehicle",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "vehicle"
          ]
        },
        "description": "Update selected identity, classification, or assignment fields on one Fleetio vehicle; omitted fields remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vin\": \"\",\n  \"make\": \"\",\n  \"name\": \"\",\n  \"year\": 0,\n  \"model\": \"\",\n  \"group_id\": 0,\n  \"vehicle_id\": 0,\n  \"fuel_type_id\": 0,\n  \"license_plate\": \"\",\n  \"vehicle_type_id\": 0,\n  \"vehicle_status_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fleetio_update_work_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/work/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "work",
            "order"
          ]
        },
        "description": "Update selected status, scheduling, assignment, reference, description, or issue fields on an existing Fleetio work order; omitted fields remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"issue_ids\": \"\",\n  \"vendor_id\": 0,\n  \"contact_id\": 0,\n  \"started_at\": \"\",\n  \"description\": \"\",\n  \"completed_at\": \"\",\n  \"scheduled_at\": \"\",\n  \"work_order_id\": 0,\n  \"invoice_number\": \"\",\n  \"work_order_status_id\": 0,\n  \"expected_completed_at\": \"\",\n  \"purchase_order_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}