You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**NOTE**: `version` reflects the api version in the url (`https://api.mailjet.com/{{ version }}/REST/`). It is `'v3'` by default and can be used to select another api version (for example `v3.1` for the new send API).
43
+
**NOTE**: `version` reflects the API version in the URL (`https://api.mailjet.com/{{ version }}/REST/`). It is `'v3'` by default and can be used to select another API version (for example `v3.1` for the new send API).
44
44
45
45
## Make a `GET` request:
46
46
```python
47
-
# get every contacts
47
+
# get all contacts
48
48
result = mailjet.contact.get()
49
49
```
50
50
51
51
## `GET` request with filters:
52
52
```python
53
-
# get the 2 first contacts
53
+
# get the first 2 contacts
54
54
result = mailjet.contact.get(filters={'limit': 2})
55
55
```
56
56
## `POST` request
@@ -61,7 +61,7 @@ result = mailjet.sender.create(data={'email': 'test@mailjet.com'})
61
61
62
62
## Combine a resource with an action
63
63
```python
64
-
# Get the contact lists of contact #2
64
+
# Get the contacts lists of contact #2
65
65
result = mailjet.contact_getcontactslists.get(id=2)
0 commit comments