Python Forum
Connecting 2 APIs - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Connecting 2 APIs (/thread-23373.html)



Connecting 2 APIs - kamaleon - Dec-25-2019

Hello,

I would like to connect Mailchimp with Sendy (another autoresponder).

Each time I get a new subscriber in Mailchimp I would like to also send it to Sendy.

Mailchimp has webhooks and an API, and Sendy has an API.

What would be the best way to do it?

Any recommendations would be appreciated.

Thanks


RE: Connecting 2 APIs - keuninkske - Dec-26-2019

good evening,

i suggest you start to read a little bit about retrieving data from API's with python

the google querry "python read from API" gives me following tutorial who seems verry readable to me
also is the API from mailchimp very wel documenten

i am sure you can find out how to retrieve the necesary data

afterwords you have to find out how to use de API from sendy to put the new user also in there

good luck with learning,
unfortunatly we are not here to write your program, you have to do a little effort by yourself


RE: Connecting 2 APIs - kamaleon - Dec-27-2019

Thanks for your help.

But what would be the best way to link the 2 systems?

To copy data to a google sheet, or to a file? Or is there a better way?

Thanks