Create a new Workflow
POST/api/v1/workflows
Create a new Workflow
Request
- application/x-www-form-urlencoded
Body
cluster string
config object
description string
inputSchema integer[]
name string
outputSchema integer[]
runAsync boolean
sync boolean
variables
object,null
property name* string
Responses
- 201
- 400
- 500
Created
- application/json
- Schema
- Example (from schema)
Schema
buildDuration integer
buildLogs string
buildStatus string
cluster string
config object
createdAt date-time
description string
error string
id string
inputSchema string
name string
outputSchema string
runAsync boolean
tags string[]
url string
variables
object
property name* string
version integer
{
"buildDuration": 0,
"buildLogs": "string",
"buildStatus": "string",
"cluster": "string",
"config": {},
"createdAt": "2024-07-29T15:51:28.071Z",
"description": "string",
"error": "string",
"id": "string",
"inputSchema": "string",
"name": "string",
"outputSchema": "string",
"runAsync": true,
"url": "string",
"variables": {},
"version": 0
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
{
"error": "string"
}
Loading...