layout | toc | title | slug | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
docs-api |
toc-api-admin.html |
GET /flow/:id |
|
Get an individual flow configuration. A flow is represented as a tab within the editor.
Requires permission: flows.read
Header | Value |
---|---|
Authorization |
Bearer [token] - if authentication is enabled |
Path Component | Description |
---|---|
id |
The id of the flow. |
If id
is set to global
, the global configuration nodes and subflow definitions
are returned.
Status Code | Reason | Response |
---|---|---|
200 |
Success | A flow object. See example response body |
401 |
Not authorized | none |
404 |
Not found | none |
{% highlight json %} { "id": "91ad451.f6e52b8", "label": "Sheet 1", "nodes": [ ], "configs": [ ], "subflows": [ ] } {% endhighlight %}