balloon
October 19, 2023, 12:25pm
1
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.
Hi there,
We started using CRS lately and wanted to share ‘old’ Notes with our Clients. As we did these Notes before making our playlists they are not referenced to it, and so not visible even though the Shots they are linked to are in the playlists.
We thought at first the ticking box ‘Client Note’ would make the Note available for the Clients, but it is not the case
My question is : how do you handle this?
I thought about an event handler plugin that would browse Shots notes when …