Update an existing workflow given its UUID.
patch/transform/v1/workflows/{id}
Path parameters
idstring required
UUID of the workflow to update.
Example:186522a6-e697-4e34-8498-eee961bcb845
UUID of the workflow to update.
Request body
Example request
{
"rescue": [
{
"action": "email.send",
"id": "186522a6-e697-4e34-8498-eee961bcb845",
"next": [
{
"step_id": "186522a6-e697-4e34-8498-eee961bcb845"
}
]
}
],
"steps": [
{
"action": "email.send",
"id": "186522a6-e697-4e34-8498-eee961bcb845",
"next": [
{
"step_id": "186522a6-e697-4e34-8498-eee961bcb845"
}
]
}
]
}Response
OK
Example response
{
"id": "186522a6-e697-4e34-8498-eee961bcb845",
"rescue": [
{
"action": "email.send",
"id": "186522a6-e697-4e34-8498-eee961bcb845",
"next": [
{
"step_id": "186522a6-e697-4e34-8498-eee961bcb845"
}
]
}
],
"steps": [
{
"action": "email.send",
"id": "186522a6-e697-4e34-8498-eee961bcb845",
"next": [
{
"step_id": "186522a6-e697-4e34-8498-eee961bcb845"
}
]
}
]
}