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
+
+