We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f90d11b commit 41d6e5eCopy full SHA for 41d6e5e
mailjet/client.py
@@ -45,7 +45,7 @@ def get_many(self, filters=None, action_id=None, **kwargs):
45
def get(self, id=None, filters=None, action_id=None, **kwargs):
46
return self._get(id=id, filters=filters, **kwargs)
47
48
- def create(self, data, filters=None, id=None, action_id=None, **kwargs):
+ def create(self, data=None, filters=None, id=None, action_id=None, **kwargs):
49
return api_call(self._auth, 'post', self._url, headers=self.headers, resource_id=id, data=data, action=self.action, action_id=action_id, filters=filters, **kwargs)
50
51
def update(self, id, data, filters=None, action_id=None, **kwargs):
0 commit comments