Activepieces · Schema

CreateFlowRequest

Request body for creating a flow

AutomationNo-CodeOpen SourceWorkflowAI AgentsMCP

Properties

Name Type Description
displayName string Flow display name
projectId string Project ID to create flow in
folderId string Optional folder ID
templateId string Optional template to base the flow on
metadata object Custom metadata
View JSON Schema on GitHub

JSON Schema

activepieces-create-flow-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/activepieces/refs/heads/main/json-schema/activepieces-create-flow-request-schema.json",
  "title": "CreateFlowRequest",
  "description": "Request body for creating a flow",
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "Flow display name",
      "example": "My New Flow"
    },
    "projectId": {
      "type": "string",
      "description": "Project ID to create flow in",
      "example": "project-xyz789"
    },
    "folderId": {
      "type": "string",
      "description": "Optional folder ID"
    },
    "templateId": {
      "type": "string",
      "description": "Optional template to base the flow on"
    },
    "metadata": {
      "type": "object",
      "description": "Custom metadata"
    }
  },
  "required": [
    "displayName",
    "projectId"
  ]
}