Project

General

Profile

Rest Issues » History » Version 26

Etienne Massip, 2011-02-16 10:46

1 1 Jean-Philippe Lang
h1. Issues
2
3
h2. Listing issues
4
5
  GET /issues.xml
6
7 2 Jean-Philippe Lang
Returns a paginated list of issues. By default, it returns open issues only.
8 1 Jean-Philippe Lang
9
+Parameters+:
10 26 Etienne Massip
11
*Available as of version:1.1.0 :*
12 21 Alex Last
* @offset@: skip this number of issues in response (optional)
13
* @limit@: number of issues per page (optional)
14 2 Jean-Philippe Lang
15 24 Alex Last
*use this for "stable 1.0 branch"* (instead of "offset" and "limit"):
16 23 Alex Last
* @page@:  page number (optional)
17
18 2 Jean-Philippe Lang
Optional filters:
19
20
* @project_id@: get issues from the project with the given id
21
* @tracker_id@: get issues from the tracker with the given id
22
* @status_id@: get issues with the given status id only (you can use @*@ to get open and closed issues)
23 25 John Manktelow
* @cf_x@: get issues with the given value for custom field with an ID of @x@. (Custom field must have 'used as a filter' checked.)
24 2 Jean-Philippe Lang
* ...
25
26
+Examples+:
27
28
<pre>
29
GET /issues.xml
30
GET /issues.xml?project_id=2
31
GET /issues.xml?project_id=2&tracker_id=1
32 18 Álvaro Arranz
GET /issues.xml?assigned_to=me
33 12 Robert Palmer
GET /issues.xml?status_id=closed
34 1 Jean-Philippe Lang
GET /issues.xml?status_id=*
35 25 John Manktelow
GET /issues.xml?cf_1=abcdef
36 21 Alex Last
37
Paging example:
38
GET /issues.xml?project_id=testproject&query_id=2&offset=0&limit=100
39
GET /issues.xml?project_id=testproject&query_id=2&offset=50&limit=100
40 2 Jean-Philippe Lang
</pre>
41 12 Robert Palmer
42
43 1 Jean-Philippe Lang
44
+Response+:
45
46
<pre>
47
<?xml version="1.0" encoding="UTF-8"?>
48
<issues type="array" count="1640">
49 3 Christoph Witzany
  <issue>
50
    <id>4326</id>
51 1 Jean-Philippe Lang
    <project name="Redmine" id="1"/>
52
    <tracker name="Feature" id="2"/>
53
    <status name="New" id="1"/>
54
    <priority name="Normal" id="4"/>
55
    <author name="John Smith" id="10106"/>
56
    <category name="Email notifications" id="9"/>
57
    <subject>
58
      Aggregate Multiple Issue Changes for Email Notifications
59
    </subject>
60
    <description>
61
      This is not to be confused with another useful proposed feature that
62
      would do digest emails for notifications.
63
    </description>
64
    <start_date>2009-12-03</start_date>
65
    <due_date></due_date>
66
    <done_ratio>0</done_ratio>
67
    <estimated_hours></estimated_hours>
68
    <custom_fields>
69
      <custom_field name="Resolution" id="2">Duplicate</custom_field>
70
      <custom_field name="Texte" id="5">Test</custom_field>
71
      <custom_field name="Boolean" id="6">1</custom_field>
72
      <custom_field name="Date" id="7">2010-01-12</custom_field>
73
    </custom_fields>
74
    <created_on>Thu Dec 03 15:02:12 +0100 2009</created_on>
75
    <updated_on>Sun Jan 03 12:08:41 +0100 2010</updated_on>
76
  </issue>
77 3 Christoph Witzany
  <issue>
78
    <id>4325</id>
79 1 Jean-Philippe Lang
    ...
80
  </issue>
81
</issues>
82
</pre>
83
84
h2. Showing an issue
85
86
  GET /issues/[id].xml
87
88
h2. Creating an issue
89
90 5 Damien Churchill
h3. Using XML
91
92 1 Jean-Philippe Lang
<pre>
93 10 Robert Palmer
  POST /issues.xml
94 1 Jean-Philippe Lang
  <?xml version="1.0"?>
95 9 Robert Palmer
  <issue>
96
    <subject>Example</subject>
97 11 Robert Palmer
    <project_id>1</project_id>
98 9 Robert Palmer
    <priority_id>4</priority_id>
99
  </issue>
100
</pre>
101 7 Robert Palmer
102 16 Ian Epperson
Other available tags:
103 15 Ian Epperson
* description
104
* category_id
105 1 Jean-Philippe Lang
* assigned_to_id - ID of the user to assign the issue to (currently no mechanism to assign by name)
106 16 Ian Epperson
* status_id
107
* ...
108 5 Damien Churchill
109
h3. Using JSON
110
111
  POST /issues.json
112
  {
113
    "issue": {
114
      "project_id": "example",
115
      "subject": "Test issue"
116
    }
117
}
118
119 1 Jean-Philippe Lang
120
h2. Updating an issue
121 5 Damien Churchill
122
h3. Using XML
123 1 Jean-Philippe Lang
124 5 Damien Churchill
  PUT /issues/[id].xml
125
126
h3. Using JSON
127 6 Robert Palmer
128 5 Damien Churchill
  PUT /issues/[id].json
129
  {
130
    "issue": {
131 20 Jean-Philippe Lang
      "subject": "Example issue (was: Test issue)",
132
      "notes": "Changing the subject"
133
    }
134 5 Damien Churchill
}
135 1 Jean-Philippe Lang
136
137
h2. Deleting an issue
138
139 4 Ryan Lovelett
  DELETE /issues/[id].xml