Delete Project
Prerequisites
Requires a user auth token. See the API Auth section.
Deleting Project
Deletes the project and all associated collections.
import mindplug from "@/src/mindplugAPI"; // base instance
mindplug.post("/db/delete", {
db: "walmart",
});
Once the database is deleted, there is no way for Mindplug to restore the deleted data. Possibly users may keep a copy of data in a separate db just in-case.
Sample Response
{
success: "true"
}
Last updated