Waiting for engine...
Skip to main content

deployedApiTestExecutionCreate

Creates test execution results.

Input Parameters:

  • input: Test execution configuration including deployed API ID, test metrics, and result details.

Response:

  • Returns the created DeployedApiTestExecution object with complete test execution information.

Example Request:

mutation {
deployedApiTestExecutionCreate(input: {
deployedApiId: "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>",
version: "1.2.3",
executionDate: "2024-01-15T10:30:00",
executionDuration: 45000,
iterations: 100,
testsPassed: 85,
testsFailed: 12,
testsSkipped: 3,
resultUrl: "https://testing-tool.example.com/results/test-run-12345",
username: "test.engineer",
status: PASSED
}) {
id,
deployedApi {
id,
version
},
triggerDate,
executionDate,
executionDuration,
iterations,
testsPassed,
testsFailed,
testsSkipped,
resultUrl,
username,
status
}
}

deployedApiTestExecutionCreate(
input: DeployedApiTestExecutionCreateInput!
): DeployedApiTestExecution!

Arguments

deployedApiTestExecutionCreate.input ● DeployedApiTestExecutionCreateInput! non-null input platform

Type

DeployedApiTestExecution object platform

Represents the results of API testing execution including test metrics and timing information.

On this Page