Problem with creating Replies to Notes using shotgrid python API

Hello,
I’m trying to recreate comment threads from FrameIO in shotgrid, but I can’t figure out how to create Replies to Notes.
When I try to execute something like sg.find(“Reply”…) I’m getting that such entity doesn’t exist.
I know that I can read Replies using sg.note_thread_read but how to create them?

Maciej

OK, I figured it out - I can’t find any Replies but I can create them (weird?)

Something like this seems to work:
sg.create("Reply", { "user": {"type": "HumanUser", "id": humanUserId}, "content":replyContent, "entity": {"type": "Note", "id": parentNoteId} })