Skip to content

Commit 8cf4e46

Browse files
author
Erik Räni
authored
🎉 v1.2.2 (#8)
1 parent 81996db commit 8cf4e46

File tree

15 files changed

+381
-164
lines changed

15 files changed

+381
-164
lines changed

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.3.0
1+
4.3.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Messente API Library
22

33
- Messente API version: 1.2.0
4-
- Python package version: 1.2.1
4+
- Python package version: 1.2.2
55

66
[Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber, WhatsApp and Telegram messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world.
77

docs/BlacklistApi.md

Lines changed: 60 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,22 @@ import time
2424
import messente_api
2525
from messente_api.rest import ApiException
2626
from pprint import pprint
27-
configuration = messente_api.Configuration()
28-
# Configure HTTP basic authorization: basicAuth
29-
configuration.username = 'YOUR_USERNAME'
30-
configuration.password = 'YOUR_PASSWORD'
27+
# Defining the host is optional and defaults to https://api.messente.com/v1
28+
# See configuration.py for a list of all supported configuration parameters.
29+
configuration = messente_api.Configuration(
30+
host = "https://api.messente.com/v1"
31+
)
32+
33+
# The client must configure the authentication and authorization parameters
34+
# in accordance with the API server security policy.
35+
# Examples for each auth method are provided below, use the example that
36+
# satisfies your auth use case.
3137

32-
# Defining host is optional and default to https://api.messente.com/v1
33-
configuration.host = "https://api.messente.com/v1"
38+
# Configure HTTP basic authorization: basicAuth
39+
configuration = messente_api.Configuration(
40+
username = 'YOUR_USERNAME',
41+
password = 'YOUR_PASSWORD'
42+
)
3443

3544
# Enter a context with an instance of the API client
3645
with messente_api.ApiClient(configuration) as api_client:
@@ -89,13 +98,22 @@ import time
8998
import messente_api
9099
from messente_api.rest import ApiException
91100
from pprint import pprint
92-
configuration = messente_api.Configuration()
93-
# Configure HTTP basic authorization: basicAuth
94-
configuration.username = 'YOUR_USERNAME'
95-
configuration.password = 'YOUR_PASSWORD'
101+
# Defining the host is optional and defaults to https://api.messente.com/v1
102+
# See configuration.py for a list of all supported configuration parameters.
103+
configuration = messente_api.Configuration(
104+
host = "https://api.messente.com/v1"
105+
)
106+
107+
# The client must configure the authentication and authorization parameters
108+
# in accordance with the API server security policy.
109+
# Examples for each auth method are provided below, use the example that
110+
# satisfies your auth use case.
96111

97-
# Defining host is optional and default to https://api.messente.com/v1
98-
configuration.host = "https://api.messente.com/v1"
112+
# Configure HTTP basic authorization: basicAuth
113+
configuration = messente_api.Configuration(
114+
username = 'YOUR_USERNAME',
115+
password = 'YOUR_PASSWORD'
116+
)
99117

100118
# Enter a context with an instance of the API client
101119
with messente_api.ApiClient(configuration) as api_client:
@@ -154,13 +172,22 @@ import time
154172
import messente_api
155173
from messente_api.rest import ApiException
156174
from pprint import pprint
157-
configuration = messente_api.Configuration()
158-
# Configure HTTP basic authorization: basicAuth
159-
configuration.username = 'YOUR_USERNAME'
160-
configuration.password = 'YOUR_PASSWORD'
175+
# Defining the host is optional and defaults to https://api.messente.com/v1
176+
# See configuration.py for a list of all supported configuration parameters.
177+
configuration = messente_api.Configuration(
178+
host = "https://api.messente.com/v1"
179+
)
180+
181+
# The client must configure the authentication and authorization parameters
182+
# in accordance with the API server security policy.
183+
# Examples for each auth method are provided below, use the example that
184+
# satisfies your auth use case.
161185

162-
# Defining host is optional and default to https://api.messente.com/v1
163-
configuration.host = "https://api.messente.com/v1"
186+
# Configure HTTP basic authorization: basicAuth
187+
configuration = messente_api.Configuration(
188+
username = 'YOUR_USERNAME',
189+
password = 'YOUR_PASSWORD'
190+
)
164191

165192
# Enter a context with an instance of the API client
166193
with messente_api.ApiClient(configuration) as api_client:
@@ -214,13 +241,22 @@ import time
214241
import messente_api
215242
from messente_api.rest import ApiException
216243
from pprint import pprint
217-
configuration = messente_api.Configuration()
218-
# Configure HTTP basic authorization: basicAuth
219-
configuration.username = 'YOUR_USERNAME'
220-
configuration.password = 'YOUR_PASSWORD'
244+
# Defining the host is optional and defaults to https://api.messente.com/v1
245+
# See configuration.py for a list of all supported configuration parameters.
246+
configuration = messente_api.Configuration(
247+
host = "https://api.messente.com/v1"
248+
)
249+
250+
# The client must configure the authentication and authorization parameters
251+
# in accordance with the API server security policy.
252+
# Examples for each auth method are provided below, use the example that
253+
# satisfies your auth use case.
221254

222-
# Defining host is optional and default to https://api.messente.com/v1
223-
configuration.host = "https://api.messente.com/v1"
255+
# Configure HTTP basic authorization: basicAuth
256+
configuration = messente_api.Configuration(
257+
username = 'YOUR_USERNAME',
258+
password = 'YOUR_PASSWORD'
259+
)
224260

225261
# Enter a context with an instance of the API client
226262
with messente_api.ApiClient(configuration) as api_client:

docs/ContactsApi.md

Lines changed: 120 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,22 @@ import time
2828
import messente_api
2929
from messente_api.rest import ApiException
3030
from pprint import pprint
31-
configuration = messente_api.Configuration()
32-
# Configure HTTP basic authorization: basicAuth
33-
configuration.username = 'YOUR_USERNAME'
34-
configuration.password = 'YOUR_PASSWORD'
31+
# Defining the host is optional and defaults to https://api.messente.com/v1
32+
# See configuration.py for a list of all supported configuration parameters.
33+
configuration = messente_api.Configuration(
34+
host = "https://api.messente.com/v1"
35+
)
36+
37+
# The client must configure the authentication and authorization parameters
38+
# in accordance with the API server security policy.
39+
# Examples for each auth method are provided below, use the example that
40+
# satisfies your auth use case.
3541

36-
# Defining host is optional and default to https://api.messente.com/v1
37-
configuration.host = "https://api.messente.com/v1"
42+
# Configure HTTP basic authorization: basicAuth
43+
configuration = messente_api.Configuration(
44+
username = 'YOUR_USERNAME',
45+
password = 'YOUR_PASSWORD'
46+
)
3847

3948
# Enter a context with an instance of the API client
4049
with messente_api.ApiClient(configuration) as api_client:
@@ -97,13 +106,22 @@ import time
97106
import messente_api
98107
from messente_api.rest import ApiException
99108
from pprint import pprint
100-
configuration = messente_api.Configuration()
101-
# Configure HTTP basic authorization: basicAuth
102-
configuration.username = 'YOUR_USERNAME'
103-
configuration.password = 'YOUR_PASSWORD'
109+
# Defining the host is optional and defaults to https://api.messente.com/v1
110+
# See configuration.py for a list of all supported configuration parameters.
111+
configuration = messente_api.Configuration(
112+
host = "https://api.messente.com/v1"
113+
)
114+
115+
# The client must configure the authentication and authorization parameters
116+
# in accordance with the API server security policy.
117+
# Examples for each auth method are provided below, use the example that
118+
# satisfies your auth use case.
104119

105-
# Defining host is optional and default to https://api.messente.com/v1
106-
configuration.host = "https://api.messente.com/v1"
120+
# Configure HTTP basic authorization: basicAuth
121+
configuration = messente_api.Configuration(
122+
username = 'YOUR_USERNAME',
123+
password = 'YOUR_PASSWORD'
124+
)
107125

108126
# Enter a context with an instance of the API client
109127
with messente_api.ApiClient(configuration) as api_client:
@@ -163,13 +181,22 @@ import time
163181
import messente_api
164182
from messente_api.rest import ApiException
165183
from pprint import pprint
166-
configuration = messente_api.Configuration()
167-
# Configure HTTP basic authorization: basicAuth
168-
configuration.username = 'YOUR_USERNAME'
169-
configuration.password = 'YOUR_PASSWORD'
184+
# Defining the host is optional and defaults to https://api.messente.com/v1
185+
# See configuration.py for a list of all supported configuration parameters.
186+
configuration = messente_api.Configuration(
187+
host = "https://api.messente.com/v1"
188+
)
189+
190+
# The client must configure the authentication and authorization parameters
191+
# in accordance with the API server security policy.
192+
# Examples for each auth method are provided below, use the example that
193+
# satisfies your auth use case.
170194

171-
# Defining host is optional and default to https://api.messente.com/v1
172-
configuration.host = "https://api.messente.com/v1"
195+
# Configure HTTP basic authorization: basicAuth
196+
configuration = messente_api.Configuration(
197+
username = 'YOUR_USERNAME',
198+
password = 'YOUR_PASSWORD'
199+
)
173200

174201
# Enter a context with an instance of the API client
175202
with messente_api.ApiClient(configuration) as api_client:
@@ -228,13 +255,22 @@ import time
228255
import messente_api
229256
from messente_api.rest import ApiException
230257
from pprint import pprint
231-
configuration = messente_api.Configuration()
232-
# Configure HTTP basic authorization: basicAuth
233-
configuration.username = 'YOUR_USERNAME'
234-
configuration.password = 'YOUR_PASSWORD'
258+
# Defining the host is optional and defaults to https://api.messente.com/v1
259+
# See configuration.py for a list of all supported configuration parameters.
260+
configuration = messente_api.Configuration(
261+
host = "https://api.messente.com/v1"
262+
)
263+
264+
# The client must configure the authentication and authorization parameters
265+
# in accordance with the API server security policy.
266+
# Examples for each auth method are provided below, use the example that
267+
# satisfies your auth use case.
235268

236-
# Defining host is optional and default to https://api.messente.com/v1
237-
configuration.host = "https://api.messente.com/v1"
269+
# Configure HTTP basic authorization: basicAuth
270+
configuration = messente_api.Configuration(
271+
username = 'YOUR_USERNAME',
272+
password = 'YOUR_PASSWORD'
273+
)
238274

239275
# Enter a context with an instance of the API client
240276
with messente_api.ApiClient(configuration) as api_client:
@@ -293,13 +329,22 @@ import time
293329
import messente_api
294330
from messente_api.rest import ApiException
295331
from pprint import pprint
296-
configuration = messente_api.Configuration()
297-
# Configure HTTP basic authorization: basicAuth
298-
configuration.username = 'YOUR_USERNAME'
299-
configuration.password = 'YOUR_PASSWORD'
332+
# Defining the host is optional and defaults to https://api.messente.com/v1
333+
# See configuration.py for a list of all supported configuration parameters.
334+
configuration = messente_api.Configuration(
335+
host = "https://api.messente.com/v1"
336+
)
337+
338+
# The client must configure the authentication and authorization parameters
339+
# in accordance with the API server security policy.
340+
# Examples for each auth method are provided below, use the example that
341+
# satisfies your auth use case.
300342

301-
# Defining host is optional and default to https://api.messente.com/v1
302-
configuration.host = "https://api.messente.com/v1"
343+
# Configure HTTP basic authorization: basicAuth
344+
configuration = messente_api.Configuration(
345+
username = 'YOUR_USERNAME',
346+
password = 'YOUR_PASSWORD'
347+
)
303348

304349
# Enter a context with an instance of the API client
305350
with messente_api.ApiClient(configuration) as api_client:
@@ -358,13 +403,22 @@ import time
358403
import messente_api
359404
from messente_api.rest import ApiException
360405
from pprint import pprint
361-
configuration = messente_api.Configuration()
362-
# Configure HTTP basic authorization: basicAuth
363-
configuration.username = 'YOUR_USERNAME'
364-
configuration.password = 'YOUR_PASSWORD'
406+
# Defining the host is optional and defaults to https://api.messente.com/v1
407+
# See configuration.py for a list of all supported configuration parameters.
408+
configuration = messente_api.Configuration(
409+
host = "https://api.messente.com/v1"
410+
)
411+
412+
# The client must configure the authentication and authorization parameters
413+
# in accordance with the API server security policy.
414+
# Examples for each auth method are provided below, use the example that
415+
# satisfies your auth use case.
365416

366-
# Defining host is optional and default to https://api.messente.com/v1
367-
configuration.host = "https://api.messente.com/v1"
417+
# Configure HTTP basic authorization: basicAuth
418+
configuration = messente_api.Configuration(
419+
username = 'YOUR_USERNAME',
420+
password = 'YOUR_PASSWORD'
421+
)
368422

369423
# Enter a context with an instance of the API client
370424
with messente_api.ApiClient(configuration) as api_client:
@@ -423,13 +477,22 @@ import time
423477
import messente_api
424478
from messente_api.rest import ApiException
425479
from pprint import pprint
426-
configuration = messente_api.Configuration()
427-
# Configure HTTP basic authorization: basicAuth
428-
configuration.username = 'YOUR_USERNAME'
429-
configuration.password = 'YOUR_PASSWORD'
480+
# Defining the host is optional and defaults to https://api.messente.com/v1
481+
# See configuration.py for a list of all supported configuration parameters.
482+
configuration = messente_api.Configuration(
483+
host = "https://api.messente.com/v1"
484+
)
485+
486+
# The client must configure the authentication and authorization parameters
487+
# in accordance with the API server security policy.
488+
# Examples for each auth method are provided below, use the example that
489+
# satisfies your auth use case.
430490

431-
# Defining host is optional and default to https://api.messente.com/v1
432-
configuration.host = "https://api.messente.com/v1"
491+
# Configure HTTP basic authorization: basicAuth
492+
configuration = messente_api.Configuration(
493+
username = 'YOUR_USERNAME',
494+
password = 'YOUR_PASSWORD'
495+
)
433496

434497
# Enter a context with an instance of the API client
435498
with messente_api.ApiClient(configuration) as api_client:
@@ -490,13 +553,22 @@ import time
490553
import messente_api
491554
from messente_api.rest import ApiException
492555
from pprint import pprint
493-
configuration = messente_api.Configuration()
494-
# Configure HTTP basic authorization: basicAuth
495-
configuration.username = 'YOUR_USERNAME'
496-
configuration.password = 'YOUR_PASSWORD'
556+
# Defining the host is optional and defaults to https://api.messente.com/v1
557+
# See configuration.py for a list of all supported configuration parameters.
558+
configuration = messente_api.Configuration(
559+
host = "https://api.messente.com/v1"
560+
)
561+
562+
# The client must configure the authentication and authorization parameters
563+
# in accordance with the API server security policy.
564+
# Examples for each auth method are provided below, use the example that
565+
# satisfies your auth use case.
497566

498-
# Defining host is optional and default to https://api.messente.com/v1
499-
configuration.host = "https://api.messente.com/v1"
567+
# Configure HTTP basic authorization: basicAuth
568+
configuration = messente_api.Configuration(
569+
username = 'YOUR_USERNAME',
570+
password = 'YOUR_PASSWORD'
571+
)
500572

501573
# Enter a context with an instance of the API client
502574
with messente_api.ApiClient(configuration) as api_client:

docs/DeliveryReportApi.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,22 @@ import time
2121
import messente_api
2222
from messente_api.rest import ApiException
2323
from pprint import pprint
24-
configuration = messente_api.Configuration()
25-
# Configure HTTP basic authorization: basicAuth
26-
configuration.username = 'YOUR_USERNAME'
27-
configuration.password = 'YOUR_PASSWORD'
24+
# Defining the host is optional and defaults to https://api.messente.com/v1
25+
# See configuration.py for a list of all supported configuration parameters.
26+
configuration = messente_api.Configuration(
27+
host = "https://api.messente.com/v1"
28+
)
29+
30+
# The client must configure the authentication and authorization parameters
31+
# in accordance with the API server security policy.
32+
# Examples for each auth method are provided below, use the example that
33+
# satisfies your auth use case.
2834

29-
# Defining host is optional and default to https://api.messente.com/v1
30-
configuration.host = "https://api.messente.com/v1"
35+
# Configure HTTP basic authorization: basicAuth
36+
configuration = messente_api.Configuration(
37+
username = 'YOUR_USERNAME',
38+
password = 'YOUR_PASSWORD'
39+
)
3140

3241
# Enter a context with an instance of the API client
3342
with messente_api.ApiClient(configuration) as api_client:

0 commit comments

Comments
 (0)