Skip to content

Flow API

Flows were previously called Apps. Both terms may appear in endpoints during transition. This page covers client execution endpoints.

Execute Flow (Client API)

Execute a specific Flow identified by its ID. The Flow processes provided inputs and returns outputs defined in the Final step.

Request

POST /v1/client/flow/:_id/execute

Request Body

json
{
  "inputs": {
    // Flow inputs
  }
}

Response

json
{
  // Flow outputs as defined in the Final step
}

Built with VitePress