FruxonDocs
ApiWorkflows

Creates a new Workflow.

Provisions an empty Workflow ready to compose standalone Agents by reference. The API path defines the resource kind; callers do not provide flow scaffolding or an internal type flag.

POST
/v1/tenants/{tenant}/workflows
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

tenant*string

The tenant identifier

Workflow metadata.

id*string
Length1 <= length
displayName?string|null
description?string|null
avatarFileId?string|null
tags?|null
[key: string]?never

Response Body

curl -X POST "https://api.fruxon.com/v1/tenants/string/workflows" \  -H "Content-Type: application/json" \  -d '{    "id": "string"  }'
{
  "id": "string",
  "displayName": "string",
  "description": "string",
  "avatarFileId": "string",
  "tags": [
    "string"
  ],
  "enabled": false,
  "currentRevision": 0,
  "createdAt": 0,
  "modifiedAt": 0
}
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}
Empty
Empty