CreateTestRunExecution

Creates a new test run execution entry in the database based on the provided details.

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 entries were successfully inserted into the database.
post
POST /TestRunExecutionDetails/CreateTestRunExecution 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