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
Copy file name to clipboardExpand all lines: README.md
+22-22Lines changed: 22 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Messente API Library
2
2
3
-
- Messente API version: 1.0.1
4
-
- Python package version: 1.0.2
3
+
- Messente API version: 1.0.2
4
+
- Python package version: 1.0.3
5
5
6
6
[Messente](https://messente.com) is a global provider of messaging and user verification services. Use Messente API library to send and receive SMS, Viber and WhatsApp messages, blacklist phone numbers to make sure you're not sending any unwanted messages, manage contacts and groups. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world.
7
7
@@ -20,38 +20,38 @@ Messente API Library provides the operations described below to access the featu
20
20
21
21
### BlacklistApi
22
22
23
-
1. Adds a phone number to the blacklist.[`add_to_blacklist`](docs/BlacklistApi.md#add_to_blacklist)
24
-
1. Deletes a phone number from the blacklist.[`delete_from_blacklist`](docs/BlacklistApi.md#delete_from_blacklist)
25
-
1. Returns all blacklisted phone numbers.[`fetch_blacklist`](docs/BlacklistApi.md#fetch_blacklist)
26
-
1. Checks if a phone number is blacklisted.[`is_blacklisted`](docs/BlacklistApi.md#is_blacklisted)
23
+
1. Adds a phone number to the blacklist [`add_to_blacklist`](docs/BlacklistApi.md#add_to_blacklist)
24
+
1. Deletes a phone number from the blacklist [`delete_from_blacklist`](docs/BlacklistApi.md#delete_from_blacklist)
25
+
1. Returns all blacklisted phone numbers [`fetch_blacklist`](docs/BlacklistApi.md#fetch_blacklist)
26
+
1. Checks if a phone number is blacklisted [`is_blacklisted`](docs/BlacklistApi.md#is_blacklisted)
27
27
28
28
### ContactsApi
29
29
30
-
1. Adds a contact to a group.[`add_contact_to_group`](docs/ContactsApi.md#add_contact_to_group)
31
-
1. Creates a new contact.[`create_contact`](docs/ContactsApi.md#create_contact)
32
-
1. Deletes a contact.[`delete_contact`](docs/ContactsApi.md#delete_contact)
33
-
1. Lists a contact.[`fetch_contact`](docs/ContactsApi.md#fetch_contact)
34
-
1. Lists groups of a contact.[`fetch_contact_groups`](docs/ContactsApi.md#fetch_contact_groups)
35
-
1. Returns all contacts.[`fetch_contacts`](docs/ContactsApi.md#fetch_contacts)
36
-
1. Removes a contact from a group.[`remove_contact_from_group`](docs/ContactsApi.md#remove_contact_from_group)
37
-
1. Updates a contact.[`update_contact`](docs/ContactsApi.md#update_contact)
30
+
1. Adds a contact to a group [`add_contact_to_group`](docs/ContactsApi.md#add_contact_to_group)
31
+
1. Creates a new contact [`create_contact`](docs/ContactsApi.md#create_contact)
32
+
1. Deletes a contact [`delete_contact`](docs/ContactsApi.md#delete_contact)
33
+
1. Lists a contact [`fetch_contact`](docs/ContactsApi.md#fetch_contact)
34
+
1. Lists groups of a contact [`fetch_contact_groups`](docs/ContactsApi.md#fetch_contact_groups)
35
+
1. Returns all contacts [`fetch_contacts`](docs/ContactsApi.md#fetch_contacts)
36
+
1. Removes a contact from a group [`remove_contact_from_group`](docs/ContactsApi.md#remove_contact_from_group)
37
+
1. Updates a contact [`update_contact`](docs/ContactsApi.md#update_contact)
38
38
39
39
### DeliveryReportApi
40
40
41
-
1. Retrieves the delivery report for the Omnimessage.[`retrieve_delivery_report`](docs/DeliveryReportApi.md#retrieve_delivery_report)
41
+
1. Retrieves the delivery report for the Omnimessage [`retrieve_delivery_report`](docs/DeliveryReportApi.md#retrieve_delivery_report)
42
42
43
43
### GroupsApi
44
44
45
-
1. Creates a new group with the provided name.[`create_group`](docs/GroupsApi.md#create_group)
46
-
1. Deletes a group.[`delete_group`](docs/GroupsApi.md#delete_group)
47
-
1. Lists a group.[`fetch_group`](docs/GroupsApi.md#fetch_group)
48
-
1. Returns all groups.[`fetch_groups`](docs/GroupsApi.md#fetch_groups)
49
-
1. Updates a group with the provided name.[`update_group`](docs/GroupsApi.md#update_group)
45
+
1. Creates a new group with the provided name [`create_group`](docs/GroupsApi.md#create_group)
46
+
1. Deletes a group [`delete_group`](docs/GroupsApi.md#delete_group)
47
+
1. Lists a group [`fetch_group`](docs/GroupsApi.md#fetch_group)
48
+
1. Returns all groups [`fetch_groups`](docs/GroupsApi.md#fetch_groups)
49
+
1. Updates a group with the provided name [`update_group`](docs/GroupsApi.md#update_group)
50
50
51
51
### OmnimessageApi
52
52
53
-
1. Cancels a scheduled Omnimessage.[`cancel_scheduled_message`](docs/OmnimessageApi.md#cancel_scheduled_message)
54
-
1. Sends an Omnimessage.[`send_omnimessage`](docs/OmnimessageApi.md#send_omnimessage)
53
+
1. Cancels a scheduled Omnimessage [`cancel_scheduled_message`](docs/OmnimessageApi.md#cancel_scheduled_message)
54
+
1. Sends an Omnimessage [`send_omnimessage`](docs/OmnimessageApi.md#send_omnimessage)
Copy file name to clipboardExpand all lines: docs/BlacklistApi.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,16 @@ All URIs are relative to *https://api.messente.com/v1*
4
4
5
5
Method | HTTP request | Description
6
6
------------- | ------------- | -------------
7
-
[**add_to_blacklist**](BlacklistApi.md#add_to_blacklist) | **POST** /phonebook/blacklist | Adds a phone number to the blacklist.
8
-
[**delete_from_blacklist**](BlacklistApi.md#delete_from_blacklist) | **DELETE** /blacklist/{phone} | Deletes a phone number from the blacklist.
9
-
[**fetch_blacklist**](BlacklistApi.md#fetch_blacklist) | **GET** /phonebook/blacklist | Returns all blacklisted phone numbers.
10
-
[**is_blacklisted**](BlacklistApi.md#is_blacklisted) | **GET** /blacklist/{phone} | Checks if a phone number is blacklisted.
7
+
[**add_to_blacklist**](BlacklistApi.md#add_to_blacklist) | **POST** /phonebook/blacklist | Adds a phone number to the blacklist
8
+
[**delete_from_blacklist**](BlacklistApi.md#delete_from_blacklist) | **DELETE** /phonebook/blacklist/{phone} | Deletes a phone number from the blacklist
9
+
[**fetch_blacklist**](BlacklistApi.md#fetch_blacklist) | **GET** /phonebook/blacklist | Returns all blacklisted phone numbers
10
+
[**is_blacklisted**](BlacklistApi.md#is_blacklisted) | **GET** /phonebook/blacklist/{phone} | Checks if a phone number is blacklisted
**phone_number** | **str** | Phone number in e.164 format |
7
-
**email** | **str** | | [optional]
8
-
**first_name** | **str** | | [optional]
9
-
**last_name** | **str** | | [optional]
10
-
**company** | **str** | | [optional]
11
-
**title** | **str** | | [optional]
12
-
**custom** | **str** | | [optional]
13
-
**custom2** | **str** | | [optional]
14
-
**custom3** | **str** | | [optional]
15
-
**custom4** | **str** | | [optional]
7
+
**email** | **str** | The email of the contact | [optional]
8
+
**first_name** | **str** | The first name of the contact | [optional]
9
+
**last_name** | **str** | The last name of the contact | [optional]
10
+
**company** | **str** | The company of the contact | [optional]
11
+
**title** | **str** | The title of the contact | [optional]
12
+
**custom** | **str** | The first custom field | [optional]
13
+
**custom2** | **str** | The second custom field | [optional]
14
+
**custom3** | **str** | The third custom field | [optional]
15
+
**custom4** | **str** | The fourth custom field | [optional]
16
16
17
17
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**contacts** | [**list[ContactFields]**](ContactFields.md) | An array of contacts | [optional]
7
7
8
8
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**email** | **str** | The email of the contact | [optional]
7
+
**first_name** | **str** | The first name of the contact | [optional]
8
+
**last_name** | **str** | The last name of the contact | [optional]
9
+
**company** | **str** | The company of the contact | [optional]
10
+
**title** | **str** | The title of the contact | [optional]
11
+
**custom** | **str** | The first custom field | [optional]
12
+
**custom2** | **str** | The second custom field | [optional]
13
+
**custom3** | **str** | The third custom field | [optional]
14
+
**custom4** | **str** | The fourth custom field | [optional]
15
15
16
16
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments