CreateTestRunExecutionNonBulk
Creates multiple test run execution records in the database by inserting each record individually.
post
Authorizations
Body
testRunIdinteger · int32Required
rowLevelCollectionIdinteger · int32[]Required
executedBystring · min: 1Required
isExecutedinteger · int32Required
executedAtstring | nullableOptional
loadTestingCountinteger · int32[] | nullableOptional
statusstring | nullableOptional
statusMessagestring | nullableOptional
executionTypestring | nullableOptional
Responses
200
Success: The test run execution records were successfully created.
400
Bad Request: An error occurred while processing the request, such as invalid data or missing fields.
500
Internal Server Error: An error occurred while generating the TestRunExecution Id or performing the insert operations.
post
POST /TestRunExecutionDetails/CreateTestRunExecutionNonBulk HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 182
{
"testRunId": 1,
"rowLevelCollectionId": [
1
],
"executedBy": "text",
"isExecuted": 1,
"executedAt": "text",
"loadTestingCount": [
1
],
"status": "text",
"statusMessage": "text",
"executionType": "text"
}
No content