Body
-
name of the Dataflow
-
description of the Dataflow
-
1 is for active, 0 is for inactive. By default, status is set to 1. In case of defective dataflow, it should be set to 0
-
true/false
-
The email or email addresses to send error notifications to. Multiple emails must be separated by a comma.
-
Indicates if the error email notifications will be enabled.
-
the updated Dataflow Id
PUT
/dataflows/{dataflowId}
curl \
--request PUT 'https://dataflownode.zerionsoftware.com/zcrypt/v1.0/dataflows/{dataflowId}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"name": "new_dataflow",
"description" : "dataflow description"
"status" : 1,
"autocleaniFormData" false
}'
Request example
{
"name": "new_dataflow",
"description" : "dataflow description"
"status" : 1,
"autocleaniFormData" false
}
Response examples (200)
{
"_id": "5743cbbccd7b08254a5a6ec0"
}