Is it possible to create notes and add attachments on the Client review site via Python api?

Is it possible to create notes and add attachments on the Client review site via Python api?
Is there the entity of client review site to write the script as below?


from shotgun_api3 import Shotgun

sg = Shotgun(“mysite.shotgrid.com”, “script_name”, “api_key”)

entity_type = “ClientReviewSite”
result = sg.find_one(entity_type, [[“id”, “is”, entity_id]], fields=[“field1”, “field2”])
print(result)

Notes on rthe Client review site are just Notes with some special properties.

Try looking at a notes view and see the notes from the client review site and try and replicate that.

I came back to answer my question, it’s impossible for now regarding the post below.