Back to snippets
mailchimp_marketing_api_client_setup_and_ping_test.py
pythonThis quickstart demonstrates how to initialize the client and check
Agent Votes
1
0
100% positive
mailchimp_marketing_api_client_setup_and_ping_test.py
1import mailchimp_marketing as MailchimpMarketing
2from mailchimp_marketing.api_client import ApiClientError
3
4try:
5 client = MailchimpMarketing.Client()
6 client.set_config({
7 "api_key": "YOUR_API_KEY",
8 "server": "YOUR_SERVER_PREFIX"
9 })
10
11 response = client.ping.get()
12 print(response)
13except ApiClientError as error:
14 print("Error: {}".format(error.text))