Save Flow¶
Save the information of the current workflow.
Prerequisite¶
The user must be the owner of the workflow.
Request Format¶
POST https://{apigw-address}/dataflow-batch-service/v2.0/flows
Request Parameters (URI)¶
Name  | 
Location (Path/Query)  | 
Mandatory/Optional  | 
Data Type  | 
Description  | 
|---|---|---|---|---|
userId  | 
Query  | 
Mandatory  | 
String  | 
The user ID. How to get userId>>  | 
orgId  | 
Query  | 
Mandatory  | 
String  | 
The organization ID which the user belongs to. How to get orgId>>  | 
action  | 
Query  | 
Mandatory  | 
String  | 
Fixed value: save  | 
Request Parameters (Body)¶
Name  | 
Mandatory/Optional  | 
Data Type  | 
Description  | 
|---|---|---|---|
id  | 
Mandatory  | 
Integer  | 
The workflow ID.  | 
type  | 
Mandatory  | 
Integer  | 
The scheduling type of the workflow. 
  | 
name  | 
Mandatory  | 
String  | 
The workflow name.  | 
freq  | 
Mandatory  | 
String  | 
Use the CronTab syntax to specify the time to start the workflow in a scheduling cycle (specify a 7-character CronTab expression). For more information about CronTab, see the Cron Expression Explainer  | 
cycle  | 
Mandatory  | 
String  | 
The scheduling cycle. 
  | 
alertMode  | 
Mandatory  | 
Integer  | 
The alert mode. 
  | 
doAs  | 
Optional  | 
String  | 
The big data account of the organization to which the workflow belongs.  | 
owners  | 
Mandatory  | 
String  | 
The username of the owners of the workflow. The semicolon (;) is used to separate each owner, for example, owners=”userNameA;userNameB”.  | 
visitors  | 
Mandatory  | 
String  | 
The username of the vistors who can access the workflow. The semicolon (;) is used to separate each visitor, for example, visitors=”userNameA;userNameB”.  | 
startTime  | 
Optional  | 
String  | 
The effective date of the workflow.  | 
active  | 
Mandatory  | 
Integer  | 
The scheduling status of the workflow. 
  | 
parameters  | 
Optional  | 
Map  | 
The parameters that are configured for the workflow to dynamically adapt to the environment changes (in the format of key=value).  | 
desc  | 
Optional  | 
String  | 
The workflow description.  | 
queue  | 
Optional  | 
String  | 
The computing queue.  | 
tasks  | 
Mandatory  | 
Array of TaskSimpleInfo Structs  | 
The list of all task nodes in the workflow, with each element representing a TaskSimpleInfo Struct, which contains the basic information of a task node.  | 
flows  | 
Mandatory  | 
Array of FlowSimpleInfo Structs  | 
The list of workflows that have dependency relations with the workflow. For more information, see FlowSimpleInfo Struct  | 
relations  | 
Mandatory  | 
Array of Relation Structs  | 
The list of relations between tasks in the workflow, with each element representing the upstream and downstream dependency. For more information, see Relation Struct  | 
Response Parameters¶
Name  | 
Data Type  | 
Description  | 
|---|---|---|
data  | 
FlowID Struct  | 
The ID of the workflow that is saved.  | 
Error Code¶
Code  | 
Message  | 
Description  | 
|---|---|---|
62102  | 
graph not found  | 
The format of the parameter is invalid.  | 
62105  | 
Your account has been locked  | 
The user account is locked. Please contact the administrator.  | 
For other error codes, see Common Error Codes.
Samples¶
Request Sample¶
url: https://{apigw-address}/dataflow-batch-service/v2.0/flows?action=save&userId=yourUserId&orgId=yourOrgId
method: POST
requestBody:
{
    "id":"2515",
    "type":1,
    "name":"fpostm",
    "freq":"0 0 0 * * ? *",
    "cycle":"D",
    "alertMode":3,
    "doAs":"yourDoAs",
    "parameters":"[]",
    "owners":";yourOwners;",
    "desc":"e",
    "startTime":"2019-07-23",
    "visitors":";yourVisitors;",
    "active":0,
    "queue":"",
    "tasks":[
        {
            "taskName":"tass",
            "x":0.0132,
            "y":0.008100000381469727,
            "taskId":"104575",
            "nodeId":"t_104575"
        },
        {
            "taskName":"gg",
            "x":0.0084,
            "y":0.014199999237060546,
            "taskId":"104590",
            "nodeId":"t_104590"
        },
        {
            "taskName":"dff",
            "x":0.0352,"y":0.008300002288818359,
            "taskId":"104901","nodeId":"t_104901"
        }
            ],
    "flows":
            [
        {
            "isVirtual":false,
            "flowId":"2788",
            "x":0.0186,
            "flowName":"jin",
            "y":0.0016999999046325683,
            "nodeId":"f_2788"},
            {"flowId":"2819",
            "flowName":"104891(tass)",
            "nodeId":"f_2819",
            "isVirtual":true,
            "x":0.0125,
            "y":0.023800001525878908}],
    "relations":
    [
        {
            "cycleGap":"D0",
            "source":"t_104575",
            "rerun":true,
            "target":"t_104590"
            },
        {
            "cycleGap":"D0",
            "source":"f_2788",
            "rerun":false,
            "target":"t_104575"
            }
    ]
}
Return Sample¶
{
  "status": 0,
  "msg": "Success",
  "data": {
    "flowId": 2841
  }
}