@@ -87,6 +87,35 @@ types](/v3/activity/events/types/), with the exception of [the original `push`
8787event] ( https://developer.github.com/v3/activity/events/types/#pushevent ) ,
8888which has a more detailed payload.
8989
90+ A full payload will also show the user that performed the event (` sender ` ),
91+ the repository (` repository ` ), and the organization (` organization ` ) if applicable.
92+
93+ HTTP requests made to your server's endpoint will contain several special
94+ headers:
95+
96+ Header | Description
97+ -------|-------------|
98+ ` X-Github-Event ` | Name of the[ event] ( #events ) that triggered this delivery.
99+ ` X-Hub-Signature ` | HMAC hex digest of the payload, using[ the hook's` secret ` ] ( /v3/repos/hooks/#create-a-hook ) as the key (if configured).
100+ ` X-Github-Delivery ` | Unique ID for this delivery.
101+
102+ Also, the` User-Agent ` for the requests will have the prefix` GitHub Hookshot ` .
103+
104+ ** Example** :
105+
106+ <pre class =" terminal " >
107+ POST /payload HTTP/1.1
108+
109+ Host: localhost:4567
110+ X-Github-Delivery: 72d3162e-cc78-11e3-81ab-4c9367dc0958
111+ User-Agent: GitHub Hookshot 044aadd
112+ Content-Type: application/x-www-form-urlencoded
113+ Content-Length: 2491
114+ X-Github-Event: push
115+
116+ payload=%7B%22zen%22%3A%22Keep+it+logically+awesome.%22%2C%22hook_id%22%3A2151407%7D
117+ </pre >
118+
90119##Wildcard Event
91120
92121We also support a wildcard (` * ` ) that will match all supported events. When you