CreateTestRun

Creates a new test run based on the provided test run model and inserts data into the database.

post
Authorizations
Body
collectionIdinteger · int32Required
descriptionstring · min: 1Required
rowLevelCollectionIdinteger · int32[]Required
testRunNamestring · min: 1Required
testRunTypestring · min: 1Required
loadTestingCountinteger · int32[]Required
statusstring[] | nullableOptional
createdBystring · min: 1Required
updatedBystring | nullableOptional
createdDatestring · min: 1Required
lastUpdatedDatestring | nullableOptional
lastExecutedDatestring | nullableOptional
enableVisualsboolean[] | nullableOptional
totalTestingLoadCountinteger · int32Required
Responses
200
Success: Test run created successfully with a new Test Run Id.
post
POST /TestRun/CreateTestRun HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 308

{
  "collectionId": 1,
  "description": "text",
  "rowLevelCollectionId": [
    1
  ],
  "testRunName": "text",
  "testRunType": "text",
  "loadTestingCount": [
    1
  ],
  "status": [
    "text"
  ],
  "createdBy": "text",
  "updatedBy": "text",
  "createdDate": "text",
  "lastUpdatedDate": "text",
  "lastExecutedDate": "text",
  "enableVisuals": [
    true
  ],
  "totalTestingLoadCount": 1
}

No content