get_draft
Retrieve a specific email draft by its ID using 'get_draft'. Optionally include parsed HTML content for the body to ensure comprehensive access to draft details.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}