Greetings. I have a custom object workflow that will enroll on a property being known. My end goal with the workflow is to use an email property on the custom object, locate a contact, and add that contact to a static list.
My code (python 3.9) works for the search, and can return the ID just fine. When I add an import for the v3 lists endpoint
from hubspot.crm.lists import MembershipChangeRequest, ApiException
I receive the following lambda_warning.
Unable to import module 'hubspotHandler': cannot import name 'lists' from 'hubspot.crm' (/opt/python/hubspot/crm/__init__.py)
The private app in use has the scopes for crm.lists.read and crm.lists.write. Is this just not implimented in workflow custom code.