Per this SO thread I should be able to go directly to a Gmail draft message, created using the Gmail REST API, using a hyperlink formatted like:
https://mail.google.com/mail/#drafts?compose={ThreadId}
However, it's not working. The thread ID I get as a response to my Gmail API call does not open the draft message created. What's really strange is when I open the draft from Gmail (that I created using the API) the thread ID DOES match for a split second in the URL then changes.
How does one open directly to a draft message utilizing the message.threadId? I'd like it to be a pop out message as well and should be possible per this thread but getting the draft to show at all is my first priority.
"https://mail.google.com/mail/ca/u/0/#drafts/" + draftResponse.getMessage().getThreadId()
Credits: @Chris Wood from this SO question stackoverflow.com/q/50124112/455449 (see comment below) – Petr Kozelka