forked from letieu/jira.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjira-api.http
More file actions
303 lines (250 loc) · 8.47 KB
/
jira-api.http
File metadata and controls
303 lines (250 loc) · 8.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
### Jira REST API Testing
### Variables (update these for your environment)
@baseUrl = {{JIRA_BASE}}
@email = {{JIRA_EMAIL}}
@token = {{JIRA_TOKEN}}
@project = DEV2
@issueKey = DEV2-1
### ============================================================================
### Authentication Tests
### ============================================================================
### 1. Test Authentication - Get Current User
GET {{baseUrl}}/rest/api/3/myself
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### ============================================================================
### Sprint & Issue Search
### ============================================================================
### 2. Get Current Sprint Issues (Main Query)
POST {{baseUrl}}/rest/api/3/search/jql
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"jql": "project = {{project}} AND sprint in openSprints() ORDER BY status ASC, priority DESC",
"fields": [
"summary",
"issuetype",
"timespent",
"aggregatetimeoriginalestimate"
],
"nextPageToken": "",
"maxResults": 20
}
### 3. Get All Recent Issues in Project (no sprint filter)
POST {{baseUrl}}/rest/api/3/search/jql
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"jql": "project = {{project}} ORDER BY created DESC",
"maxResults": 20
}
### 4. Get Issues Assigned to Me in Active Sprint
POST {{baseUrl}}/rest/api/3/search/jql
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"jql": "project = {{project}} AND assignee = currentUser() AND sprint in openSprints()",
"maxResults": 50
}
### 5. Get "To Do" Issues in Active Sprint
POST {{baseUrl}}/rest/api/3/search/jql
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"jql": "project = {{project}} AND status = \"To Do\" AND sprint in openSprints()",
"maxResults": 50
}
### 6. Get High Priority Issues
POST {{baseUrl}}/rest/api/3/search/jql
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"jql": "project = {{project}} AND priority = High AND sprint in openSprints()",
"maxResults": 50
}
### ============================================================================
### Issue Details
### ============================================================================
### 7. Get Specific Issue Details
GET {{baseUrl}}/rest/api/3/issue/{{issueKey}}
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### 8. Get Issue with Specific Fields
GET {{baseUrl}}/rest/api/3/issue/{{issueKey}}?fields=summary,status,assignee,priority,timespent,timeestimate,description
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### ============================================================================
### Transitions (Status Changes)
### ============================================================================
### 9. Get Available Transitions for Issue
GET {{baseUrl}}/rest/api/3/issue/{{issueKey}}/transitions
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### 10. Transition Issue to New Status
# Get transition ID from the response above
POST {{baseUrl}}/rest/api/3/issue/{{issueKey}}/transitions
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
{
"transition": {
"id": "31"
}
}
### ============================================================================
### Worklog (Time Tracking)
### ============================================================================
### 11. Add Worklog - 2 hours
POST {{baseUrl}}/rest/api/3/issue/{{issueKey}}/worklog
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"timeSpent": "2h"
}
### 12. Add Worklog - 30 minutes
POST {{baseUrl}}/rest/api/3/issue/{{issueKey}}/worklog
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"timeSpent": "30m"
}
### 13. Add Worklog - 1 hour 30 minutes with comment
POST {{baseUrl}}/rest/api/3/issue/{{issueKey}}/worklog
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"timeSpent": "1h 30m",
"comment": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "Worked on implementing the feature"
}
]
}
]
}
}
### 14. Get Worklogs for Issue
GET {{baseUrl}}/rest/api/3/issue/{{issueKey}}/worklog
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### ============================================================================
### Boards & Sprints (Agile API)
### ============================================================================
### 15. Get All Boards in Project
GET {{baseUrl}}/rest/agile/1.0/board?projectKeyOrId={{project}}
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### 16. Get Active Sprints for Board
# Replace {boardId} with actual board ID from request #15
GET {{baseUrl}}/rest/agile/1.0/board/{boardId}/sprint?state=active
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### 17. Get All Sprints for Board
GET {{baseUrl}}/rest/agile/1.0/board/{boardId}/sprint
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### 18. Get Issues in Sprint
# Replace {sprintId} with actual sprint ID
GET {{baseUrl}}/rest/agile/1.0/sprint/{sprintId}/issue
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### ============================================================================
### Comments
### ============================================================================
### 19. Get Comments for Issue
GET {{baseUrl}}/rest/api/3/issue/{{issueKey}}/comment
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### 20. Add Comment to Issue
POST {{baseUrl}}/rest/api/3/issue/{{issueKey}}/comment
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"body": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "This is a test comment from API"
}
]
}
]
}
}
### ============================================================================
### Project Information
### ============================================================================
### 21. Get Project Details
GET {{baseUrl}}/rest/api/3/project/{{project}}
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### 22. Get All Projects
GET {{baseUrl}}/rest/api/3/project
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### 23. Get Issue Types for Project
GET {{baseUrl}}/rest/api/3/project/{{project}}/statuses
Authorization: Basic {{email}}:{{token}}
Accept: application/json
### ============================================================================
### Advanced Queries
### ============================================================================
### 24. Get Subtasks of Parent Issue
POST {{baseUrl}}/rest/api/3/search/jql
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"jql": "parent = {{issueKey}}",
"maxResults": 50
}
### 25. Get Recently Updated Issues
POST {{baseUrl}}/rest/api/3/search/jql
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"jql": "project = {{project}} AND updated >= -7d ORDER BY updated DESC",
"maxResults": 50
}
### 26. Get Unassigned Issues in Active Sprint
POST {{baseUrl}}/rest/api/3/search/jql
Authorization: Basic {{email}}:{{token}}
Content-Type: application/json
Accept: application/json
{
"jql": "project = {{project}} AND assignee is EMPTY AND sprint in openSprints()",
"maxResults": 50
}
### Get list fields
GET {{baseUrl}}/rest/api/3/field
Authorization: Basic {{email}}:{{token}}
### Agile
GET {{baseUrl}}/rest/agile/1.0/sprint/45/issue
### ============================================================================
### Notes:
### - Replace {{issueKey}} with actual issue key (e.g., COM-123)
### - Replace {boardId} and {sprintId} with actual IDs from API responses
### - Time format: 1h, 30m, 1h 30m, 2d, 1w 2d 3h
### - JQL documentation: https://support.atlassian.com/jira-software-cloud/docs/use-advanced-search-with-jira-query-language-jql/
### ============================================================================