Domain name for API request: omics.tencentcloudapi.com.
This API is used to query job details.
A maximum of 20 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common Params. The value used for this API: GetRunCalls. |
Version | Yes | String | Common Params. The value used for this API: 2022-11-28. |
Region | No | String | Common Params. This parameter is not required for this API. |
RunUuid | Yes | String | Run UUID |
Path | Yes | String | Job path |
ProjectId | No | String | Project ID (If you leave it blank, the default item in the specified region will be used.) |
Parameter Name | Type | Description |
---|---|---|
Calls | Array of RunMetadata | Job details |
RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
This example shows you how to query job details.
POST / HTTP/1.1
Host: omics.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: GetRunCalls
<Common request parameters>
{
"RunUuid": "84232c68-a016-4668-b2e3-168a175d6f29",
"ProjectId": "prj-peaceful-pink-bird-631828",
"Path": "/"
}
{
"Response": {
"Calls": [
{
"CallCached": false,
"CallName": "sub_workflow",
"Command": "",
"EndTime": "2022-10-31T14:11:18+08:00",
"ErrorMessage": "{}",
"Input": "{\"base64_in\": \"/cfs-10-8-16-3/omics/file_cache/gene-1252949230/samples.csv\"}",
"JobId": "",
"Output": "{\"sub_workflow.sub_output\": \"/cfs-10-8-16-3/cluster/omics-a6z22tn9/execution/main_workflow/84232c68-a016-4668-b2e3-168a175d6f29/call-sub_workflow/sub_workflow/ed4199e3-3513-444e-9090-3413fd6d3e44/call-base64/base64/87ab7713-6f0f-4452-8da9-fbaa40f7e567/call-encode_base64/execution/base64/samples.csv.base64\"}",
"ParentId": "84232c68-a016-4668-b2e3-168a175d6f29",
"PostProcess": false,
"Preprocess": true,
"RunId": "ed4199e3-3513-444e-9090-3413fd6d3e44",
"RunType": "Workflow",
"Runtime": "{}",
"ScatterIndex": "",
"StartTime": "2022-10-31T14:10:15+08:00",
"Status": "COMPLETE",
"Stderr": "",
"Stdout": "",
"SubmitTime": null,
"Meta": ""
}
],
"RequestId": "e954d872-2955-4592-901e-38cb6678b88c"
}
}
This example shows you how to query sub-job details. You need to specify the Path as the RunId whose RunType is Workflow or Scatter project in the previous level of GetRunCalls.
POST / HTTP/1.1
Host: omics.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: GetRunCalls
<Common request parameters>
{
"RunUuid": "84232c68-a016-4668-b2e3-168a175d6f29",
"ProjectId": "prj-peaceful-pink-bird-631828",
"Path": "/ed4199e3-3513-444e-9090-3413fd6d3e44"
}
{
"Response": {
"Calls": [
{
"CallCached": false,
"CallName": "base64",
"Command": "",
"EndTime": "2022-10-31T14:11:15+08:00",
"ErrorMessage": "{}",
"Input": "{\"input_file\": \"/cfs-10-8-16-3/omics/file_cache/gene-1252949230/samples.csv\"}",
"JobId": "",
"Output": "{\"base64.output_file\": \"/cfs-10-8-16-3/cluster/omics-a6z22tn9/execution/main_workflow/84232c68-a016-4668-b2e3-168a175d6f29/call-sub_workflow/sub_workflow/ed4199e3-3513-444e-9090-3413fd6d3e44/call-base64/base64/87ab7713-6f0f-4452-8da9-fbaa40f7e567/call-encode_base64/execution/base64/samples.csv.base64\"}",
"ParentId": "ed4199e3-3513-444e-9090-3413fd6d3e44",
"PostProcess": false,
"Preprocess": true,
"RunId": "87ab7713-6f0f-4452-8da9-fbaa40f7e567",
"RunType": "Workflow",
"Runtime": "{}",
"ScatterIndex": "",
"StartTime": "2022-10-31T14:10:17+08:00",
"Status": "COMPLETE",
"Stderr": "",
"Stdout": "",
"SubmitTime": null,
"Meta": ""
}
],
"RequestId": "35431cd8-6913-4c28-808f-290268cb9813"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
AuthFailure | CAM signature/authentication error. |
InternalError | Internal error. |
InvalidParameter | Parameter error. |
InvalidParameterValue | Parameter value error. |
OperationDenied | Operation rejected. |
ResourceNotFound | The resource does not exist. |
ResourceNotFound.EnvironmentNotExist | The environment does not exist. |
ResourceNotFound.RunNotExist | The run does not exist. |
Was this page helpful?