This guide will help you understand the Jira Service Desk domain model, by using the Jira Service Desk Cloud REST API and Jira Cloud platform REST API to examine it. Jira Service Desk is built upon the Jira platform, so key domain objects of the Jira platform will also be discussed.
You should start by reading the "Overview" section. Each section after that covers different objects in the Jira Service Desk domain model. We recommend that you read all of those sections from top to bottom, but you can read them in a different order or skip sections if you want to.
The Jira Service Desk domain objects are built upon peer Jira platform counterparts. For example, service desks are based on projects. However, the Jira Service Desk objects have a much more specific purpose, compared to the Jira platform objects. For example, you might have a Request Type named "Laptop Purchase" in Jira Service Desk, which has a much more specific use case than the "Task" Issue Type (in Jira platform) that it is based on.
The reason for this is that a key design goal for Jira Service Desk is to have a simple and targeted experience for people asking for help from a service desk team. The Jira platform has to cater for many different user experiences, and as a result, it has generic domain objects that are more flexible. However, these generic concepts and terms may not make sense for your service desk customers. Therefore, Jira Service Desk maps the generic objects to specific Jira Service Desk objects. For example, you could map the "Summary" issue field (Jira platform) to a request type field, which you might name "What do you need?". The same field has a dual purpose -- it still functions like the "Summary" field but it is presented as a "What do you need?" field.
If you understand this design philosophy that underlies how Jira platform and Jira Service Desk relate to each other, the Jira Service Desk Domain model will make more sense.
This section outlines the key domain objects in Jira Service Desk, as well as the relevant objects in the Jira platform. The table below describes the objects at a high level. We'll explore each object in more depth, using the REST APIs, in the later sections on this page.
Service Desk (Jira Service Desk)
Project (Jira platform)
Request (Jira Service Desk)
Issue (Jira platform)
Request Field (Jira Service Desk)
Issue Field (Jira platform)
Comment (Jira platform & Jira Service Desk)
Request Type (Jira Service Desk)
Issue Type (Jira platform)
Request Status (Jira Service Desk)
Issue Status (Jira platform)
Request Service Level Agreement* (Jira Service Desk)*
The basic container of Jira Service Desk domain objects is the Service Desk and its peer object, the Jira platform Project. There is a one to one relationship between a Service Desk and a Project; and a Service Desk is implemented from a Jira platform project. The permissions for managing the users that can access a service desk are controlled via the peer project.
A Service Desk is the starting point for all things in Jira Service Desk. It contains most of the other domain objects, such as Request Types, Request Type Fields, etc. Let's see what a Service Desk looks like, by getting a list of the Service Desks in the system via the REST API:
1 2curl -u agent:agent -X GET "http://localhost:2990/jira/rest/servicedeskapi/servicedesk?start=0&limit=5" | python -mjson.tool
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{ "_links": { "base": "http://localhost:2990/jira", "context": "/jira", "next": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk?limit=5&start=5", "self": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk?start=0&limit=5" }, "isLastPage": false, "limit": 5, "size": 5, "start": 0, "values": [ { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/15" }, "id": 15, "projectId": 11041, "projectName": "All Teams Service Desk" }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/19" }, "id": 19, "projectId": 11241, "projectName": "Foundation Leave" }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/21" }, "id": 21, "projectId": 11243, "projectName": "Human Resources Service Desk" }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/16" }, "id": 16, "projectId": 11042, "projectName": "IT Help" }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/23" }, "id": 23, "projectId": 11245, "projectName": "Lawyer Up - Company Lawyer Requests" } ] }
Here's a few things to note about the Service Desk:
Id
, a Jira projectId,
and projectName
.projectId
comes from the peer Jira platform domain Project object. You can access more information about the Project via the Jira Cloud platform REST API. In many cases, you can use either the Jira Service Desk REST API or Jira Platform REST API to find the same information -- when to use which API depends on your use case and what you want to know.5
in a page starting from 0
; that is, the first five Service Desks. The next link would be used to get the next set of items in the list.You can see from the response that there is a direct relationship between the Service Desk and its peer Project. Let's explore this further by getting the Project information for one of the Service Desks, via the REST API: the "All Teams Service Desk" (projectId
= 11041):
1 2curl -u agent:agent -X GET "http://localhost:2990/jira/rest/api/2/project/11041" | python -mjson.tool
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{ "assigneeType": "UNASSIGNED", "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/projectavatar?size=xsmall&avatarId=10873", "24x24": "http://localhost:2990/jira/secure/projectavatar?size=small&avatarId=10873", "32x32": "http://localhost:2990/jira/secure/projectavatar?size=medium&avatarId=10873", "48x48": "http://localhost:2990/jira/secure/projectavatar?avatarId=10873" }, "components": [ { "description": "Issues related to the intranet. Created by Jira Service Desk.", "id": "10414", "isAssigneeTypeValid": false, "name": "Intranet", "self": "http://localhost:2990/jira/rest/api/2/component/10414" }, { "description": "Issues related to Jira. Created by Jira Service Desk.", "id": "10413", "isAssigneeTypeValid": false, "name": "Jira", "self": "http://localhost:2990/jira/rest/api/2/component/10413" }, { "description": "Issues related to the public website. Created by Jira Service Desk.", "id": "10415", "isAssigneeTypeValid": false, "name": "Public website", "self": "http://localhost:2990/jira/rest/api/2/component/10415" } ], "description": "", "expand": "description,lead,url,projectKeys", "id": "11041", "issueTypes": [ { "description": "For general IT problems and questions. Created by Jira Service Desk.", "iconUrl": "http://localhost:2990/jira/servicedesk/issue-type-icons?icon=it-help", "id": "13", "name": "IT Help", "self": "http://localhost:2990/jira/rest/api/2/issuetype/13", "subtask": false }, { "description": "Track items that need to be bought. Created by Jira Service Desk.", "iconUrl": "http://localhost:2990/jira/servicedesk/issue-type-icons?icon=purchase", "id": "14", "name": "Purchase", "self": "http://localhost:2990/jira/rest/api/2/issuetype/14", "subtask": false }, { "description": "Track system outages or incidents. Created by Jira Service Desk.", "iconUrl": "http://localhost:2990/jira/servicedesk/issue-type-icons?icon=fault", "id": "16", "name": "Fault", "self": "http://localhost:2990/jira/rest/api/2/issuetype/16", "subtask": false }, { "description": "For new system accounts or passwords. Created by Jira Service Desk.", "iconUrl": "http://localhost:2990/jira/servicedesk/issue-type-icons?icon=access", "id": "17", "name": "Access", "self": "http://localhost:2990/jira/rest/api/2/issuetype/17", "subtask": false } ], "key": "SD", "lead": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Project Admin of some projects", "key": "patricia", "name": "projectad", "self": "http://localhost:2990/jira/rest/api/2/user?username=projectad" }, "name": "All Teams Service Desk", "projectTypeKey": "service_desk", "roles": { "Administrators": "http://localhost:2990/jira/rest/api/2/project/11041/role/10002", "Developers": "http://localhost:2990/jira/rest/api/2/project/11041/role/10001", "Doco Team": "http://localhost:2990/jira/rest/api/2/project/11041/role/10010", "Service Desk Collaborators": "http://localhost:2990/jira/rest/api/2/project/11041/role/10210", "Service Desk Customers": "http://localhost:2990/jira/rest/api/2/project/11041/role/10310", "Service Desk Team": "http://localhost:2990/jira/rest/api/2/project/11041/role/10111", "Users": "http://localhost:2990/jira/rest/api/2/project/11041/role/10000" }, "self": "http://localhost:2990/jira/rest/api/2/project/11041", "versions": [] }
As you can see, there is plenty of additional information about the Project, which you can obtain via the Jira platform REST API. This includes domain objects like Issue Types, Components, etc. We won't discuss this in detail here, but if you want to know more, check out the REST API documentation on the project resource.
When someone asks for help from a service desk, that is called a Request. The Request also has a peer object: the Issue. Requests are implemented from Issues, much like Service Desks are implemented from Projects. However, not all Issues are Requests. This is because Jira can be used for other purposes, such as Jira Software and Jira Core. The basic rule is that anything created via a Service Desk Portal is considered a Request.
Requests can be examined in terms of the person who reported them. We're going to have a look at a few examples from the point of view of a customer (named "Ronald the Customer"). We'll see how they would use the Jira Service Desk REST API to get information about the Requests they have created.
The first example shows how the customer would retrieve all of the requests that they have created:
1 2curl -u customer:customer -X GET "http://localhost:2990/jira/rest/servicedeskapi/request" | python -mjson.tool
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{ "_links": { "base": "http://localhost:2990/jira", "context": "/jira", "self": "http://localhost:2990/jira/rest/servicedeskapi/request" }, "expand": "customerRequest.participant,customerRequest.status,customerRequest.sla,requestType,serviceDesk", "isLastPage": true, "limit": 50, "size": 3, "start": 0, "values": [ { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17229" }, "createdDate": { "epochMillis": 1446776670000, "friendly": "06/Nov/15 1:24 PM", "iso8601": "2015-11-06T13:24:30+1100" }, "currentStatus": { "status": "Resolved", "statusDate": { "epochMillis": 1446776741021, "friendly": "06/Nov/15 1:25 PM", "iso8601": "2015-11-06T13:25:41+1100" } }, "expand": "customerRequest.participant,customerRequest.status,customerRequest.sla,requestType,serviceDesk", "issueId": 17229, "issueKey": "SD-12", "issueTypeId": "17", "projectId": 11041, "reporter": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "requestFieldValues": [ { "fieldId": "components", "label": "Which system?", "value": [ { "description": "Issues related to Jira. Created by Jira Service Desk.", "id": "10413", "name": "Jira", "self": "http://localhost:2990/jira/rest/api/2/component/10413" } ] }, { "fieldId": "summary", "label": "What type of access do you need?", "value": "root access" }, { "fieldId": "description", "label": "Why do you need this?", "value": "I want to be able to do stuff on Jira. Giving me root access seems like a good way to do that." } ], "requestTypeId": 63, "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17229", "serviceDeskId": 15 }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17228" }, "createdDate": { "epochMillis": 1446769068000, "friendly": "06/Nov/15 11:17 AM", "iso8601": "2015-11-06T11:17:48+1100" }, "currentStatus": { "status": "Resolved", "statusDate": { "epochMillis": 1446776578551, "friendly": "06/Nov/15 1:22 PM", "iso8601": "2015-11-06T13:22:58+1100" } }, "expand": "customerRequest.participant,customerRequest.status,customerRequest.sla,requestType,serviceDesk", "issueId": 17228, "issueKey": "SD-11", "issueTypeId": "17", "projectId": 11041, "reporter": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "requestFieldValues": [ { "fieldId": "components", "label": "Which system?", "value": [ { "description": "Issues related to the public website. Created by Jira Service Desk.", "id": "10415", "name": "Public website", "self": "http://localhost:2990/jira/rest/api/2/component/10415" } ] }, { "fieldId": "summary", "label": "What type of access do you need?", "value": "I need basic login access" }, { "fieldId": "description", "label": "Why do you need this?", "value": "I have joined the Marketing Zoom team and I need access to the Content Management system to update our public messaging." } ], "requestTypeId": 63, "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17228", "serviceDeskId": 15 }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227" }, "createdDate": { "epochMillis": 1446768040000, "friendly": "06/Nov/15 11:00 AM", "iso8601": "2015-11-06T11:00:40+1100" }, "currentStatus": { "status": "Waiting for Support", "statusDate": { "epochMillis": 1446768682499, "friendly": "06/Nov/15 11:11 AM", "iso8601": "2015-11-06T11:11:22+1100" } }, "expand": "customerRequest.participant,customerRequest.status,customerRequest.sla,requestType,serviceDesk", "issueId": 17227, "issueKey": "SD-10", "issueTypeId": "13", "projectId": 11041, "reporter": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "requestFieldValues": [ { "fieldId": "summary", "label": "What do you need?", "value": "I need help with the L8 printer" }, { "fieldId": "description", "label": "Why do you need this?", "value": "Its not printing at all. I have changed the cartridge and pressed reset but not deal.\n\nI am at a loss as to what to do next" }, { "fieldId": "customfield_11440", "label": "Your Office?" } ], "requestTypeId": 62, "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227", "serviceDeskId": 15 } ] }
Let's have a closer look at the following data items:
1 2"issueId": 17229, "issueKey": "SD-12",
The issueId
and issueKey
entries are the Id and key of the Jira platform Issue used to represent this Request. You can use the Jira platform REST API to find out even more about this Issue, as shown below:
1 2curl -u agent:agent -X GET "http://localhost:2990/jira/rest/api/2/issue/17227" | python -mjson.tool
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 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529{ "expand": "renderedFields,names,schema,transitions,operations,editmeta,changelog,versionedRepresentations", "fields": { "aggregateprogress": { "progress": 0, "total": 0 }, "aggregatetimeestimate": null, "aggregatetimeoriginalestimate": null, "aggregatetimespent": null, "assignee": null, "attachment": [], "comment": { "comments": [ { "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "body": "Hi Customer X,\n\nWe have received your request. We are about to head our to the company all hands and will get back to you as soon as we can\n\n\u2013 \u00aagent\u2122", "created": "2015-11-06T11:02:04.601+1100", "id": "37860", "self": "http://localhost:2990/jira/rest/api/2/issue/17227/comment/37860", "updateAuthor": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "updated": "2015-11-06T11:02:04.601+1100" }, { "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "body": "Ahh good point. I too will be there so I will maybe see you there.", "created": "2015-11-06T11:02:41.960+1100", "id": "37861", "self": "http://localhost:2990/jira/rest/api/2/issue/17227/comment/37861", "updateAuthor": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "updated": "2015-11-06T11:02:41.960+1100" }, { "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "body": "Hi Customer X,\n\nOk I went up to Level 8 to check on the printer but the floor is being renovated as part of the new building works. I am guessing your are on another level. Our directory service is down right now so can you please tell me what floor you are and also can you tell me what operating system you are running.\n\n\u2013 \u00aagent\u2122", "created": "2015-11-06T11:09:34.272+1100", "id": "37862", "self": "http://localhost:2990/jira/rest/api/2/issue/17227/comment/37862", "updateAuthor": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "updated": "2015-11-06T11:09:34.272+1100" }, { "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "body": "I am on level 7 sorry, in the east wing. How do I find out what operating system I have? Is that the Internet browser I am using? Because I think thats just called Safari.", "created": "2015-11-06T11:11:22.404+1100", "id": "37863", "self": "http://localhost:2990/jira/rest/api/2/issue/17227/comment/37863", "updateAuthor": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "updated": "2015-11-06T11:11:22.404+1100" }, { "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "body": "\nNote to team - we need to get the directory service back up and running. We cant find out what floor any one is on without.\n", "created": "2015-11-06T11:12:27.488+1100", "id": "37864", "self": "http://localhost:2990/jira/rest/api/2/issue/17227/comment/37864", "updateAuthor": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "updated": "2015-11-06T11:12:27.488+1100" }, { "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "body": "Also whats up with all the dust coming down the stair well with the new renovations. If it gets into the server room there will be hell to pay.", "created": "2015-11-06T11:13:22.477+1100", "id": "37865", "self": "http://localhost:2990/jira/rest/api/2/issue/17227/comment/37865", "updateAuthor": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "updated": "2015-11-06T11:13:22.477+1100" } ], "maxResults": 6, "startAt": 0, "total": 6 }, "components": [], "created": "2015-11-06T11:00:40.459+1100", "creator": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "customfield_10001": null, "customfield_10010": null, "customfield_10020": null, "customfield_10022": null, "customfield_10040": null, "customfield_10050": null, "customfield_10051": null, "customfield_10071": null, "customfield_10080": null, "customfield_10090": null, "customfield_10100": null, "customfield_10110": null, "customfield_10120": null, "customfield_10144": null, "customfield_10540": null, "customfield_10541": "She sells sea shells.", "customfield_10641": null, "customfield_10642": null, "customfield_10740": null, "customfield_11040": { "_links": { "jiraRest": "http://localhost:2990/jira/rest/api/2/issue/17227", "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227" }, "currentStatus": { "status": "Waiting for Support", "statusDate": { "epochMillis": 1446768682499, "friendly": "06/Nov/15 11:11 AM", "iso8601": "2015-11-06T11:11:22+1100" } }, "requestType": { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/15/requesttype/62" }, "description": "Get assistance for general IT problems and questions [example]", "id": 62, "name": "Get IT help", "serviceDeskId": 15 } }, "customfield_11043": { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/sla/30" }, "completedCycles": [], "id": 30, "name": "Time to resolution", "ongoingCycle": { "breachTime": { "epochMillis": 1446789600000, "friendly": "06/Nov/15 5:00 PM", "iso8601": "2015-11-06T17:00:00+1100" }, "breached": true, "elapsedTime": { "friendly": "136h 18m", "millis": 490681509 }, "goalDuration": { "friendly": "4h", "millis": 14400000 }, "paused": false, "remainingTime": { "friendly": "-132h 18m", "millis": -476281509 }, "startTime": { "epochMillis": 1446768040477, "friendly": "06/Nov/15 11:00 AM", "iso8601": "2015-11-06T11:00:40+1100" }, "withinCalendarHours": true } }, "customfield_11044": { "errorMessage": "metric not found" }, "customfield_11045": { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/sla/43" }, "completedCycles": [ { "breached": false, "elapsedTime": { "friendly": "0m", "millis": 0 }, "goalDuration": { "friendly": "15m", "millis": 900000 }, "remainingTime": { "friendly": "15m", "millis": 900000 }, "startTime": { "epochMillis": 1446768040477, "friendly": "06/Nov/15 11:00 AM", "iso8601": "2015-11-06T11:00:40+1100" }, "stopTime": { "epochMillis": 1446768124651, "friendly": "06/Nov/15 11:02 AM", "iso8601": "2015-11-06T11:02:04+1100" } }, { "breached": false, "elapsedTime": { "friendly": "0m", "millis": 0 }, "goalDuration": { "friendly": "15m", "millis": 900000 }, "remainingTime": { "friendly": "15m", "millis": 900000 }, "startTime": { "epochMillis": 1446768162075, "friendly": "06/Nov/15 11:02 AM", "iso8601": "2015-11-06T11:02:42+1100" }, "stopTime": { "epochMillis": 1446768574276, "friendly": "06/Nov/15 11:09 AM", "iso8601": "2015-11-06T11:09:34+1100" } } ], "id": 43, "name": "Time waiting for support", "ongoingCycle": { "breachTime": { "epochMillis": 1446776100000, "friendly": "06/Nov/15 1:15 PM", "iso8601": "2015-11-06T13:15:00+1100" }, "breached": true, "elapsedTime": { "friendly": "136h 18m", "millis": 490681521 }, "goalDuration": { "friendly": "15m", "millis": 900000 }, "paused": false, "remainingTime": { "friendly": "-136h 3m", "millis": -489781521 }, "startTime": { "epochMillis": 1446768682500, "friendly": "06/Nov/15 11:11 AM", "iso8601": "2015-11-06T11:11:22+1100" }, "withinCalendarHours": true } }, "customfield_11046": null, "customfield_11047": null, "customfield_11140": [], "customfield_11340": null, "customfield_11341": null, "customfield_11440": null, "description": "Its not printing at all. I have changed the cartridge and pressed reset but not deal.\n\nI am at a loss as to what to do next", "duedate": null, "environment": null, "fixVersions": [], "issuelinks": [], "issuetype": { "description": "For general IT problems and questions. Created by Jira Service Desk.", "iconUrl": "http://localhost:2990/jira/servicedesk/issue-type-icons?icon=it-help", "id": "13", "name": "IT Help", "self": "http://localhost:2990/jira/rest/api/2/issuetype/13", "subtask": false }, "labels": [], "lastViewed": "2015-11-06T13:24:34.643+1100", "priority": { "iconUrl": "http://localhost:2990/jira/images/icons/priorities/major.svg", "id": "3", "name": "Major", "self": "http://localhost:2990/jira/rest/api/2/priority/3" }, "progress": { "progress": 0, "total": 0 }, "project": { "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/projectavatar?size=xsmall&avatarId=10873", "24x24": "http://localhost:2990/jira/secure/projectavatar?size=small&avatarId=10873", "32x32": "http://localhost:2990/jira/secure/projectavatar?size=medium&avatarId=10873", "48x48": "http://localhost:2990/jira/secure/projectavatar?avatarId=10873" }, "id": "11041", "key": "SD", "name": "All Teams Service Desk", "self": "http://localhost:2990/jira/rest/api/2/project/11041" }, "reporter": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "resolution": null, "resolutiondate": null, "status": { "description": "This was auto-generated by Jira Service Desk during workflow import", "iconUrl": "http://localhost:2990/jira/images/icons/statuses/generic.png", "id": "10021", "name": "Waiting for Support", "self": "http://localhost:2990/jira/rest/api/2/status/10021", "statusCategory": { "colorName": "yellow", "id": 4, "key": "indeterminate", "name": "In Progress", "self": "http://localhost:2990/jira/rest/api/2/statuscategory/4" } }, "subtasks": [], "summary": "I need help with the L8 printer", "timeestimate": null, "timeoriginalestimate": null, "timespent": null, "timetracking": {}, "updated": "2015-11-06T11:13:22.477+1100", "versions": [], "votes": { "hasVoted": false, "self": "http://localhost:2990/jira/rest/api/2/issue/SD-10/votes", "votes": 0 }, "watches": { "isWatching": true, "self": "http://localhost:2990/jira/rest/api/2/issue/SD-10/watchers", "watchCount": 1 }, "worklog": { "maxResults": 20, "startAt": 0, "total": 0, "worklogs": [] }, "workratio": -1 }, "id": "17227", "key": "SD-10", "self": "http://localhost:2990/jira/rest/api/2/issue/17227" }
Looking at this data, you can see the fields recorded on this issue. Contrast how the Jira Service Desk field values differ in representation to their Jira platform peers, as shown below:
Jira Service Desk:
1 2"requestFieldValues": [ { "fieldId": "summary", "label": "What do you need?", "value": "I need help with the L8 printer" }, { "fieldId": "description", "label": "Why do you need this?", "value": "Its not printing at all. I have changed the cartridge and pressed reset.\r\n\r\nI am at a loss as to what to do next" }
Jira platform:
1 2"description": "Its not printing at all. I have changed the cartridge and pressed reset.\r\n\r\nI am at a loss as to what to do next", "summary": "I need help with the L8 printer",
You will notice that we accessed the request as the user "customer" using the Jira Service Desk REST API, but we switched to the user "agent" when using the Jira platform REST API. This is because of the way that the Jira Service Desk licensing works: Customers are allowed to use the Jira Service Desk REST API to access their requests for free, just like they are allowed to use the Jira Service Desk Portal for free. However, in exchange for that zero dollar cost, they are not allowed to use the Jira REST API (nor the Jira web interface).
However, licensed Jira Service Desk agents are allowed to use both REST APIs, which is why we switched to "agent" to get a Jira platform view the of the Issue.
A Request Type defines what information you want to capture from your customers when they ask for help. The Request Type Fields are the fields you want to capture and are specified in the language that your customers better understand.
If you want to create a Request, then enumerating the Request Types and their Request Type Fields will allow you to do so in a more generic fashion.
1 2curl -u customer:customer -X GET "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/15/requesttype" | python -mjson.tool
1 2{ "_links": { "base": "http://localhost:2990/jira", "context": "/jira", "self": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/15/requesttype" }, "isLastPage": true, "limit": 50, "size": 2, "start": 0, "values": [ { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/15/requesttype/62" }, "description": "Get assistance for general IT problems and questions [example]", "id": 62, "name": "Get IT help", "serviceDeskId": 15 }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/15/requesttype/63" }, "description": "Request a new account for an internal system [example]", "id": 63, "name": "Request a new account", "serviceDeskId": 15 } ] }
This shows that there are two Request Types defined for this Service Desk. Lets examine the required fields for the first one called "Get IT help"
1 2curl -u customer:customer -X GET "http://localhost:2990/jira/rest/servicedeskapi/servicedesk/15/requesttype/62/field" | python -mjson.tool
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{ "canAddRequestParticipants": true, "canRaiseOnBehalfOf": false, "requestTypeFields": [ { "description": "e.g. 'new mailing list'", "fieldId": "summary", "jiraSchema": { "system": "summary", "type": "string" }, "name": "What do you need?", "required": true, "validValues": [] }, { "description": "", "fieldId": "description", "jiraSchema": { "system": "description", "type": "string" }, "name": "Why do you need this?", "required": true, "validValues": [] }, { "description": "The best place to find you if we need to chat in person", "fieldId": "customfield_11440", "jiraSchema": { "custom": "com.atlassian.jira.plugin.system.customfieldtypes:select", "customId": 11440, "type": "option" }, "name": "Your Office?", "required": false, "validValues": [ { "children": [], "label": "Bradfield", "value": "10320" }, { "children": [], "label": "North Hampton", "value": "10321" }, { "children": [], "label": "City", "value": "10322" } ] } ] }
We have several request type fields here. One of the more interesting ones here is customfield_11440
. Here's some things to note regarding that field:
jiraSchema
entries tell you about the field and how it operates. In this case, we can see that this is a "select" custom field containing a fixed list of office locations.validValues
entries tell you what is considered a valid value for this field and the name and descriptions of that field. The field itself is not a required field, which means that if you created a Request using this Request Type then you wouldn't need to provide a value. However, if you did need to, then it would have to be one of the valid values.You can list the comments that have been made on a request. Comments come in two flavors: public comments and internal comments. If a customer (free) is using the REST API, then they will only see public comments. However, if a licensed Jira Service Desk agent is using the REST API, then they will be able to see all comments, both public and internal. Compare the following two REST API calls, which retrieve the comments for a request:
A customer retrieves all comments for a request:
1 2curl -u customer:customer -X GET "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment" | python -mjson.tool
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{ "_links": { "base": "http://localhost:2990/jira", "context": "/jira", "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment" }, "isLastPage": true, "limit": 50, "size": 4, "start": 0, "values": [ { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment/37860" }, "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "body": "Hi Customer X,\n\nWe have received your request. We are about to head our to the company all hands and will get back to you as soon as we can\n\n\u2013 \u00aagent\u2122", "created": { "epochMillis": 1446768124601, "friendly": "06/Nov/15 11:02 AM", "iso8601": "2015-11-06T11:02:04+1100" }, "id": 37860, "public": true }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment/37861" }, "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "body": "Ahh good point. I too will be there so I will maybe see you there.", "created": { "epochMillis": 1446768161960, "friendly": "06/Nov/15 11:02 AM", "iso8601": "2015-11-06T11:02:41+1100" }, "id": 37861, "public": true }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment/37862" }, "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "body": "Hi Customer X,\n\nOk I went up to Level 8 to check on the printer but the floor is being renovated as part of the new building works. I am guessing your are on another level. Our directory service is down right now so can you please tell me what floor you are and also can you tell me what operating system you are running.\n\n\u2013 \u00aagent\u2122", "created": { "epochMillis": 1446768574272, "friendly": "06/Nov/15 11:09 AM", "iso8601": "2015-11-06T11:09:34+1100" }, "id": 37862, "public": true }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment/37863" }, "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "body": "I am on level 7 sorry, in the east wing. How do I find out what operating system I have? Is that the Internet browser I am using? Because I think thats just called Safari.", "created": { "epochMillis": 1446768682404, "friendly": "06/Nov/15 11:11 AM", "iso8601": "2015-11-06T11:11:22+1100" }, "id": 37863, "public": true } ] }
An agent retrieves all comments for a request:
1 2curl -u agent:agent -X GET "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment" | python -mjson.tool
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{ "_links": { "base": "http://localhost:2990/jira", "context": "/jira", "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment" }, "isLastPage": true, "limit": 50, "size": 6, "start": 0, "values": [ { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment/37860" }, "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "body": "Hi Customer X,\n\nWe have received your request. We are about to head our to the company all hands and will get back to you as soon as we can\n\n\u2013 \u00aagent\u2122", "created": { "epochMillis": 1446768124601, "friendly": "06/Nov/15 11:02 AM", "iso8601": "2015-11-06T11:02:04+1100" }, "id": 37860, "public": true }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment/37861" }, "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "body": "Ahh good point. I too will be there so I will maybe see you there.", "created": { "epochMillis": 1446768161960, "friendly": "06/Nov/15 11:02 AM", "iso8601": "2015-11-06T11:02:41+1100" }, "id": 37861, "public": true }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment/37862" }, "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "body": "Hi Customer X,\n\nOk I went up to Level 8 to check on the printer but the floor is being renovated as part of the new building works. I am guessing your are on another level. Our directory service is down right now so can you please tell me what floor you are and also can you tell me what operating system you are running.\n\n\u2013 \u00aagent\u2122", "created": { "epochMillis": 1446768574272, "friendly": "06/Nov/15 11:09 AM", "iso8601": "2015-11-06T11:09:34+1100" }, "id": 37862, "public": true }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment/37863" }, "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10092", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10092", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10092", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10092" }, "displayName": "Ronald The Customer", "emailAddress": "customer0@atlassian.com", "key": "ronald", "name": "customer", "self": "http://localhost:2990/jira/rest/api/2/user?username=customer", "timeZone": "Australia/Sydney" }, "body": "I am on level 7 sorry, in the east wing. How do I find out what operating system I have? Is that the Internet browser I am using? Because I think thats just called Safari.", "created": { "epochMillis": 1446768682404, "friendly": "06/Nov/15 11:11 AM", "iso8601": "2015-11-06T11:11:22+1100" }, "id": 37863, "public": true }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment/37864" }, "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "body": "\nNote to team - we need to get the directory service back up and running. We cant find out what floor any one is on without.\n", "created": { "epochMillis": 1446768747488, "friendly": "06/Nov/15 11:12 AM", "iso8601": "2015-11-06T11:12:27+1100" }, "id": 37864, "public": false }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/comment/37865" }, "author": { "active": true, "avatarUrls": { "16x16": "http://localhost:2990/jira/secure/useravatar?size=xsmall&avatarId=10082", "24x24": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10082", "32x32": "http://localhost:2990/jira/secure/useravatar?size=medium&avatarId=10082", "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10082" }, "displayName": "\u00aagent\u2122", "emailAddress": "agent@example.com", "key": "waldo", "name": "agent", "self": "http://localhost:2990/jira/rest/api/2/user?username=agent", "timeZone": "Australia/Sydney" }, "body": "Also whats up with all the dust coming down the stair well with the new renovations. If it gets into the server room there will be hell to pay.", "created": { "epochMillis": 1446768802477, "friendly": "06/Nov/15 11:13 AM", "iso8601": "2015-11-06T11:13:22+1100" }, "id": 37865, "public": false } ] }
A request can change status several times while you are trying to help the customer. Each time it does, the customer will be able to see what status the request is in. Here's an example of an request that was re-opened after it was thought to have been handled:
1 2curl -u customer:customer -X GET "http://localhost:2990/jira/rest/servicedeskapi/request/17227/status" | python -mjson.tool
1 2{ "_links": { "base": "http://localhost:2990/jira", "context": "/jira", "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/status" }, "isLastPage": true, "limit": 50, "size": 4, "start": 0, "values": [ { "status": "Waiting for Support", "statusDate": { "epochMillis": 1446768682499, "friendly": "06/Nov/15 11:11 AM", "iso8601": "2015-11-06T11:11:22+1100" } }, { "status": "Waiting for Customer", "statusDate": { "epochMillis": 1446768574275, "friendly": "06/Nov/15 11:09 AM", "iso8601": "2015-11-06T11:09:34+1100" } }, { "status": "Waiting for Support", "statusDate": { "epochMillis": 1446768162074, "friendly": "06/Nov/15 11:02 AM", "iso8601": "2015-11-06T11:02:42+1100" } }, { "status": "Waiting for Customer", "statusDate": { "epochMillis": 1446768124625, "friendly": "06/Nov/15 11:02 AM", "iso8601": "2015-11-06T11:02:04+1100" } } ] }
Note that these are the public statuses that customer can see. It's possible to have internal statuses that are there to help the service team manage their work (for example "Under Review") but don't need to be shared with the customers.
To see the state transitions that are possible for this issue you can use the Jira platform REST API, as shown below:
1 2curl -u agent:agent -X GET "http://localhost:2990/jira/rest/api/2/issue/17227/transitions" | python -mjson.tool
1 2{ "expand": "transitions", "transitions": [ { "id": "801", "name": "Resolve this issue", "to": { "description": "A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.", "iconUrl": "http://localhost:2990/jira/images/icons/statuses/resolved.png", "id": "5", "name": "Resolved", "self": "http://localhost:2990/jira/rest/api/2/status/5", "statusCategory": { "colorName": "green", "id": 3, "key": "done", "name": "Done", "self": "http://localhost:2990/jira/rest/api/2/statuscategory/3" } } }, { "id": "851", "name": "Respond to customer", "to": { "description": "This was auto-generated by Jira Service Desk during workflow import", "iconUrl": "http://localhost:2990/jira/images/icons/statuses/generic.png", "id": "10022", "name": "Waiting for Customer", "self": "http://localhost:2990/jira/rest/api/2/status/10022", "statusCategory": { "colorName": "yellow", "id": 4, "key": "indeterminate", "name": "In Progress", "self": "http://localhost:2990/jira/rest/api/2/statuscategory/4" } } } ] }
Request Service Level Agreements (SLAs) are used to track how much time is spent servicing customer requests. Timers are set when Requests enter certain conditions. Goal times can be defined as an ideal time to do work before it is considered a breach of service. For example, you may aim to get back to a customer within four hours, and hence may have a "Time to first response" SLA defined.
SLA information is not visible to customers. It is used to help the service team know what is the most important task they should look at next.
SLA metrics can start and stop during the life time of an request. For example, you may have a "Time waiting for support" SLA defined, where the timers are only running while it is in the service desk teams hands. So, an SLA can have many repeated "cycles" and a possible "ongoing cycle". Each cycle may have been completed within target time or it may have "breached".
Enough theory, let's see what it looks like! The following REST API call returns the SLA information for a particular Request:
1 2url -u agent:agent -X GET "http://localhost:2990/jira/rest/servicedeskapi/request/17227/sla" | python -mjson.tool
1 2{ "_links": { "base": "http://localhost:2990/jira", "context": "/jira", "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/sla" }, "isLastPage": true, "limit": 50, "size": 2, "start": 0, "values": [ { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/sla/30" }, "completedCycles": [], "id": 30, "name": "Time to resolution", "ongoingCycle": { "breachTime": { "epochMillis": 1446789600000, "friendly": "06/Nov/15 5:00 PM", "iso8601": "2015-11-06T17:00:00+1100" }, "breached": true, "elapsedTime": { "friendly": "136h 18m", "millis": 490682163 }, "goalDuration": { "friendly": "4h", "millis": 14400000 }, "paused": false, "remainingTime": { "friendly": "-132h 18m", "millis": -476282163 }, "startTime": { "epochMillis": 1446768040477, "friendly": "06/Nov/15 11:00 AM", "iso8601": "2015-11-06T11:00:40+1100" }, "withinCalendarHours": true } }, { "_links": { "self": "http://localhost:2990/jira/rest/servicedeskapi/request/17227/sla/43" }, "completedCycles": [ { "breached": false, "elapsedTime": { "friendly": "0m", "millis": 0 }, "goalDuration": { "friendly": "15m", "millis": 900000 }, "remainingTime": { "friendly": "15m", "millis": 900000 }, "startTime": { "epochMillis": 1446768040477, "friendly": "06/Nov/15 11:00 AM", "iso8601": "2015-11-06T11:00:40+1100" }, "stopTime": { "epochMillis": 1446768124651, "friendly": "06/Nov/15 11:02 AM", "iso8601": "2015-11-06T11:02:04+1100" } }, { "breached": false, "elapsedTime": { "friendly": "0m", "millis": 0 }, "goalDuration": { "friendly": "15m", "millis": 900000 }, "remainingTime": { "friendly": "15m", "millis": 900000 }, "startTime": { "epochMillis": 1446768162075, "friendly": "06/Nov/15 11:02 AM", "iso8601": "2015-11-06T11:02:42+1100" }, "stopTime": { "epochMillis": 1446768574276, "friendly": "06/Nov/15 11:09 AM", "iso8601": "2015-11-06T11:09:34+1100" } } ], "id": 43, "name": "Time waiting for support", "ongoingCycle": { "breachTime": { "epochMillis": 1446776100000, "friendly": "06/Nov/15 1:15 PM", "iso8601": "2015-11-06T13:15:00+1100" }, "breached": true, "elapsedTime": { "friendly": "136h 18m", "millis": 490682163 }, "goalDuration": { "friendly": "15m", "millis": 900000 }, "paused": false, "remainingTime": { "friendly": "-136h 3m", "millis": -489782163 }, "startTime": { "epochMillis": 1446768682500, "friendly": "06/Nov/15 11:11 AM", "iso8601": "2015-11-06T11:11:22+1100" }, "withinCalendarHours": true } } ] }
If you've finished this tutorial, check out more Jira Service Desk tutorials or check out the Jira Service Desk Cloud REST API documentation.
Rate this page: