Share a Dataflow to multiple Users by the owner
POST
/sharedDataflowToGroup/{dataflowId}
curl \
--request POST 'https://dataflownode.zerionsoftware.com/zcrypt/v1.0/sharedDataflowToGroup/{dataflowId}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '[
{
"name": "john_qatest",
"_id": "5684058f159fffbe29ff9912",
"expiredTime": 24
},
{
"name": "john2_qatest",
"_id": "5684058f159fffbe29ff9323",
"expiredTime": 24
}
]'
Request example
[
{
"name": "john_qatest",
"_id": "5684058f159fffbe29ff9912",
"expiredTime": 24
},
{
"name": "john2_qatest",
"_id": "5684058f159fffbe29ff9323",
"expiredTime": 24
}
]
Response examples (200)
{
"success": 1
}