FruxonDocs
ApiWorkflows

Gets a Workflow through its canonical owning Application.

Returns the Workflow's top-level metadata (display name, description, enabled flag, current deployed revision, deletion state) — the live deployed configuration, not the draft. Use the revisions endpoints to inspect a specific revision's flow graph. The lookup is scoped to the Application in the route, so a Workflow owned by a different Application returns 404.

GET
/v1/tenants/{tenant}/networks/{network}/workflows/{workflow}
AuthorizationBearer <token>

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

In: header

Path Parameters

network*string

Id of the owning Application.

Formatuuid
workflow*string

Id of the Workflow to read.

tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/networks/497f6eca-6276-4993-bfeb-53cbbbba6f08/workflows/string"
{
  "id": "string",
  "displayName": "string",
  "description": "string",
  "avatarFileId": "string",
  "tags": [
    "string"
  ],
  "enabled": false,
  "currentRevision": 0,
  "createdAt": 0,
  "modifiedAt": 0,
  "networkId": "00000000-0000-0000-0000-000000000000",
  "deletedAt": 0,
  "summary": {
    "executableStepCount": 0,
    "referencedAgentCount": 0,
    "connections": {
      "collection": 0,
      "schedule": 0,
      "event": 0,
      "webhook": 0,
      "total": 0
    },
    "latestRun": {
      "startedAt": 0,
      "endedAt": 0,
      "status": "IN_PROGRESS"
    },
    "hasRecentFailure": false
  }
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}