Closed Clobbe closed 3 years ago
Hi @Clobbe,
Please try again with following snippet
`import sib_api_v3_sdk from sib_api_v3_sdk.rest import ApiException
configuration = sib_api_v3_sdk.Configuration() configuration.api_key["api-key"] = "" api_instance = sib_api_v3_sdk.AccountApi(sib_api_v3_sdk.ApiClient(configuration))
try:
api_response = api_instance.get_account()
print(api_response)
except ApiException as e: print("Exception when calling AccountApi->get_account: %s\n" % e)`
Thank you @mukulsib for helping out :)
Hey,
Just installed latest API lib from Github as per your instructions.
However when I'm trying to run your "Getting Started" example (see code at: https://github.com/sendinblue/APIv3-python-library#getting-started)
I get the following output:
Anyone else getting this problem?