Cancel scheduled email
Cancel a pending scheduled send by scheduleId (from send_email with sendAt, or list_scheduled_emails). The draft stays in the Drafts folder, so the content is not lost.
cancel_scheduled_email
Cancel a pending scheduled send by scheduleId (from send_email with sendAt, or list_scheduled_emails). The draft stays in the Drafts folder, so the content is not lost.
Permissions
Required capabilities: mail.drafts.
Inputs
| Name | Required | Type | Details |
|---|---|---|---|
scheduleId | Yes | string | Minimum length: 1. |
{
"type": "object",
"properties": {
"scheduleId": {
"type": "string",
"minLength": 1
}
},
"required": [
"scheduleId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Last updated