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"
]
}