All Products
Search
Document Center

:RunSmokeTest

更新時間:May 16, 2024

Creates a workflow to perform smoke testing.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.

Request parameters

Parameter

Type

Required

Example

Description

Action

String

Yes

RunSmokeTest

The operation that you want to perform. Set the value to RunSmokeTest.

ProjectEnv

String

Yes

PROD

The environment of the workspace. Valid values: PROD and DEV. The value PROD indicates the production environment, and the value DEV indicates the development environment.

A workspace in basic mode does not have a development environment. For more information, see Differences between workspaces in basic mode and workspaces in standard mode.

Bizdate

String

Yes

2020-05-26 00:00:00

The data timestamp.

Name

String

Yes

xm_create_test

The name of the workflow.

NodeId

Long

Yes

1234

The node ID You can call the ListNodes operation to query the ID.

NodeParams

String

No

bizdate=$bizdate tbods=$tbods

The parameters related to the node. Set this parameter to a JSON string. A key in the string indicates a parameter, and a value in the string indicates the value of the related parameter.

Response parameters

Parameter

Type

Example

Description

HttpStatusCode

Integer

200

The HTTP status code.

Data

Long

3333333

The workflow ID.

ErrorMessage

String

The connection does not exist.

The error message.

RequestId

String

E6F0DBDD-5AD****

The request ID.

ErrorCode

String

Invalid.Tenant.ConnectionNotExists

The error code.

Success

Boolean

false

Indicates whether the request was successful.

Examples

Sample requests

http(s)://[Endpoint]/?Action=RunSmokeTest
&ProjectEnv=PROD
&Bizdate=2020-05-26 00:00:00
&Name=xm_create_test
&NodeId=1234
&NodeParams=bizdate=$bizdate tbods=$tbods
&<Common request parameters>

Sample success responses

XML format

HTTP/1.1 200 OK
Content-Type:application/xml

<RunSmokeTestResponse>
    <HttpStatusCode>200</HttpStatusCode>
    <Data>3333333</Data>
    <ErrorMessage>The connection does not exist.</ErrorMessage>
    <RequestId>E6F0DBDD-5AD****</RequestId>
    <ErrorCode>Invalid.Tenant.ConnectionNotExists</ErrorCode>
    <Success>false</Success>
</RunSmokeTestResponse>

JSON format

HTTP/1.1 200 OK
Content-Type:application/json

{
  "HttpStatusCode" : 200,
  "Data" : 3333333,
  "ErrorMessage" : "The connection does not exist.",
  "RequestId" : "E6F0DBDD-5AD****",
  "ErrorCode" : "Invalid.Tenant.ConnectionNotExists",
  "Success" : false
}

Error codes

For a list of error codes, see Service error codes.