diff --git a/openpype/modules/ftrack/plugins/publish/integrate_ftrack_note.py b/openpype/modules/ftrack/plugins/publish/integrate_ftrack_note.py
index 8609e8bca6..8220b8e6ca 100644
--- a/openpype/modules/ftrack/plugins/publish/integrate_ftrack_note.py
+++ b/openpype/modules/ftrack/plugins/publish/integrate_ftrack_note.py
@@ -30,6 +30,8 @@ class IntegrateFtrackNote(pyblish.api.InstancePlugin):
return
host_name = instance.context.data["hostName"]
+ app_name = instance.context.data["appName"]
+ app_label = instance.context.data["appLabel"]
comment = (instance.context.data.get("comment") or "").strip()
if not comment:
self.log.info("Comment is not set.")
@@ -109,6 +111,8 @@ class IntegrateFtrackNote(pyblish.api.InstancePlugin):
"intent": final_intent_label,
"comment": comment,
"host_name": host_name,
+ "app_name": app_name,
+ "app_label": app_label,
"published_paths": "\n".join(sorted(published_paths)),
}
comment = template.format(**format_data)
diff --git a/openpype/settings/entities/schemas/projects_schema/schema_project_ftrack.json b/openpype/settings/entities/schemas/projects_schema/schema_project_ftrack.json
index b3c094e398..0d7faac2ba 100644
--- a/openpype/settings/entities/schemas/projects_schema/schema_project_ftrack.json
+++ b/openpype/settings/entities/schemas/projects_schema/schema_project_ftrack.json
@@ -740,7 +740,7 @@
},
{
"type": "label",
- "label": "Template may contain formatting keys {intent}, {comment}, {host_name} and {published_paths}."
+ "label": "Template may contain formatting keys intent, comment, host_name, app_name, app_label and published_paths."
},
{
"type": "text",