HollaTags API
  • Introduction
  • 📳SMS
    • Send
    • Receive
    • Status
    • Credit
    • Lookup
    • Send SMS Sample Code
    • Receive SMS Sample Code
    • API Response
    • Callback
    • OTP
    • SMS DLR Error Codes
  • 📳USSD
    • USSD Inbound
    • USSD Outbound
    • USSD Sample Code
    • USSD Error Codes
  • 📳WhatsApp
    • WhatsApp Chat
    • WhatsApp Push
    • WhatsApp Sample Code
  • 📳SMPP
    • SMPP Specification
    • SMPP Servers
    • SMPP Authentication
    • SMPP Configuration
    • SMPP Message PDU
    • SMPP Client Configuration
    • SMPP Response Codes
    • SMPP DLR Codes
  • 💳Airtime
    • Airtime (VTU)
  • ❓FAQ
    • USSD - Dedicated
    • USSD - Shared
Powered by GitBook
On this page

Was this helpful?

  1. SMS

Receive

To use this feature, you will need to purchase an inbound (MO) shortcode or longcode number. Then provide us with your URL for the inbound (MO) 2way messages. All incoming messages from your shortcode would be routed to your provided URL.

Receive

POST http://ClientSMSChatURL.com/

Request Body

Name
Type
Description

sms_from

integer

Originating mobile

sms_to

string

Your short or longcode number

sms_message

string

SMS message content

{"sms_message":"Thank you"}

Only sms_message is required in your json response. You do not need to define sms_from or sms_to. Your sms_message will by default go to the originating mobile number i.e the current session sms_to.

PreviousSendNextStatus

Last updated 3 years ago

Was this helpful?

📳