Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 1.03 KB

File metadata and controls

49 lines (39 loc) · 1.03 KB
layout toc title slug
docs-api
toc-api-admin.html
GET /flow/:id
url label
/docs/api/admin
admin
url label
/docs/api/admin/methods
methods
get flow

Get an individual flow configuration. A flow is represented as a tab within the editor.

Requires permission: flows.read

Headers

Header Value
Authorization Bearer [token] - if authentication is enabled

Arguments

Path Component Description
id The id of the flow.

If id is set to global, the global configuration nodes and subflow definitions are returned.

Response

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 %}