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 29acfcb commit c92a58dCopy full SHA for c92a58d
mailjet/client.py
@@ -16,12 +16,12 @@ class Config(object):
16
def __getitem__(self, key):
17
url = self.API_URL[0:]
18
if key != 'Send':
19
- url = urljoin(url, 'REST')
+ url = urljoin(url, 'REST/')
20
elif key == 'Contactslist_csvdata':
21
- url = urljoin(url, 'DATA')
+ url = urljoin(url, 'DATA/')
22
elif key == 'Batchjob_csverror':
23
24
- url = url + '/' + key
+ url = url + key.lower()
25
return url, urljoin(self.API_DOC, key)
26
27
0 commit comments