πList Collections
Lists all the collections the user has
Prerequisites
Listing Collections
import mindplug from "@/src/mindplugAPI"; // base instance
mindplug.post("/collection/list", {
db: "walmart",
});Sample Response
{
"data": [
{
"collection": "OfficeSupplies",
"totalVectors": 0,
"collectionId": "591ed632-cf38-403e-8e63-be87999d4115"
}
],
"count": 1
}Last updated