/// <summary>
        ///     Get the details of an automated payment reminder.
        /// </summary>
        /// <param name="template_id">
        ///     The template_id is the identifier of the template in which format it the reminder is going to
        ///     send to the customer.
        /// </param>
        /// <returns>AutoReminderAndPlaceHolders object.</returns>
        public AutoReminderAndPlaceHolders GetAnAutoPaymentReminder(string template_id)
        {
            var url      = baseAddress + "/autoreminders/" + template_id;
            var response = ZohoHttpClient.get(url, getQueryParameters());

            return(SettingsParser.getAutoReminderAndPlaceHolders(response));
        }