GET
/
folders
JavaScript
import Morphik from 'morphik';

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

const folders = await client.folders.list();

console.log(folders);
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "document_ids": [
      "<string>"
    ],
    "system_metadata": {},
    "rules": [
      {}
    ],
    "workflow_ids": [
      "<string>"
    ],
    "app_id": "<string>",
    "end_user_id": "<string>"
  }
]

Headers

authorization
string

Response

200
application/json

Successful Response

The response is of type Folder · object[].