
Announcements
I want to create a planning app, and the first part is to create a to-do list, or be able to utilize Microsoft to-do- and pull the feed of the to-do list into a Gallery. When I add To-Do as the connector for the Gallery, it says that there is no Data. Any thoughts?
Hi @MT090511 ,
Do you want to list all the lists in a gallery?
Could you tell me which one is your data source? Microsoft To-Do (Business) or Todoist?
I assume that it is Microsoft To-Do (Business).
If so, you need to do these:
1)connect your app with Microsoft To-Do (Business):
2)insert a gallery, set its Items:
'MicrosoftTo-Do(Business)'.GetAllTodoLists()
Then you will get all the lists in your Microsoft To-Do (Business).
If you want to get all the tasks based on one specific list, I'm afraid it's not supported by using this connector.
This connector currently only supports these actions:
| Add a to-do (V2) |
This operation is used to create a to-do in the specified to-do list (defaults to To-Do). |
| Add a to-do [DEPRECATED] |
This action has been deprecated. Please use Add a to-do (V2) instead.
|
| Get a to-do |
This operation is used to get the to-Do with the given Id. |
| List all to-do lists |
Returns a list of all the to-do lists. |
You could only get a specific to-do task based on the task ID.
Best regards,