URL Scheme and Tags

I am trying to use the URL scheme to add a new task with a tag in the notes. The problem is that when I put the '#' in front of the tag, it does not work - for example:

goodtask3://add?title=New%20Task&notes=#Client does not work but

goodtask3://add?title=New%20Task&notes=Client.

The problem is that the second one does not come through as a tag because it does not have the '#'. Am I doing something wrong or is the URL scheme rejecting the '#'

Thanks for any help you can offer.

You’ll need to url encode the # similar to what you have to do with spaces (%20).

It should be %23.

1 Like

Thanks for the help, works perfectly now

2 Likes