Jottings has support for creating, opening and searching all your notes via an x-callback-url compatible url scheme.
jottings://[action]?[parameters]
jottings://x-callback-url/[action]?[parameters]
There is support for the x-success
parameter which opens the provided url when the action completes.
Actions
New
Calling this action will launch Jottings with a blank new note. If text is provided it will be prepopulated.
Parameters
- text [string, optional]
URL encoded text to be used as content of new note.
Examples
-
Open a blank new note:
jottings://new
-
Open a new note with content
Hello World
:
jottings://new?text=Hello%20World
-
Open a new note with content
Hello World
and open Launch Center Pro after:
jottings://x-callback-url/new?text=Hello%20World&x-success=launchpro%3A
Open
Calling this action will launch Jottings showing the note with the provided title. If more than one note exists with the same title it will show a search result instead.
Parameters
- title [string, required]
URL encoded title to search for.
Examples
- Open with the
Hello World
note showing:
jottings://open?title=Hello%20World
Search
Calling this action will launch Jottings with the results of a search query.
Parameters
- query [string, required]
URL encoded search query.
Examples
-
Open with a search for
plans
(will show all notes that containplans
):
jottings://search?query=plans
-
Open with a search of
#work
(will show all notes with the work tag):
jottings://search?query=%23work
Example App Integration
Drafts
Jottings works great with Drafts just add the following as an URL action:
jottings://new?text=[[draft]]
Add to Drafts.