diff --git a/doc/api/projects.md b/doc/api/projects.md
index 10533c73a312f1d2a3ffd27dbc822476aae58eb3..9f9a274a7e84fe78260b54d0db70c55c810148b4 100644
--- a/doc/api/projects.md
+++ b/doc/api/projects.md
@@ -515,6 +515,8 @@ Parameters:
   "push_events": "true",
   "issues_events": "true",
   "merge_requests_events": "true",
+  "note_events": "true",
+  "enable_ssl_verification": "true",
   "created_at": "2012-10-12T17:04:47Z"
 }
 ```
diff --git a/lib/api/entities.rb b/lib/api/entities.rb
index 33b6224a810666f7928b6e50a952040d678b677b..9620d36ac4170e459e67ff4458741e1b9fce2fc4 100644
--- a/lib/api/entities.rb
+++ b/lib/api/entities.rb
@@ -45,7 +45,7 @@ module API
 
     class ProjectHook < Hook
       expose :project_id, :push_events
-      expose :issues_events, :merge_requests_events, :tag_push_events
+      expose :issues_events, :merge_requests_events, :tag_push_events, :note_events, :enable_ssl_verification
     end
 
     class ForkedFromProject < Grape::Entity