From b6d6a8765d171d407065f08b77954a5cf71b5447 Mon Sep 17 00:00:00 2001 From: "DESKTOP-T0O5CDB\\DESK-555BD" Date: Sat, 26 Apr 2025 09:32:15 -0600 Subject: [PATCH] update API documentation --- Views/API/Index.cshtml | 59 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/Views/API/Index.cshtml b/Views/API/Index.cshtml index 8477a4e..8a71a68 100644 --- a/Views/API/Index.cshtml +++ b/Views/API/Index.cshtml @@ -669,6 +669,65 @@ vehicleId - Id of Vehicle +
+
+ POST +
+
+ /api/vehicle/reminders/add +
+
+ Adds Reminder Record to the vehicle +
+
+ vehicleId - Id of Vehicle +
+ Body(form-data): {
+ description - Description
+ dueDate - Due Date
+ dueOdometer - Due Odometer reading
+ metric - Date/Odometer/Both
+ notes - notes(optional)
+ tags - tags separated by space(optional)
+ } +
+
+
+
+ PUT +
+
+ /api/vehicle/reminders/update +
+
+ Updates Reminder Record +
+
+ Body(form-data): {
+ Id - Id of Reminder Record
+ description - Description
+ dueDate - Due Date
+ dueOdometer - Due Odometer reading
+ metric - Date/Odometer/Both
+ notes - notes(optional)
+ tags - tags separated by space(optional)
+ } +
+
+
+
+ DELETE +
+
+ /api/vehicle/reminders/delete +
+
+ Deletes Reminder Record +
+
+ Id - Id of Reminder Record +
+
GET