Getting Started
API Reference
- GETPing Health
- GETGet Available Models
- POSTRetrieve Chunks
- POSTRetrieve Chunks Grouped
- POSTRetrieve Documents
- POSTBatch Get Documents
- POSTBatch Get Chunks
- POSTQuery Completion
- GETGet Chat History
- GETGet Available Models For Selection
- POSTAgent Query
- GETGet Usage Stats
- GETGet Recent Usage
- POSTGenerate Local Uri
- POSTGenerate Cloud Uri
- DELDelete Cloud App
- GETList Chat Conversations
- PATCHUpdate Chat Title
Documents
Folders
Workflows
model-config
Logs
Graph
Folders
List Folder Workflows
List all workflows associated with a folder.
GET
/
folders
/
{folder_id}
/
workflows
JavaScript
Copy
Ask AI
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const workflows = await client.folders.workflows.list('folder_id');
console.log(workflows);
Copy
Ask AI
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"owner_id": "<string>",
"user_id": "<string>",
"app_id": "<string>",
"steps": [
{
"action_id": "<string>",
"parameters": {}
}
],
"system_metadata": {}
}
]
Headers
Path Parameters
Response
200
application/json
Successful Response
The response is of type Workflow · object[]
.
Was this page helpful?
JavaScript
Copy
Ask AI
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const workflows = await client.folders.workflows.list('folder_id');
console.log(workflows);
Copy
Ask AI
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"owner_id": "<string>",
"user_id": "<string>",
"app_id": "<string>",
"steps": [
{
"action_id": "<string>",
"parameters": {}
}
],
"system_metadata": {}
}
]
Assistant
Responses are generated using AI and may contain mistakes.