Skip to main content

Low-Code Agentic Flows

In this video we add two agentic flows to existing low-code Dropbox and Slack integrations, giving our built-in chat bot the ability to fetch files from our customers' Dropbox accounts, and send notifications to our customers' Slack workspaces.

Here is the schema for the two flows we built in the video:

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "search-fetch-dropbox-files",
"$comment": "Search for files in Dropbox by file name. Returns list of matching files and a presigned URL where the file can be fetched.",
"type": "object",
"properties": {
"filename": {
"description": "Partial or full name of a file",
"type": "string"
},
"folder": {
"description": "Subfolder to search for the file",
"type": "string"
}
},
"required": ["filename"]
}

For additional information on building agentic flows in low-code, see Low-Code Agentic Flows.