Rest Issues » History » Version 39
Sridhar P, 2012-03-07 13:55
Added example to fetch issues for a date range
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 | 36 | Emmanuel Bourgerie | * @sort@: column to sort with. Append @:desc@ to invert the order. |
17 | 2 | Jean-Philippe Lang | |
18 | 24 | Alex Last | *use this for "stable 1.0 branch"* (instead of "offset" and "limit"): |
19 | 23 | Alex Last | * @page@: page number (optional) |
20 | |||
21 | 2 | Jean-Philippe Lang | Optional filters: |
22 | |||
23 | 30 | Ilya Kulakov | * @project_id@: get issues from the project with the given id, where id is either project id or project identifier |
24 | 2 | Jean-Philippe Lang | * @tracker_id@: get issues from the tracker with the given id |
25 | 33 | Ilya Kulakov | * @status_id@: get issues with the given status id only. Possible values: @open@, @closed@, @*@ to get open and closed issues, status id |
26 | 29 | Michael Fuchs | * @assigned_to_id@: get issues which are assigned to the given user id |
27 | 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.) |
28 | 2 | Jean-Philippe Lang | * ... |
29 | |||
30 | +Examples+: |
||
31 | |||
32 | <pre> |
||
33 | GET /issues.xml |
||
34 | GET /issues.xml?project_id=2 |
||
35 | 1 | Jean-Philippe Lang | GET /issues.xml?project_id=2&tracker_id=1 |
36 | 29 | Michael Fuchs | GET /issues.xml?assigned_to_id=6 |
37 | 12 | Robert Palmer | GET /issues.xml?status_id=closed |
38 | 1 | Jean-Philippe Lang | GET /issues.xml?status_id=* |
39 | 25 | John Manktelow | GET /issues.xml?cf_1=abcdef |
40 | 21 | Alex Last | |
41 | Paging example: |
||
42 | GET /issues.xml?project_id=testproject&query_id=2&offset=0&limit=100 |
||
43 | GET /issues.xml?project_id=testproject&query_id=2&offset=50&limit=100 |
||
44 | 39 | Sridhar P | |
45 | To fetch issues for a date range: |
||
46 | GET /issues.xml?created_on=><2012-03-01|2012-03-07 |
||
47 | 2 | Jean-Philippe Lang | </pre> |
48 | 12 | Robert Palmer | |
49 | |||
50 | 1 | Jean-Philippe Lang | |
51 | +Response+: |
||
52 | |||
53 | <pre> |
||
54 | <?xml version="1.0" encoding="UTF-8"?> |
||
55 | <issues type="array" count="1640"> |
||
56 | 3 | Christoph Witzany | <issue> |
57 | <id>4326</id> |
||
58 | 1 | Jean-Philippe Lang | <project name="Redmine" id="1"/> |
59 | <tracker name="Feature" id="2"/> |
||
60 | <status name="New" id="1"/> |
||
61 | <priority name="Normal" id="4"/> |
||
62 | <author name="John Smith" id="10106"/> |
||
63 | <category name="Email notifications" id="9"/> |
||
64 | <subject> |
||
65 | Aggregate Multiple Issue Changes for Email Notifications |
||
66 | </subject> |
||
67 | <description> |
||
68 | This is not to be confused with another useful proposed feature that |
||
69 | would do digest emails for notifications. |
||
70 | </description> |
||
71 | <start_date>2009-12-03</start_date> |
||
72 | <due_date></due_date> |
||
73 | <done_ratio>0</done_ratio> |
||
74 | <estimated_hours></estimated_hours> |
||
75 | <custom_fields> |
||
76 | <custom_field name="Resolution" id="2">Duplicate</custom_field> |
||
77 | <custom_field name="Texte" id="5">Test</custom_field> |
||
78 | <custom_field name="Boolean" id="6">1</custom_field> |
||
79 | <custom_field name="Date" id="7">2010-01-12</custom_field> |
||
80 | </custom_fields> |
||
81 | <created_on>Thu Dec 03 15:02:12 +0100 2009</created_on> |
||
82 | <updated_on>Sun Jan 03 12:08:41 +0100 2010</updated_on> |
||
83 | </issue> |
||
84 | 3 | Christoph Witzany | <issue> |
85 | <id>4325</id> |
||
86 | 1 | Jean-Philippe Lang | ... |
87 | </issue> |
||
88 | </issues> |
||
89 | </pre> |
||
90 | |||
91 | h2. Showing an issue |
||
92 | |||
93 | 31 | Ilya Kulakov | h3. Using XML |
94 | |||
95 | <pre> |
||
96 | GET /issues/[id].xml |
||
97 | </pre> |
||
98 | |||
99 | h3. Using JSON |
||
100 | |||
101 | <pre> |
||
102 | GET /issues/[id].json |
||
103 | </pre> |
||
104 | |||
105 | +Parameters+: |
||
106 | |||
107 | *Available as of version:1.1.0 :* |
||
108 | 34 | Emmanuel Bourgerie | * @include@: fetch associated data (optional). Possible values: children, attachments, relations, changesets and journals. To fetch multiple associations use comma (e.g ?include=relations,journals). See [[Rest_IssueJournals|Issue journals]] for more information. |
109 | 1 | Jean-Philippe Lang | |
110 | h2. Creating an issue |
||
111 | |||
112 | 5 | Damien Churchill | h3. Using XML |
113 | |||
114 | 1 | Jean-Philippe Lang | <pre> |
115 | 10 | Robert Palmer | POST /issues.xml |
116 | 1 | Jean-Philippe Lang | <?xml version="1.0"?> |
117 | 9 | Robert Palmer | <issue> |
118 | <subject>Example</subject> |
||
119 | 11 | Robert Palmer | <project_id>1</project_id> |
120 | 9 | Robert Palmer | <priority_id>4</priority_id> |
121 | </issue> |
||
122 | </pre> |
||
123 | 7 | Robert Palmer | |
124 | 16 | Ian Epperson | Other available tags: |
125 | 15 | Ian Epperson | * description |
126 | * category_id |
||
127 | 1 | Jean-Philippe Lang | * assigned_to_id - ID of the user to assign the issue to (currently no mechanism to assign by name) |
128 | 16 | Ian Epperson | * status_id |
129 | 37 | Charles Shapiro | * parent_issue_id - ID of the parent issue |
130 | 16 | Ian Epperson | * ... |
131 | 5 | Damien Churchill | |
132 | 38 | Jean-Philippe Lang | Attachments can be added when you create an issue, see [[Rest_api#Attaching-files|Attaching files]]. |
133 | |||
134 | 5 | Damien Churchill | h3. Using JSON |
135 | |||
136 | POST /issues.json |
||
137 | { |
||
138 | "issue": { |
||
139 | "project_id": "example", |
||
140 | 27 | Stéphane Schoorens | "subject": "Test issue", |
141 | "custom_field_values":{ |
||
142 | "1":"1.1.3" #the affected version field |
||
143 | } |
||
144 | 5 | Damien Churchill | } |
145 | } |
||
146 | |||
147 | 1 | Jean-Philippe Lang | |
148 | h2. Updating an issue |
||
149 | 38 | Jean-Philippe Lang | |
150 | Attachments can be added when you update an issue, see [[Rest_api#Attaching-files|Attaching files]]. |
||
151 | 5 | Damien Churchill | |
152 | h3. Using XML |
||
153 | 1 | Jean-Philippe Lang | |
154 | 5 | Damien Churchill | PUT /issues/[id].xml |
155 | |||
156 | h3. Using JSON |
||
157 | 6 | Robert Palmer | |
158 | 5 | Damien Churchill | PUT /issues/[id].json |
159 | { |
||
160 | "issue": { |
||
161 | 20 | Jean-Philippe Lang | "subject": "Example issue (was: Test issue)", |
162 | "notes": "Changing the subject" |
||
163 | } |
||
164 | 5 | Damien Churchill | } |
165 | 1 | Jean-Philippe Lang | |
166 | |||
167 | h2. Deleting an issue |
||
168 | |||
169 | 4 | Ryan Lovelett | DELETE /issues/[id].xml |