Messente's API which allows sending messages via various channels with fallback options.
Python 2.7 and 3.4+
The latest released version is available via PyPI
pip install omnichannel-api
For the latest (unreleased) version you may want to install from Github
pip install git+https://github.com/messente/messente-omnichannel-python.git
Then import the package:
import omnichannel
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install
to install the package for all users)
Then import the package:
import omnichannel
Please follow the installation procedure and then run the following:
from __future__ import print_function
import time
import omnichannel
from omnichannel.rest import ApiException
from pprint import pprint
from omnichannel import OmnimessageApi, Viber, SMS, Omnimessage, Configuration, ApiClient, WhatsApp, WhatsAppText
from omnichannel.rest import ApiException
# API information from https://dashboard.messente.com/api-settings
configuration = Configuration()
configuration.username = "<MESSENTE_API_USERNAME>"
configuration.password = "<MESSENTE_API_PASSWORD>"
# create an instance of the API class
api_instance = OmnimessageApi(ApiClient(configuration))
whatsapp = WhatsApp(
sender="<sender name (optional)>",
text=WhatsAppText(
body="hello whatsapp"
)
)
viber = Viber(
sender="<sender name (optional)>",
text="hello python",
)
sms = SMS(
sender="<sender name (optional)>",
text="hello python",
)
# The order of items in "messages" specifies the sending order: WhatsApp will be attempted
# first, then Viber, and SMS as the final fallback
omnimessage = Omnimessage(
messages=(whatsapp, viber, sms),
to="<recipient_phone_number>",
) # Omnimessage | Omnimessage object that is to be sent
try:
# Sends an Omnimessage
response = api_instance.send_omnimessage(omnimessage)
print(
"Successfully sent Omnimessage with id: %s that consists of the following messages:" % response.omnimessage_id
)
for message in response.messages:
pprint(message)
except ApiException as e:
print("Exception when calling OmnimessageApi->create_omnimessage: %s\n" % e)
All URIs are relative to https://api.messente.com/v1
Class | Method | HTTP request | Description |
---|---|---|---|
DeliveryReportApi | retrieve_delivery_report | GET /omnimessage/{omnimessage_id}/status | Retrieves the delivery report for the Omnimessage |
OmnimessageApi | cancel_scheduled_message | DELETE /omnimessage/{omnimessage_id} | Cancels a scheduled Omnimessage |
OmnimessageApi | send_omnimessage | POST /omnimessage | Sends an Omnimessage |
- Channel
- DeliveryReportResponse
- DeliveryResult
- Err
- ErrorItem
- ErrorResponse
- MessageResult
- OmniMessageCreateSuccessResponse
- Omnimessage
- ResponseErrorCode
- ResponseErrorTitle
- SMS
- Status
- Viber
- WhatsAppAudio
- WhatsAppDocument
- WhatsAppImage
- WhatsAppText
- Type: HTTP basic authentication