cURL
curl --request POST \ --url https://app.galaxy.ai/api/v1/workflows/quick-create \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>", "requestFields": [ { "name": "<string>", "type": "text", "value": "<unknown>" } ] } '
{ "id": "<string>", "name": "<string>", "description": "<string>", "thumbnailUrl": "<string>", "nodes": [ { "id": "<string>", "type": "<string>", "position": { "x": 123, "y": 123 }, "data": "<unknown>" } ], "edges": [ { "id": "<string>", "source": "<string>", "target": "<string>", "sourceHandle": "<string>", "targetHandle": "<string>" } ], "updatedAt": "<string>", "type": "<string>" }
User-friendly workflow creation. Just provide a name and optional request fields — Request and Response scaffold nodes are created automatically.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Workflow name
1 - 120
Workflow description
5000
Input fields for the Request node. Each field becomes a user-fillable input when the workflow runs.
50
Show child attributes
Successful response