I do not believe they support integration from their end. I know Wunderlist never had URL schemes support or an API to allow other apps to create tasks, so there was no way for Drafts to integrate. Possible that has changed, but I havenāt not seen any examples.
Keeping in mind that Iāve only played with Microsoft Todo briefly, there might be a work around. If you add your Microsoft account to iOS, most of the Todo lists appear in reminders. Keeping in mind that I have no idea how this would work with any smart lists etc, if you add a task to a basic list in Reminders, it appears in Todo. Therefore, using Drafts Reminder support might get you what you need.
So basically, go into iOS settings, accounts and passwords, and add, I think an outlook account. Make sure Reminders is set to on and all your lists from Todo should appear in Reminders. At least, it worked for me yesterday.
Hi ā Another To Do fan here. By no means will the following do everything you want, but maybe itāll give you or someone else a start. This script takes the first line of the current draft and posts it to a To Do task list, given an API key and a To Do folder ID, and then puts the API response in a new draft.
let api = "Bearer YOUR_API_KEY",
// Show folder list by querying https://graph.microsoft.com/v1.0/me/todo/lists
folder = "YOUR_FOLDER_ID";
let current = draft.processTemplate("[[line|1]]"),
req = new HTTP(),
result = req.request({
encoding: 'json',
method: 'POST',
data: ({
title: current,
}),
headers: {
'Content-type': 'application/json; charset=UTF-8',
'Authorization': api
},
url: "https://graph.microsoft.com/v1.0/me/todo/lists/" + folder + "/tasks",
}),
d = new Draft();
d.content = result.responseText;
d.update();
This works as far as I can tell, but of course please use caution in trying it out. Good luck!
Iāve just started using Microsoft Todo and would like a purpose-built integration from Drafts.
At the moment, I am just using the āShareā action which uses the first line of the draft as the Task name and puts the entire draft into the notes field.
This āShareā action also allows you to select the list in which the new task is placed, and I leave it go to the default āTasksā folder which I use as an inbox. This allows me to edit the task later and if need be, set a due date or mark it as important, etc.
Integration with Todo is āon-the-listā, as they say. Iāve been a little hesitant to dive into it because Microsoftās APIs have been a bit buggy (as per my experience with the OneNote and OneDrive integrations), but Iāll likely get there soon.
There are no beta versions right now. We are right after WWDC, so Greg is working on lots of things to do with the upcoming OS updates. The app store releases are the latest releases as a result, and do contain the to do integration.