Tips & Tricks > General

URL Schemes in iOS and OS X

URL schemes allows apps to interact with other apps and pass certain information to them. 2Do v2.8.33 (iOS) and 2Do v1.5 (Mac) and above support the following URL schemes and actions:

Add new task to list

URL:

twodo:///add?task=[title]&forlist=
  • Task: title of task
  • Forlist: name of the user created list to add task to

Add new task to list with note

URL:

twodo:///add?task=[title]&forlist=&note=[your note]
  • Task: title of task
  • Forlist: name of the user created list to add task to
  • Note: your note

Add new task to list with priority

URL:

twodo:///add?task=[title]&forlist=&priority=[0,1,2,3]
  • Task: title of task
  • Forlist: name of the user created list to add task to
  • Priority: should be 0, 1, 2 or 3 (none, low, medium, high respect)

Add new task to list with tags

URL:

twodo:///add?task=[title]&forlist=&tags=[comma separated list]
  • Task: title of task
  • Forlist: name of the user created list to add task to
  • Tags: comma separated list of tags (existing or new)

Add new task to list with notes, priority and tags

URL:

twodo:///add?task=[title]&forlist=&note=[your note]&priority=[0,1,2,3]&tags=[comma separated names]
  • Task: title of task
  • Forlist: name of the user created list to add task to
  • Note: your note
  • Priority: should be 0, 1, 2 or 3 (none, low, medium, high respect)
  • Tags: comma separated list of tags (existing or new)