YuChen Posted October 8, 2021 Report Share Posted October 8, 2021 Hi, I follow the example provided by tutorial document to create a CustomAttributeLinkConfiguration entity: shot_object_id = session.query('ObjectType where name is "shot"').one()['id'] sequence_object_id = session.query('ObjectType where name is "sequence"').one()['id'] session.create('CustomAttributeLinkConfiguration', { 'entity_type': 'task', 'object_type_id': sequence_object, 'entity_type_to': 'task', 'object_type_id_to': shot_object_id 'label': 'Master shot', 'key': 'master_shot', 'config': '{}', 'one_to_one': True, 'write_security_roles': [security_role], 'read_security_roles': [security_role] }) but got an error message: Entity type "CustomAttributeLinkConfiguration" not recognized. My ftrack is v.4.6.15. Does this version support "CustomAttributeLinkConfiguration" entity ? Link to comment Share on other sites More sharing options...
Lorenzo Angeli Posted October 13, 2021 Report Share Posted October 13, 2021 @YuChenCustom AttributeLinks have been introduced in 4.8 , I'd suggest reaching out to our support to get more informations on how to upgrade. Hope it helps! L. Link to comment Share on other sites More sharing options...
YuChen Posted October 15, 2021 Author Report Share Posted October 15, 2021 Thanks for the info :) Link to comment Share on other sites More sharing options...
Recommended Posts
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