get_draft
Retrieve a specific Gmail draft by its ID to access draft content and metadata for review or editing purposes.
Instructions
Get a specific draft by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The ID of the draft to retrieve | |
| includeBodyHtml | No | Whether to include the parsed HTML in the return for each body, excluded by default because they can be excessively large |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The ID of the draft to retrieve",
"type": "string"
},
"includeBodyHtml": {
"description": "Whether to include the parsed HTML in the return for each body, excluded by default because they can be excessively large",
"type": "boolean"
}
},
"required": [
"id"
],
"type": "object"
}