Project

General

Profile

Rest Issues » History » Version 28

Jean-Philippe Lang, 2011-08-01 17:55
toc added

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