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 sprint group
A GET
to /sprint-groups/{id}
returns the sprint group with the given id.
Path parameters
Parameter | Description |
---|---|
|
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 |
---|---|---|
|
|
the type of this entity |
|
|
the id of this sprint group |
|
|
the name of this sprint group |
|
|
related links |
Links
Relation | Description |
---|---|
|
link to this sprint group |
|
link to the project of this sprint group |