Body
-
name of the Dataflow
-
description of the Dataflow
-
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.
-
owner of the Dataflow
-
id of the Entity that has access to the Dataflow
-
Access Level
-
Creation date of the Dataflow
-
Modified date of the Dataflow
-
name of entity that created the Dataflow
-
name of entity last modified the Dataflow
-
id of the Dataflow
POST
/dataflows
curl \
--request POST 'https://dataflownode.zerionsoftware.com/zcrypt/v1.0/dataflows' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"name": "string",
"description": "string",
"errorNotificationEmail": "string",
"enableErrorEmailNotifications": "string",
"owningEntity": "string",
"trustedEntities": [],
"entity": "string",
"accessLevel": "string",
"CREATED_DATE": "string",
"MODIFIED_DATE": "string",
"CREATED_BY": "string",
"MODIFIED_BY": "string",
"_id": "string"
}'
Request examples
{
"name": "string",
"description": "string",
"errorNotificationEmail": "string",
"enableErrorEmailNotifications": "string",
"owningEntity": "string",
"trustedEntities": [],
"entity": "string",
"accessLevel": "string",
"CREATED_DATE": "string",
"MODIFIED_DATE": "string",
"CREATED_BY": "string",
"MODIFIED_BY": "string",
"_id": "string"
}
Response examples (200)
{
"name": "tes55",
"description": "test 5",
"owningEntity": "demo_5",
"trustedEntities": [
{
"entity": "5684058f159fffbe29ff9913",
"accessLevel": "READWRITE"
}
],
"CREATED_DATE": "2016-04-24T03:14:48.797Z",
"MODIFIED_DATE": "2016-04-24T03:14:48.797Z",
"CREATED_BY": "5684058f159fffbe29ff9912",
"MODIFIED_BY": "5684058f159fffbe29ff9912",
"_id": "571c3a28d5ae983a0060b57f"
}