📙List Projects

Prerequisites

Requires a user auth token. See the API Auth section.

Listing Projects

Lists all the databases created by the user.

import mindplug from "@/src/mindplugAPI"; // base instance

mindplug.post("/db/list", {});

Sample Response

{
    "success": true,
    "projects": [
        {
            "projectName": "walmart",
            "lastUpdated": "2023-07-16T18:00:27.601+00:00",
            "totalVectors": 5,
            "collectionCount": 1
        }
    ]
}

Last updated