I'm writing a plugin which will help administrate a question-answer database. 'Candidate' questions are stored in a custom DB, and I'm working on a function by which a user can promote a db question to a fully fledged knowledgebase article (custom post type).
I'd like to populate the content field on post-new.php based on the content of my $_POST data, so a user can click a 'promote' link associated with a candidate and have the information already there.
What's the appropriate filter hook to use for this, or is there a better way?
*Edited title for clarity