Google Super
GOOGLESUPER_DELETE_DRAFT
Permanently deletes a specific Gmail draft using its ID; ensure the draft exists and the user has necessary permissions for the given `user_id`.
Remote googlesuper
Other tools also called GOOGLESUPER_DELETE_DRAFT?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"user_id": {
"type": "string",
"title": "User Id",
"default": "me",
"examples": [
"me",
"[email protected]"
],
"description": "User's email address or 'me' for the authenticated user; 'me' is recommended."
},
"draft_id": {
"type": "string",
"title": "Draft Id",
"examples": [
"r-8388446164079304564"
],
"description": "Immutable ID of the draft to delete, typically obtained when the draft was created."
}
}
}