FruxonDocs
ApiWorkflows

Gets a Workflow by id.

Returns the Workflow's top-level metadata (display name, description, enabled flag, current deployed revision, deletion state). The response reflects the live deployed configuration, not the draft — use the revisions endpoints to inspect a specific revision's flow graph. Returns 404 if the Workflow does not exist or has been purged.

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

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

In: header

Path Parameters

workflow*string

The unique identifier of the Workflow.

tenant*string

The tenant identifier

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/workflows/string"
{
  "id": "string",
  "displayName": "string",
  "description": "string",
  "avatarFileId": "string",
  "tags": [
    "string"
  ],
  "enabled": false,
  "currentRevision": 0,
  "createdAt": 0,
  "modifiedAt": 0,
  "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
}