RedditUser.getSubmissions()
you can provide listing options object as a parameter, that will be everything that's listed here https://www.reddit.com/dev/api#GET_user_{username}_submitted
RedditUser.getSubmissions({sort: "new", after: fullname})
.new
but not #markAsRead
Post
or a Comment
, that's what will be coming to your inbox. For marking as read see https://not-an-aardvark.github.io/snoowrap/snoowrap.html#markMessagesAsRead__anchor
try {
await r.getNewModmailConversation('fsox5').archive()
} catch (error) {
console.log(error)
}
path: '/api/mod/conversations/fsox5/archive?raw_json=1',
which is correct. I'll see whats up with reddit's API
```const sendModMail = async (threadID, message) => {
const thread = r.getNewModmailConversation(threadID)
await thread.reply(message);
await archiveThread(threadID)
}```