Create a draft message in the signed-in user's mailbox.
643 matches
106 actions
Microsoft
106 actions
- Accept eventPOSTv1.0.0
- Add event attachmentPOSTv1.0.0
- Add message attachmentPOSTv1.0.0
- Cancel eventPOSTv1.0.0
- Copy drive itemPOSTv1.0.0
- Copy messagePOSTv1.0.0
- Create calendarPOSTv1.0.0
- Create calendar eventPOSTv1.0.0
- Create chatPOSTv1.0.0
- Create contactPOSTv1.0.0
- Create contact folderPOSTv1.0.0
- Create contact in folderPOSTv1.0.0
- Create draftPOSTv1.0.0
- Create eventPOSTv1.0.0
- Create folderPOSTv1.0.0
- Create forward draftPOSTv1.0.0
- Create list itemPOSTv1.0.0
- Create mail folderPOSTv1.0.0
- Create message rulePOSTv1.0.0
- Create notebookPOSTv1.0.0
- Create pagePOSTv1.0.0
- Create reply draftPOSTv1.0.0
- Create sectionPOSTv1.0.0
- Create sharing linkPOSTv1.0.0
- Decline eventPOSTv1.0.0
- Delete calendarDELETEv1.0.0
- Delete contactDELETEv1.0.0
- Delete drive itemDELETEv1.0.0
- Delete eventDELETEv1.0.0
- Delete list itemDELETEv1.0.0
- Delete mail folderDELETEv1.0.0
- Delete messageDELETEv1.0.0
- Delete pageDELETEv1.0.0
- Download drive fileGETv1.0.0
- Download fileGETv1.0.0
- Forward eventPOSTv1.0.0
- Forward messagePOSTv1.0.0
- Get calendarGETv1.0.0
- Get calendar viewGETv1.0.0
- Get chatGETv1.0.0
- Get chat messageGETv1.0.0
- Get contactGETv1.0.0
- Get driveGETv1.0.0
- Get drive itemGETv1.0.0
- Get eventGETv1.0.0
- Get listGETv1.0.0
- Get list itemGETv1.0.0
- Get mail folderGETv1.0.0
- Get mailbox settingsGETv1.0.0
- Get messageGETv1.0.0
- Get message attachmentGETv1.0.0
- Get my profileGETv1.0.0
- Get notebookGETv1.0.0
- Get page contentGETv1.0.0
- Get schedulePOSTv1.0.0
- Get siteGETv1.0.0
- List calendar eventsGETv1.0.0
- List calendarsGETv1.0.0
- List chat membersGETv1.0.0
- List chat messagesGETv1.0.0
- List chatsGETv1.0.0
- List contact foldersGETv1.0.0
- List contactsGETv1.0.0
- List drive itemsGETv1.0.0
- List drive root itemsGETv1.0.0
- List event instancesGETv1.0.0
- List eventsGETv1.0.0
- List folder contactsGETv1.0.0
- List folder itemsGETv1.0.0
- List folder messagesGETv1.0.0
- List list itemsGETv1.0.0
- List mail foldersGETv1.0.0
- List message attachmentsGETv1.0.0
- List message rulesGETv1.0.0
- List messagesGETv1.0.0
- List notebook sectionsGETv1.0.0
- List notebooksGETv1.0.0
- List pagesGETv1.0.0
- List recent filesGETv1.0.0
- List root itemsGETv1.0.0
- List section pagesGETv1.0.0
- List sectionsGETv1.0.0
- List site drivesGETv1.0.0
- List site listsGETv1.0.0
- List subsitesGETv1.0.0
- Move messagePOSTv1.0.0
- Reply all to messagePOSTv1.0.0
- Reply to channel messagePOSTv1.0.0
- Reply to messagePOSTv1.0.0
- Search driveGETv1.0.0
- Search sitesGETv1.0.0
- Send channel messagePOSTv1.0.0
- Send chat messagePOSTv1.0.0
- Send draftPOSTv1.0.0
- Send mailPOSTv1.0.0
- Tentatively accept eventPOSTv1.0.0
- Update calendarPATCHv1.0.0
- Update chatPATCHv1.0.0
- Update contactPATCHv1.0.0
- Update drive itemPATCHv1.0.0
- Update eventPATCHv1.0.0
- Update list itemPATCHv1.0.0
- Update messagePATCHv1.0.0
- Upload drive filePUTv1.0.0
- Upload filePUTv1.0.0
- Upload file to rootPUTv1.0.0
Productivity/Microsoft
Create draft
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
{
"type": "object",
"required": [
"subject"
],
"additionalProperties": false,
"properties": {
"subject": {
"type": "string"
},
"body": {
"type": "object",
"properties": {
"contentType": {
"type": "string",
"enum": [
"text",
"html"
]
},
"content": {
"type": "string"
}
}
},
"toRecipients": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
},
"ccRecipients": {
"type": "array",
"items": {
"type": "object"
}
},
"bccRecipients": {
"type": "array",
"items": {
"type": "object"
}
},
"importance": {
"type": "string",
"enum": [
"low",
"normal",
"high"
]
}
}
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
{
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string"
},
"subject": {
"type": "string"
},
"isDraft": {
"type": "boolean"
},
"webLink": {
"type": "string"
}
}
}