diff --git a/data/interfaces/default/settings.html b/data/interfaces/default/settings.html
index 6710ff79..e5b0b321 100644
--- a/data/interfaces/default/settings.html
+++ b/data/interfaces/default/settings.html
@@ -1923,6 +1923,21 @@
Example:
{media_type} --> movie
{media_type!c} --> Movie
+
+
+
Time Formats
+
+
+
+ Notification parameters which are "in date format" or "in time format" can be formatted using the
+ Date & Time Format Options
+ by adding a :format specifier.
+ If no format is specified, the default Date Format and Time Format under Settings > General will be used.
+
+
Example:
+
{started_datestamp:ddd, MMMM DD, YYYY} --> Mon, December 25, 2023
+{stopped_timestamp:h:mm a} --> 9:56 pm
+{duration_time:HH:mm:ss} --> 01:42:20
List Slicing
diff --git a/plexpy/common.py b/plexpy/common.py
index c692840b..79b76b5c 100644
--- a/plexpy/common.py
+++ b/plexpy/common.py
@@ -636,7 +636,7 @@ NOTIFICATION_PARAMETERS = [
'parameters': [
{'name': 'Update Version', 'type': 'str', 'value': 'update_version', 'description': 'The available update version for your Plex Server.'},
{'name': 'Update Url', 'type': 'str', 'value': 'update_url', 'description': 'The download URL for the available update.'},
- {'name': 'Update Release Date', 'type': 'str', 'value': 'update_release_date', 'description': 'The release date of the available update.'},
+ {'name': 'Update Release Date', 'type': 'str', 'value': 'update_release_date', 'description': 'The release date (in date format) of the available update.'},
{'name': 'Update Channel', 'type': 'str', 'value': 'update_channel', 'description': 'The update channel.', 'example': 'Public or Plex Pass'},
{'name': 'Update Platform', 'type': 'str', 'value': 'update_platform', 'description': 'The platform of your Plex Server.'},
{'name': 'Update Distro', 'type': 'str', 'value': 'update_distro', 'description': 'The distro of your Plex Server.'},