flows

Add a new flow to the repository

The new Flow will automatically be associated with the current user in the owners array, allowing editing and viewing by this user irrespective of tenancies.

post/flows

Request body

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

Flow type

Example request

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

Response

The created Flow.

metaobject

Example response

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

Changes