Date parameter from Drafts

Anyone else having trouble getting the date parameter to work? I can’t get it to work right via Drafts Actions, either on iOS or macOS…

Can you post an example of the url you’re using?

You bet!

agenda://x-callback-url/create-note?project-title=Inbox&title=[[title]]&text=[[body]]&on-the-agenda=false&date=[[created|%Y-%m-%d]]

Drafts converts the template (the text inside the [[…]]) into HTML percent encoded text automatically and the syntax of the date template ([[created|%Y-%m-%d]]) should just produce the date the particular draft was created in the 20XX-XX-XX format.

There must be something in the way Draft converts things, as the following concrete url works fine for me if I paste it in my webbrowser:

agenda://x-callback-url/create-note?project-title=Scribbles&title=alex&text=test&on-the-agenda=false&date=2019-07-02

note that the project-title must be an existing project title (in my case Scribbles)