Gmail
GMAIL_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 gmail
Other tools also called GMAIL_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."
}
}
}