Flows
Create Flow
Gracefully creates a new flow from the provided schema. If a flow with the same name already exists, the existing flow is returned.
post/api/flows/
Headers
x-prefect-api-versionstring
Request body
Example request
{
"name": "my-flow",
"tags": [
"tag-1",
"tag-2"
]
}Response
Successful Response
Example response
{
"name": "my-flow",
"tags": [
"tag-1",
"tag-2"
]
}Changes
Changed in 1 of the 50 revisions of this API.1
- ▲
the request property
namebecame requiredrequest-property-became-required
- ▲