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

namestring required
descriptionstring
type'ordinary' | 'realtime' required

Flow type

Example request

{
  "name": "My Flow",
  "description": "My Flow"
}

Response

The updated Flow.

metaobject

Example response

{
  "data": {
    "name": "My Flow",
    "description": "My Flow"
  }
}

Changes