Steven Dorning 0 Report post Posted July 16, 2020 What is the best way of subscribing only to events for changes to entities of type "Task" or more specifically a specific type of task. i.e. something like session.event_hub.subscribe('topic=ftrack.update and data.entityType="Task"', callback) It seems as this data is embedded in the Entities list and I can't work out how to do this is in a string e.g. data.entities[0].entity_type="Task" Or is it simply that this has to be filtered in the callback function? Share this post Link to post Share on other sites
Steve Petterborg 4 Report post Posted July 17, 2020 Indeed you currently have to filter in the callback. Share this post Link to post Share on other sites
JP LeDoux 0 Report post Posted December 17, 2020 I suppose it's the same limitation if you wanted to filter the subscription by project? Share this post Link to post Share on other sites
Steve Petterborg 4 Report post Posted December 17, 2020 Correct, generally. For update events, you'd have to construct Share this post Link to post Share on other sites