CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 02 Sep 2025 19:20:03 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20161114175156
location: https://web.archive.org/web/20161114175156/https://developer.github.com/v3/issues/timeline/
server-timing: captures_list;dur=0.709437, exclusion.robots;dur=0.027094, exclusion.robots.policy;dur=0.011843, esindex;dur=0.015330, cdx.remote;dur=30.554265, LoadShardBlock;dur=583.525922, PetaboxLoader3.datanode;dur=248.709250, PetaboxLoader3.resolve;dur=234.379772
x-app-server: wwwb-app217
x-ts: 302
x-tr: 645
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app217; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Tue, 02 Sep 2025 19:20:04 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: GitHub.com
x-archive-orig-last-modified: Mon, 14 Nov 2016 05:40:40 GMT
x-archive-orig-access-control-allow-origin: *
x-archive-orig-expires: Mon, 14 Nov 2016 18:01:56 GMT
x-archive-orig-cache-control: max-age=600
x-archive-orig-x-github-request-id: 17EB2F1A:23C32:4140300:5829F9BB
x-archive-orig-content-length: 36920
x-archive-orig-accept-ranges: bytes
x-archive-orig-date: Mon, 14 Nov 2016 17:51:56 GMT
x-archive-orig-via: 1.1 varnish
x-archive-orig-age: 0
x-archive-orig-connection: close
x-archive-orig-x-served-by: cache-sjc3622-SJC
x-archive-orig-x-cache: MISS
x-archive-orig-x-cache-hits: 0
x-archive-orig-x-timer: S1479145916.523087,VS0,VE75
x-archive-orig-vary: Accept-Encoding
x-archive-orig-x-fastly-request-id: d94e0e3db2b87f3966efe1c2a7bf2db99e1ac15b
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 14 Nov 2016 17:51:56 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 14 Nov 2016 17:51:56 GMT", ; rel="memento"; datetime="Mon, 14 Nov 2016 17:51:56 GMT", ; rel="next memento"; datetime="Tue, 27 Dec 2016 00:34:16 GMT", ; rel="last memento"; datetime="Wed, 21 May 2025 02:06:52 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: ARCHIVEIT-771-QUARTERLY-JOB248887-20161114-00001/ARCHIVEIT-771-QUARTERLY-JOB248887-20161114174414295-00009.warc.gz
server-timing: captures_list;dur=1.844395, exclusion.robots;dur=0.036459, exclusion.robots.policy;dur=0.016302, esindex;dur=0.022717, cdx.remote;dur=127.307400, LoadShardBlock;dur=334.474295, PetaboxLoader3.datanode;dur=309.758272, PetaboxLoader3.resolve;dur=262.783278, load_resource;dur=273.802508
x-app-server: wwwb-app217
x-ts: 200
x-tr: 912
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Issue Timeline | GitHub Developer Guide
The API to get issue timeline events is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the blog post for full details.
To access the API you must provide a custom media type in the Accept
header:
application/vnd.github.mockingbird-preview
Timeline
Records various events that occur around an issue or pull request. This is useful both for display on issue and pull request information pages, as well as to determine who should be notified of comments.
Attributes
- id
- The Integer ID of the event.
- url
- The API URL for fetching the event.
- actor
- The User object that generated the event.
- commit_id
- The String SHA of a commit that referenced this Issue.
- event
- Identifies the actual type of Event that occurred.
- created_at
- The timestamp indicating when the event occurred.
- label
- The Label object including `name` and `color` attributes. Only provided for `labeled` and `unlabeled` events.
- assignee
- The User object which was assigned to (or unassigned from) this Issue. Only provided for `assigned` and `unassigned` events.
- milestone
- The Milestone object including a `title` attribute. Only provided for `milestoned` and `demilestoned` events.
- source
- The `id`, `actor`, and `url` for the source of a reference from another issue. Only provided for `cross-referenced` events.
- rename
- An object containing rename details including `from` and `to` attributes. Only provided for `renamed` events.
Events
- assigned
- The issue was assigned to the assignee.
- closed
- The issue was closed by the actor. When the commit_id is present, it identifies the commit that closed the issue using "closes / fixes #NN" syntax.
- commented
- A comment was added to the issue.
- committed
- A commit was added to the pull request's `HEAD` branch. Only provided for pull requests.
- cross-referenced
- The issue was referenced from another issue. The `source` attribute contains the `id`, `actor`, and `url` of the reference's source.
- demilestoned
- The issue was removed from a milestone.
- head_ref_deleted
- The pull request's branch was deleted.
- head_ref_restored
- The pull request's branch was restored.
- labeled
- A label was added to the issue.
- locked
- The issue was locked by the actor.
- mentioned
- The actor was @mentioned in an issue body.
- merged
- The issue was merged by the actor. The `commit_id` attribute is the SHA1 of the HEAD commit that was merged.
- milestoned
- The issue was added to a milestone.
- referenced
- The issue was referenced from a commit message. The `commit_id` attribute is the commit SHA1 of where that happened.
- renamed
- The issue title was changed.
- reopened
- The issue was reopened by the actor.
- subscribed
- The actor subscribed to receive notifications for an issue.
- unassigned
- The assignee was unassigned from the issue.
- unlabeled
- A label was removed from the issue.
- unlocked
- The issue was unlocked by the actor.
- unsubscribed
- The actor unsubscribed to stop receiving notifications for an issue.
List events for an issue
GET /repos/:owner/:repo/issues/:issue_number/timeline
Response
Status: 200 OK
Link: <https://api.github.com/resource?page=2>; rel="next",
<https://api.github.com/resource?page=5>; rel="last"
[
{
"id": 1,
"url": "https://api.github.com/repos/octocat/Hello-World/issues/events/1",
"actor": {
"login": "octocat",
"id": 1,
"avatar_url": "https://github.com/images/error/octocat_happy.gif",
"gravatar_id": "",
"url": "https://api.github.com/users/octocat",
"html_url": "https://github.com/octocat",
"followers_url": "https://api.github.com/users/octocat/followers",
"following_url": "https://api.github.com/users/octocat/following{/other_user}",
"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
"organizations_url": "https://api.github.com/users/octocat/orgs",
"repos_url": "https://api.github.com/users/octocat/repos",
"events_url": "https://api.github.com/users/octocat/events{/privacy}",
"received_events_url": "https://api.github.com/users/octocat/received_events",
"type": "User",
"site_admin": false
},
"event": "closed",
"commit_id": "6dcb09b5b57875f334f61aebed695e2e4193db5e",
"commit_url": "https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e",
"created_at": "2011-04-14T16:00:49Z"
}
]