Waiting for engine...
Skip to main content

deployedApiTestProgress

Updates the test status of API to IN_PROGRESS to indicate the test has been triggered in the testing tool.

Input Parameters:

  • deployedApiId: ID of the deployed API to update test status.

Response:

  • Returns the DeployedApi object with updated test status and deployment details.

Example Request:

mutation {
deployedApiTestProgress(deployedApiId: "<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx>") {
id,
component {
id,
name,
type,
version,
definition,
folderLocation,
deleted,
latestVersion
},
metadata {
title,
version,
description,
apiProxyServerUrl,
apiPackagedComponentVersion,
componentType
},
authSource {
id,
name,
description
},
environment {
id,
name,
publishedName,
classification
},
endpoints {
type,
basePath,
contextPath,
defaultContextPath
},
keylessPlan {
id,
name,
description,
status,
maxMessageSize,
rateLimit,
rateLimitPeriod,
quotaLimit,
quotaLimitPeriod,
quotaLimitTimezone,
applicationCount
},
plans {
id,
name,
description,
status,
maxMessageSize,
rateLimit,
rateLimitPeriod,
quotaLimit,
quotaLimitPeriod,
quotaLimitTimezone,
applicationCount
},
executionSettings {
concurrency,
retries,
retryCases,
connectTimeout,
executionTimeout,
subscriptionCacheSize
},
requiredRoles {
id,
name,
description
},
customPolicies {
path,
when
},
subscriptions {
apiKeyId,
status,
startDate,
expirationDate,
approvalDate,
consumerMessage,
producerMessage,
generatedBy,
generatedDate,
statusChangedBy,
statusChangedDate
},
planMappings {
id
},
version,
documentation {
oas,
wsdl
},
cors {
origins,
methods,
headers,
allowCredentials,
maxAge,
exposeHeaders,
enableCors,
runPolicies
},
certificateAuthentication {
certificateAuthRequired
},
customPolicyPathMode,
branch {
branchName,
branchDescription,
isDeleted,
isDefaultBranch
}
}
}

deployedApiTestProgress(
deployedApiId: ID!
): DeployedApi!

Arguments

deployedApiTestProgress.deployedApiId ● ID! non-null scalar miscellaneous

Type

DeployedApi object platform

Represents an API deployed to a specific environment and the various information associated with it (Component, ApiComponentMetadata, Environment, DeployedApiEndpoint, Keyless Plan, number of plans associated with Deployed Api, Execution Settings and required roles)

On this Page