Update a workflow
Headers
-
Content-Type string
-
Accept string
PUT
/api/v1/workflow/{uuid}
curl \
-X PUT https://api.plannrcrm.com/api/v1/workflow/uuid \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"name":"Pension Review"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"name": "Pension Review"
}
Response examples (200)
{
"name": "Pension Transfer",
"type": "simple",
"uuid": "fb0053ee-a769-4185-b473-57782ed91796",
"created_at": "2025-01-20T23:10:35+00:00",
"updated_at": "2025-01-20T23:10:35+00:00",
"tasks_count": 5
}