📬
MobiPay API Documentation
Mobivate
📬
MobiPay API Documentation
  • 👋Welcome to MobiPay
  • Send SMS via HTTP (MT)
  • Receive SMS via HTTP (MO)
  • Use Cases
    • Send SMS via HTTP (MT) Example
    • Receive SMS via HTTP (MO) Example
    • Gateway Responses
    • Send Silent OBS Billing Message Example
    • Unsubscribe VIA MT Unsubscribe Notification
    • Receive Delivery Receipt via HTTP (DR)
    • Acknowledging MO's and DR's
    • Send A Premium SMS via HTTP (MT) Example
    • Vodafone/Airtel Ghana Billing
  • API Message Paramaters
    • API Message Parameters
    • Send BINARY SMS (MT) parameters
    • Receive SMS (MO) parameters
    • Subscription API (RESTFul)
      • Initiate Subscription (API)
      • Validate PIN (API)
      • Unsubscribing Users (API)
      • Checking Subscription Status (API)
      • Sending Messages To Subscribers (API)
      • Sending Content To Subscribers (API)
    • Content API (RESTFul)
      • Content Types (API)
      • Content Categories (API)
      • Search Content (API)
      • Latest Content Items (API)
      • Content Items (API)
  • Network Double Opt-In
    • Network Double Opt-in (NDOI)
    • Network Double Opt-in (NDOI) Unsubscribe
    • NDOI Keyword Patterns per country
  • MNO Web Opt-in
    • MNO Web Opt-in Introduction
    • MNO Web Opt-In South Africa
    • MNO Web Opt-In Kenya
      • Configuring your campaign
      • Subscribing users to your service
        • Subscribing users via Upstream
        • Subscribing users via Scienlabs
      • Unsubscribing users from your service
      • Receiving callback notifications
    • MNO Web Opt-In Nigeria
      • Subscribing the User to the Service
      • Unsubscribing user from the Service
      • Delivery Notifications
  • UK Direct Carrier Billing
    • UK DCB/Charge to Bill
      • UK Network Flows
Powered by GitBook
On this page

Was this helpful?

  1. Use Cases

Receive Delivery Receipt via HTTP (DR)

Learn how to receive delivery receipts to your endpoint.

GET /yoursite.com.au/

When a DR (Delivery receipt) arrives at our SMS Gateway, it will send the following request to your application.

Example

http://www.yoursite.com.au/DeliveryReciept?ORIGINATOR=61412345678&RECIPIENT=1987654&PROVIDER=telstra&VALUE=<value>&MESSAGE_TEXT=Hello%20There&ID=939ec52e333fbf124a87845d3a5d72e1&REFERENCE=ABC123&RESULT=SUCCESS

Body

Parameter
Type
Example
Description

originator

integer

12345

The associated shortcode for your service.

recipient

integer

XX7432104492

The recipient you want to send this message to.

provider

string

Telstra

The network you plan to send the SMS message via.

value

integer

20

The cost of the message.

message_text

string

Hello%20There

Your URL encoded message.

id

string

939ec52e333fbf124a87845d3a5d72e1

Your unique message ID.

reference

string

ABC123

Your own message reference.

result

string

SUCCESS

Indicates the result of the message.

Output

{
 "ORIGINATOR": "61412345678",
 "RECIPIENT": "1987654",
 "PROVIDER": "telstra",
 "VALUE": "20",
 "MESSAGE_TEXT": "Hello%20There",
 "ID": "939ec52e333fbf124a87845d3a5d72e1",
 "REFERENCE": "ABC123",
 "RESULT": "SUCCESS"
}

If you would like to receive Delivery Receipts, you need to provide us with the Delivery Receipt destination (URL). Please contact your account manager.

PreviousUnsubscribe VIA MT Unsubscribe NotificationNextAcknowledging MO's and DR's

Last updated 1 year ago

Was this helpful?