Quick Tests
This chapter focuses on services for the quick tests.
Get quick test
A GET to /quick-tests/{id} returns the quick test with the given id.
Path parameters
| Parameter | Description |
|---|---|
|
the id of the quick test |
HTTP request
GET /api/rest/latest/quick-tests/321 HTTP/1.1
Accept: application/json
Host: localhost:8080
Query parameters
| Parameter | Description |
|---|---|
|
which fields of the elements should be returned (optional) |
HTTP response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1384
{
"_links" : {
"self" : {
"href" : "http://localhost:8080/api/rest/latest/quick-tests/321"
},
"sprint-req-version" : {
"href" : "http://localhost:8080/api/rest/latest/sprint-req-versions/456"
},
"issues" : {
"href" : "http://localhost:8080/api/rest/latest/quick-tests/321/issues"
}
},
"_type" : "quick-test",
"id" : 321,
"name" : "my quick test",
"execution_status" : "READY",
"description" : "description as a rich text field",
"created_by" : "admin",
"created_on" : "2024-10-01T10:00:00.000Z",
"last_modified_by" : "another user",
"last_modified_on" : "2025-05-12T10:00:00.000Z",
"sprint_req_version" : {
"_links" : {
"self" : {
"href" : "http://localhost:8080/api/rest/latest/sprint-req-versions/456"
}
},
"_type" : "sprint-req-version",
"id" : 456,
"requirement_version" : {
"_links" : {
"self" : {
"href" : "http://localhost:8080/api/rest/latest/requirement-versions/789"
}
},
"_type" : "requirement-version",
"id" : 789,
"name" : "requirement version name"
},
"sprint" : {
"_links" : {
"self" : {
"href" : "http://localhost:8080/api/rest/latest/sprints/123"
}
},
"_type" : "sprint",
"id" : 123,
"name" : "sprint name"
}
},
"attachments" : [ ]
}
Response fields
| Path | Type | Description |
|---|---|---|
|
|
the type of this entity |
|
|
the id of the quick test |
|
|
the name of the quick test |
|
|
the description of the quick test |
|
|
the execution status of the quick test |
|
|
the user who created this quick test |
|
|
the date the quick test was created |
|
|
the user who last modified the quick test |
|
|
the date the quick test was last modified |
|
|
the sprint requirement version to which this quick test is linked |
|
|
the attachments of this execution |
|
|
related links |
Links
| Relation | Description |
|---|---|
|
link to this quick test |
|
link to the sprint requirement version |
|
link to the issues of this quick test |
Delete quick test
A DELETE to /quick-tests/{ids} deletes one or several quick test with the given id(s).
Path parameters
| Parameter | Description |
|---|---|
|
the list of ids of the quick tests |
HTTP request
DELETE /api/rest/latest/quick-tests/44 HTTP/1.1
Content-Type: application/json
Accept: application/json
Host: localhost:8080
HTTP response
HTTP/1.1 204 No Content