@@ -87,9 +87,11 @@ 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 userthat performed the event (` sender ` ),
90+ A full payload will also show the userwho performed the event (` sender ` ),
9191the repository (` repository ` ), and the organization (` organization ` ) if applicable.
9292
93+ ####Delivery headers
94+
9395HTTP requests made to your server's endpoint will contain several special
9496headers:
9597
@@ -101,19 +103,41 @@ Header | Description
101103
102104Also, the` User-Agent ` for the requests will have the prefix` GitHub Hookshot ` .
103105
104- ** Example** :
106+ #### Example delivery
105107
106108<pre class =" terminal " >
107109POST /payload HTTP/1.1
108110
109111Host: localhost:4567
110112X-Github-Delivery: 72d3162e-cc78-11e3-81ab-4c9367dc0958
111113User-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
114+ Content-Type: application/json
115+ Content-Length: 6615
116+ X-Github-Event: issue
117+
118+ {
119+ "action": "opened",
120+ "issue": {
121+ "url": "https://api.github.com/repos/octocat/Hello-World/issues/1347",
122+ "number": 1347,
123+ ...
124+ },
125+ "repository" : {
126+ "id": 1296269,
127+ "full_name": "octocat/Hello-World",
128+ "owner": {
129+ "login": "octocat",
130+ "id": 1,
131+ ...
132+ },
133+ ...
134+ },
135+ "sender": {
136+ "login": "octocat",
137+ "id": 1,
138+ ...
139+ }
140+ }
117141</pre >
118142
119143##Wildcard Event