For the complete documentation index, see llms.txt. This page is also available as Markdown.

Flow Folders

List Flow Folders

get

Return a flat list of all folders for the tenant, ordered by position then name. The frontend assembles the folder tree from parent_id references.

Authorizations
AuthorizationstringRequired

API key passed in the Authorization header. Format: <api-key>

Responses
200

Successful response

application/json
objectOptional
get
/api/v1/flow-folders

Create Flow Folder

post

Create a new flow folder.

Authorizations
AuthorizationstringRequired

API key passed in the Authorization header. Format: <api-key>

Body
namestring · max: 255Required

The folder name.

parent_idinteger · nullableOptional

The ID of the parent folder. Omit or set to null for a root-level folder.

positioninteger · nullableOptional

Display order position within the parent.

Responses
post
/api/v1/flow-folders

Update Flow Folder

put

Update an existing flow folder. All fields are optional — only provided fields are updated.

Authorizations
AuthorizationstringRequired

API key passed in the Authorization header. Format: <api-key>

Path parameters
flow_folderintegerRequired

The unique identifier of the flow folder.

Body
namestring · max: 255Optional

The folder name.

parent_idinteger · nullableOptional

The ID of the parent folder. Set to null to move to the root level.

positioninteger · nullableOptional

Display order position within the parent.

Responses
200

Folder updated

application/json
objectOptional
put
/api/v1/flow-folders/{flow_folder}

Delete Flow Folder

delete

Delete a flow folder. If recursive is true, all descendant folders are also deleted and any flows inside them are detached (their folder assignment is cleared).

Authorizations
AuthorizationstringRequired

API key passed in the Authorization header. Format: <api-key>

Path parameters
flow_folderintegerRequired

The unique identifier of the flow folder.

Body
recursivebooleanOptional

If true, deletes all descendant folders and detaches their flows.

Responses
200

Folder deleted

application/json
objectOptional
delete
/api/v1/flow-folders/{flow_folder}

Last updated

Was this helpful?