curl --request POST \
--url https://api.kaizenautomation.com/workflows/update \
--header 'Content-Type: application/json' \
--data '{
"workflowId": "<string>",
"name": "Updated Workflow Name",
"isAuthenticationRequired": false
}'
{
"id": "<string>",
"name": "<string>",
"isAuthenticationRequired": true,
"message": "Workflow updated successfully"
}
Updates workflow fields like name and authentication requirement
curl --request POST \
--url https://api.kaizenautomation.com/workflows/update \
--header 'Content-Type: application/json' \
--data '{
"workflowId": "<string>",
"name": "Updated Workflow Name",
"isAuthenticationRequired": false
}'
{
"id": "<string>",
"name": "<string>",
"isAuthenticationRequired": true,
"message": "Workflow updated successfully"
}
Workflow updated successfully
The response is of type object
.