/// <summary> /// Get the details of a manual reminder. /// </summary> /// <param name="reminder_id">The reminder_id is the identifier of the existing manual reminder.</param> /// <returns>ManualReminderAndPlaceHolders object.</returns> public ManualReminderAndPlaceHolders GetManualReminder(string reminder_id) { var url = baseAddress + "/manualreminders/" + reminder_id; var response = ZohoHttpClient.get(url, getQueryParameters()); return(SettingsParser.getManualReminderAndPlaceHolders(response)); }