Update multiple 'TestRun' existing entities
PUT/testrun/bulk
Updates multiple existing 'TestRun' entities. Returns a full updated entity list including (optional) modification metadata.
Request
Query Parameters
Forces the update even if '_etag' is missing or not matching.
- application/json
Body
array
required
Array [
]
The unique entity id - must be a positive integer
A descriptive title for this entity or mapping (1 to 200 characters)
A Descriptive Title
If the entity has been soft-deleted this value is true
The creation time for this entity or mapping value
1970-01-01T00:00:00.000Z
The creator user id of this entity or mapping value - or zero if created by the system
0
The last modification time for this entity or mapping value
1970-01-01T00:00:00.000Z
The id of the user who last modified or undeleted this entity or mapping value - or zero if modified by the system
0
The soft-deletion time for this entity or mapping value
1970-01-01T00:00:00.000Z
The id of the user who deleted this entity or mapping value - or zero if deleted by the system
0
A tag for detecting conflicting modifications - current value (may be empty) must be passed along in an update (or update must be forced)
The project id this entity or mapping belongs to
The optional id of the test plan this test run is associated with
0
The time this run was closed - all referenced test case data uses this as a historic timestamp
1970-01-01T00:00:00.000Z
The id of the user who closed this test run
0
Whether the test run is closed or not - closed runs can not be modified until reopened
An optional description for this test run (can be a rich text document)
Responses
- 200
- 4XX
- 5XX
Returns an array of TestRun.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
The unique entity id - must be a positive integer
A descriptive title for this entity or mapping (1 to 200 characters)
A Descriptive Title
If the entity has been soft-deleted this value is true
The creation time for this entity or mapping value
1970-01-01T00:00:00.000Z
The creator user id of this entity or mapping value - or zero if created by the system
0
The last modification time for this entity or mapping value
1970-01-01T00:00:00.000Z
The id of the user who last modified or undeleted this entity or mapping value - or zero if modified by the system
0
The soft-deletion time for this entity or mapping value
1970-01-01T00:00:00.000Z
The id of the user who deleted this entity or mapping value - or zero if deleted by the system
0
A tag for detecting conflicting modifications - current value (may be empty) must be passed along in an update (or update must be forced)
The project id this entity or mapping belongs to
The optional id of the test plan this test run is associated with
0
The time this run was closed - all referenced test case data uses this as a historic timestamp
1970-01-01T00:00:00.000Z
The id of the user who closed this test run
0
Whether the test run is closed or not - closed runs can not be modified until reopened
An optional description for this test run (can be a rich text document)
[
{
"id": 0,
"title": "A Descriptive Title",
"is_deleted": true,
"created_at": "1970-01-01T00:00:00.000Z",
"created_by": 0,
"modified_at": "1970-01-01T00:00:00.000Z",
"modified_by": 0,
"deleted_at": "1970-01-01T00:00:00.000Z",
"deleted_by": 0,
"_etag": "string",
"project_id": 0,
"testplan_id": 0,
"closed_at": "1970-01-01T00:00:00.000Z",
"closed_by": 0,
"is_closed": true,
"description": ""
}
]
The request failed because invalid request parameters or data were supplied or access was denied.
- application/json
- Schema
- Example (from schema)
Schema
The error code describing the general error category.
API_INVALID_INPUT_DATA
The HTTP status code.
The actual error message describing the error in more detail.
The request id for following up on specific errors.
{
"code": "API_INVALID_INPUT_DATA",
"status": 0,
"message": "string",
"reqid": "string"
}
The request failed because an error occurred during processing of the request.
- application/json
- Schema
- Example (from schema)
Schema
The error code describing the general error category.
API_INVALID_INPUT_DATA
The HTTP status code.
The actual error message describing the error in more detail.
The request id for following up on specific errors.
{
"code": "API_INVALID_INPUT_DATA",
"status": 0,
"message": "string",
"reqid": "string"
}