I am looking for a process to pull Marketo data using Airflow. It seems that Airflow has no native Marketo webhook, did I understand that correctly ?
Or is there a way to use an existing Airflow operator/webhook to pull data from Marketo? Thanks
I am looking for a process to pull Marketo data using Airflow. It seems that Airflow has no native Marketo webhook, did I understand that correctly ?
Or is there a way to use an existing Airflow operator/webhook to pull data from Marketo? Thanks
Most Operators for 3rd parties just wrap around APIs, Marketo has a REST api. You could use a
PythonOperatorwithrequestspull your data.An example DAG could be:
apache-airflow-providers-amazon.