Changelog¶
0.17.1 - 2021-03-02¶
Added¶
root_api_urlargument forPostmarkClient. It allows you to change the address used bypostmarkerfor sending API calls.
Important
Use https://api-ssl-temp.postmarkapp.com/ if you’d like to test your application against the upcoming TLSv1 deprecation by Postmark.
Example:
postmark = PostmarkClient(
server_token="SERVER_TOKEN",
account_token="ACCOUNT_TOKEN",
root_api_url="https://api-ssl-temp.postmarkapp.com/"
)
# Use the client as usual
0.9.0 - 2017-03-28¶
Added¶
Changed¶
postmarker.webhooks.InboundWebhookclass was superseded bypostmark.messages.inbound.InboundMessageconstructor, which works in the same way.
0.1.0 - 2016-10-05¶
Initial release.