Project

General

Profile

Rest Issues » History » Version 22

Alex Last, 2010-12-13 03:02

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