from mage_ai.services.hightouch.hightouch import HightouchClientclient = HightouchClient(config=dict(api_key='api_key'))syncs = client.list_syncs() # Get all the syncssync_id = syncs['data'][0]['id'] # Get sync idclient.sync_and_poll(sync_id) # Trigger sync and poll status