mirror of
https://github.com/kennethreitz/python-github3.git
synced 2026-06-05 23:10:17 +00:00
docs
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
# Issues API
|
||||
|
||||
## List issues for this Repository
|
||||
|
||||
### GET `/repos/:user/:repo/issues.json`
|
||||
|
||||
* `?milestone` = (Fixnum)
|
||||
* `?sort` = (String)
|
||||
* `?direction` = (String)
|
||||
* `?state` = open, closed, default: open
|
||||
* `?assignee` = (String)
|
||||
* `?mentioned` = (String)
|
||||
* `?labels` = (String)
|
||||
|
||||
|
||||
## Create an Issue
|
||||
|
||||
### POST `/repos/:user/:repo/issues.json`
|
||||
|
||||
### Input
|
||||
|
||||
{
|
||||
title: String,
|
||||
body: String,
|
||||
assignee: String,
|
||||
milestone: Fixnum,
|
||||
}
|
||||
|
||||
## Get a single Issue
|
||||
|
||||
### GET `/repos/:user/:repo/issues/:id.json`
|
||||
|
||||
## Edit an Issue
|
||||
|
||||
### PUT `/repos/:user/:repo/issues/:id.json`
|
||||
|
||||
### Input
|
||||
|
||||
{
|
||||
title: String,
|
||||
body: String,
|
||||
assignee: String,
|
||||
milestone: Fixnum,
|
||||
}
|
||||
|
||||
## Delete an Issue
|
||||
|
||||
### DELETE `/repos/:user/:repo/issues/:id.json`
|
||||
Reference in New Issue
Block a user