GET
/
folders
/
summary
JavaScript
import Morphik from 'morphik';

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

const response = await client.folders.listSummaries();

console.log(response);
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "doc_count": 0,
    "updated_at": "<string>"
  }
]

Headers

authorization
string

Response

200
application/json

Successful Response

The response is of type FolderSummary · object[].