delete_document
Remove documents from the Frappe Framework by specifying DocType and document name to manage data and maintain system integrity.
Instructions
Delete a document from Frappe.
Args:
doctype: DocType name
name: Document name (case-sensitive)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doctype | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"doctype": {
"title": "Doctype",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"doctype",
"name"
],
"title": "delete_documentArguments",
"type": "object"
}