The manual workflow must have already been submitted and deployed in the UI, and the Operation Center must be able to find the corresponding manual workflow. Only then can this API be used.
Try it now
Test
RAM authorization
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| ProjectEnv |
string |
Yes |
The environment identifier of the Scheduling Operation Center. PROD indicates the production environment, and DEV indicates the development environment. |
|
| ProjectName |
string |
Yes |
The English name of the workspace to which the manual workflow belongs. |
test_workspace |
| FlowName |
string |
Yes |
The name of the manual workflow. |
test_workflow |
| BizDate |
string |
Yes |
The value of the business date must be less than or equal to the current date minus one day. For example, if today is November 11, 2020, the business date must be 2020-11-10 00:00:00 or an earlier date. The hour, minute, and second fields of the business date must all be set to 00. |
2020-11-11 00:00:00 |
| NodeParameters |
string |
No |
The node parameter information passed when the manual workflow is executed, in JSON format:
|
{"20000123121": "key1=val2 key2=val2", "20000123124": "kkkk=vvvvv aaaa=bbbb"} |
| DagParameters |
string |
No |
The workflow parameters. These parameters are synchronized to all instances of the current DAG. If the scheduling parameters of an internal node reference the workflow parameters in DagParameters, the corresponding parameter values of the node are replaced with the workflow parameters in DagParameters. |
{"kaaaa": "vaaaaa", "kbbbb": "vbbbbb"} |
| IncludeNodeIds |
string |
No |
The list of IDs of the nodes to be run. |
74324,74325 |
| ExcludeNodeIds |
string |
No |
The list of IDs of the nodes that do not need to be run. |
123,456 |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
The returned entity. |
||
| DagId |
integer |
The instance ID of the DAG generated when the manual workflow runs. You can use this DagId together with the relevant API to query the details and status of the internal node instances of this manual workflow run. |
700000123123141 |
| RequestId |
string |
The unique ID of the request. |
AASFDFSDFG-DFSDF-DFSDFD-SDFSDF |
Examples
Success response
JSON format
{
"DagId": 700000123123141,
"RequestId": "AASFDFSDFG-DFSDF-DFSDFD-SDFSDF"
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.