GET
/
folders
/
{folder_id}
/
workflows
JavaScript
import Morphik from 'morphik';

const client = new Morphik({
  apiKey: 'My API Key',
});

const workflows = await client.folders.workflows.list('folder_id');

console.log(workflows);
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "owner_id": "<string>",
    "user_id": "<string>",
    "app_id": "<string>",
    "steps": [
      {
        "action_id": "<string>",
        "parameters": {}
      }
    ],
    "system_metadata": {}
  }
]

Headers

authorization
string

Path Parameters

folder_id
string
required

Response

200
application/json

Successful Response

The response is of type Workflow · object[].