create_result_bulk
Bulk create test run results for Qase test management platform using this tool, enabling efficient management of multiple outcomes in a single operation.
Instructions
Create multiple test run results in bulk
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | ||
id | Yes | ||
results | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"type": "string"
},
"id": {
"type": "number"
},
"results": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"code",
"id",
"results"
],
"type": "object"
}