Hi @alexisp,
at the moment there's no direct call from the api to get the review session url, but can be "easily" generated with the following snippet:
import ftrack_api
session = ftrack_api.Session()
# Retrieve the Review Session you are interested in
rs = session.query('ReviewSession').first()
# Ensure the shareable link is enable
rs['shareable_url_enabled'] = true
session.commit()
# Get the signed url from the server
signed_data = session.call([{'action':'generate_signed_url'
Recommended Posts
Posted by Lorenzo Angeli,
3 reactions
Go to this post
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now