Sprint Groups

This chapter focuses on services for the sprint groups.

Endpoints only contain minimal information for this version. More information and endpoints will be available in future versions.

get Get sprint group

A GET to /sprint-groups/{id} returns the sprint group with the given id.

Path parameters

Table 1. /api/rest/latest/sprint-groups/{id}
Parameter Description

id

the id of the sprint group

HTTP request

GET /api/rest/latest/sprint-groups/123 HTTP/1.1
Accept: application/json
Host: localhost:8080

HTTP response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 284

{
  "_type" : "sprint-group",
  "id" : 123,
  "name" : "sample sprint group",
  "_links" : {
    "self" : {
      "href" : "http://localhost:8080/api/rest/latest/sprint-groups/123"
    },
    "project" : {
      "href" : "http://localhost:8080/api/rest/latest/projects/16"
    }
  }
}

Response fields

Path Type Description

_type

String

the type of this entity

id

Number

the id of this sprint group

name

String

the name of this sprint group

_links

Object

related links

Relation Description

self

link to this sprint group

project

link to the project of this sprint group