Skip to main content
GET
/
v1
/
system-workflows
/
{id}
Get system workflow
curl --request GET \
  --url https://app.galaxy.ai/api/v1/system-workflows/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "slug": "<string>",
  "thumbnailUrl": "<string>",
  "nodeType": "<string>",
  "nodes": [
    "<unknown>"
  ],
  "edges": [
    "<unknown>"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required
Minimum string length: 1

Response

Successful response

id
string
required
name
string
required
description
string | null
required
slug
string | null
required
thumbnailUrl
string | null
required
nodeType
string | null
required
nodes
any[]
required
edges
any[]
required