Create Flow
Flows
Create Flow
Creates a new flow from the provided schema. If a flow with the same name already exists, the existing flow is returned.
For more information, see https://docs.prefect.io/v3/concepts/flows.
POST
Create Flow
Documentation Index
Fetch the complete documentation index at: https://docs.prefect.io/llms.txt
Use this file to discover all available pages before exploring further.
Headers
Body
application/json
Data used by the Prefect REST API to create a flow.
Response
Successful Response
An ORM representation of flow data.
The name of the flow
Pattern:
^[^/%&><]+$Example:
"my-flow"
A list of flow tags
Example:
["tag-1", "tag-2"]A dictionary of key-value labels. Values can be strings, numbers, or booleans.
Example:
{ "key": "value1", "key2": 42 }