Automated Execution Extenders
This chapter focuses on services for the automated execution extenders.
Get automated execution extender
A GET
to /automated-execution-extenders/{id}
returns the automated execution extender with the given id.
Path parameters
Parameter | Description |
---|---|
|
the id of the automated execution extender |
HTTP request
GET /api/rest/latest/automated-execution-extenders/778 HTTP/1.1
Accept: application/json
Host: localhost:8080
Request 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: 786
{
"_type" : "automated-execution-extender",
"id" : 778,
"result_url" : "http://1234:4567/jenkins/report",
"result_summary" : "all right",
"result_status" : "BLOCKED",
"execution_node" : "no root",
"execution" : {
"_type" : "execution",
"id" : 56,
"name" : "sample test case 56",
"_links" : {
"self" : {
"href" : "http://localhost:8080/api/rest/latest/executions/56"
}
}
},
"automated_test" : {
"_type" : "automated-test",
"id" : 569,
"name" : "auto test",
"_links" : {
"self" : {
"href" : "http://localhost:8080/api/rest/latest/automated-tests/569"
}
}
},
"_links" : {
"self" : {
"href" : "http://localhost:8080/api/rest/latest/automated-execution-extenders/778"
}
}
}
Response fields
Path | Type | Description |
---|---|---|
|
|
the id of the automated execution extender |
|
|
the type of the entity |
|
|
the execution associated to this automated execution extender |
|
|
the automated test associated to this automated execution extender |
|
|
the result url of the automated execution extender |
|
|
the result summary of the automated execution extender |
|
|
the result status of the automated execution extender |
|
|
the node name of the automated execution extender |
|
|
related links |
Links
Relation | Description |
---|---|
|
link to this automated test |