get_document
Retrieve specific documents from Frappe Framework by providing the document type and case-sensitive name to access stored data efficiently.
Instructions
Retrieve 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": "get_documentArguments",
"type": "object"
}