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. USSD

USSD Inbound

PreviousSMS DLR Error CodesNextUSSD Outbound

Last updated 3 years ago

Was this helpful?

Inbound

GET https://ClientApplicationURL.com/

When the mobile user dials your USSD code, e.g *4441#, the USSD Gateway will automatically invoke your URL and pass all the pre-defined parameters. You are required to provide your application URL for the USSD inbound (MO) messages.

Query Parameters

Name
Type
Description

session_msisdn

integer

Mobile number (must be in international format e.g. 234819*)

session_operation

string

USSD Operation Category begin: New USSD session with the USSDC continue: To continue a USSD session with the USSDC for the specified session_id end: Used to indicate the end of a USSD session

session_msg

string

USSD message content (must be <= 160 chars)

session_id

integer

A unique identifier for a menu interaction. You will indicate this in your response to the user so as to maintain the same menu communication.

session_from

string

Originating USSD code

session_type

integer

1: Require input or reply from the user 2: Notify user without any response required. 3: When responding to a request from msisdn. 4: Notify user and end interaction.

session_mno

string

Originating mobile network. MTN, 9MOBILE, AIRTEL, GLO

{"session_operation":"end","session_type":4,"session_id":123456,"session_msg":"Thank you."}
📳