FruxonDocs
ApiWorkflows

Lists the Workflows canonically owned by an Application.

Returns only the Workflows whose canonical owner is the Application in the route — unlike `GET /v1/tenants/{tenant}/workflows`, which spans every Application the caller can reach. The response is cursor-paginated and includes soft-deleted Workflows only while they are still within the deletion grace period. The caller needs at least the Viewer role on the Application; a missing or inaccessible Application returns 404.

GET
/v1/tenants/{tenant}/networks/{network}/workflows
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
tenant*string

The tenant identifier

Query Parameters

PageSize?integer

The maximum number of items to return per page

Formatint32
PageToken.Skip?integer
Formatint32
PageToken.Cursor?string

Opaque cursor token from an external system (e.g. RAG API). When set, M:Fruxon.Common.Collections.PageToken.AsString returns this value directly instead of encoding Fruxon.Common.Collections.PageToken.Skip.

search?string

Optional case-insensitive substring filter matched against the Workflow id, display name, and description. Omit for the unfiltered list.

tags?array<string>

Optional tag filter (repeatable). Workflows carrying any of the supplied tags match.

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/networks/497f6eca-6276-4993-bfeb-53cbbbba6f08/workflows"
{
  "items": [
    {
      "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": null,
        "hasRecentFailure": false
      }
    }
  ],
  "nextPageToken": "string",
  "totalCount": 0
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}