I want to do stuff like this too.
If we do it with what exists now, we could get the whole document every 61 seconds in json via POST https://dynalist.io/api/v1/doc/read
{“token”: “”,“file_id”: “”} and then diff and parse on our side all this type stuff:
{
"_code": "OK",
"_msg": "",
"title": "Todo list",
"nodes": [
{
"id": "<node #1 id>",
"content": "Buy milk",
"note": "2L whole milk",
"checked": true,
"collapsed": false,
"parent": "root",
"children": []
},
{
"id": "<node #2 id>",
"content": "Send Jason photos",
"checked": false,
"collapsed": false,
"parent": "root",
"children": [
"<node #3 id>",
"<node #4 id>"
]
},
{
"id": "<node #3 id>",
"content": "Picnic photos",
"checked": false,
"collapsed": false,
"parent": "<node #2 id>",
"children": []
},
{
"id": "<node #4 id>",
"content": "Cruise photos",
"checked": true,
"collapsed": false,
"parent": "<node #2 id>",
"children": []
}
]
}
It seem too intimidating to me. It would probably require some AWS type service running a python.py file that does the diff/parse/send trickery. I’m a noob and it would take me forever to figure out.
But I do wish for it, mainly for geofence triggering to notify me the contents of a node, like the children of my “when i get home” node in my android notification right there to read without opening anything, that would be nice.