Skip to content
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.

Latest commit

 

History

History
62 lines (42 loc) · 1.97 KB

DeliveryReportApi.md

File metadata and controls

62 lines (42 loc) · 1.97 KB

omnichannel.DeliveryReportApi

All URIs are relative to https://api.messente.com/v1

Method HTTP request Description
retrieve_delivery_report GET /omnimessage/{omnimessage_id}/status Retrieves the delivery report for the Omnimessage

retrieve_delivery_report

DeliveryReportResponse retrieve_delivery_report(omnimessage_id)

Retrieves the delivery report for the Omnimessage

Example

  • Basic Authentication (basicAuth):
from __future__ import print_function
import time
import omnichannel
from omnichannel.rest import ApiException
from pprint import pprint

# Configure HTTP basic authorization: basicAuth
configuration = omnichannel.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'

# create an instance of the API class
api_instance = omnichannel.DeliveryReportApi(omnichannel.ApiClient(configuration))
omnimessage_id = 'omnimessage_id_example' # str | UUID of the Omnimessage to for which the delivery report is to be retrieved

try:
    # Retrieves the delivery report for the Omnimessage
    api_response = api_instance.retrieve_delivery_report(omnimessage_id)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DeliveryReportApi->retrieve_delivery_report: %s\n" % e)

Parameters

Name Type Description Notes
omnimessage_id str UUID of the Omnimessage to for which the delivery report is to be retrieved

Return type

DeliveryReportResponse

Authorization

basicAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: /

[Back to top] [Back to API list] [Back to Model list] [Back to README]