flows
Update an existing flow
The id is used to match the existing Flow that will be updated.
patch/flows/{id}
Path parameters
idstring string required
ID of flow to update
Request body
Example request
{
"name": "My Flow",
"description": "My Flow"
}Response
The updated Flow.
Example response
{
"data": {
"name": "My Flow",
"description": "My Flow"
}
}