Smart USSD V2

This is the upgraded version of the SmartUSSD API documentation which uses the JSON response. This document gives detailed information on how to integrate with the Smart USSD Version 2 via the JSON API services. It also serves USSD content providers who wish to serve USSD menus for end-users connected to the networks configured on this system. NB:The Smart USSD service is available on all the Telecommunication Networks in Ghana.

SMART USSD JSON API

Instructions

The Smart USSD JSON API requires content providers (Developers) to provide a URL that accepts the following parameters using the POST method:

Endpoint: POST

THeader Data

Parameters For USSD API

FIELD/PARAMETERS VALUE REQUIRED DESCRIPTION
Content-Type application/json; charset=UTF-8 YES This is needed to encode to UTF-8.

Payload description

NB:All parameters must be JSON.

PARAMETER TYPE POSITION REQUIRED DESCRIPTION
network STRING 1 YES The network from which the traffic originated. This will always be provided by WIGAL and must be returned as it is, in the response string.
sessionid STRING 4 YES The unique string that identifies each session the end-user starts. This will always be provided by WIGAL and must be returned as it is, in the response string
mode STRING 2 YES This is used to determine if you require an input from the end-user or not. The below are the specific mode needed in CAPITAL LETTERS. START (New session) MORE (Require input) END (Close session).
msisdn STRING 3 YES Phone number of the end-user. This will always be provided. by WIGAL and must be returned as it is, in the response string.
userdata STRING 5 YES Data from the end-user or Data from Content Providers. This must be provided by the Content Provider.
username STRING 6 YES Your username registered with WIGAL. This will always be provided by WIGAL and must be returned as it is, in the response string.
trafficid STRING 7 YES Uniquely identifies every traffic even if from the same session. This will always be provided by WIGAL and must be returned as it is, in the response string.
other STRING 8 NO Optional reference data by Third-Party. Parameter will be returned in the next request same as provided by third-party.
START always begins the session of the USSD.

Example Service Request

The below is a sample callback URL provided by a content provider (Developer): https://192.168.10.12/ussdservice.php

Wigal USSD API expects response from content provider as JSON. The fields expected are detailed below followed by an example JSON in the required format: The "\n and^" Character is used as a newline indicator.

{
  "network": "MTN",
  "sessionid": "169264399917825",
  "mode": "START",
  "phonenumber": "233276128036",
  "userdata": "800*8989",
  "username": "smartussdv2",
  "trafficid": "90",
  "other": ""
}

Below is a sample PHP script:

$data = @file_get_contents('php://input');
$dataobj = json_decode($data);
// Check if data is not empty and is an object
if (!empty($data) && is_object($dataobj)) {
// Check if mode is "start"
if (strtolower($dataobj->mode) == 'start') {
$dataobj->mode = "more";
$dataobj->userdata = "Welcome to Version2^ Choose your option:^1.Input^2.Message^3.End";
} else {
// Process the userdata for options
if ($dataobj->userdata == '1') {
$dataobj->userdata = "You choose input.";
}
if ($dataobj->userdata == '2') {
$dataobj->userdata = "You choose Message.";
}
if ($dataobj->userdata == '3') {
$dataobj->userdata = "You choose End.";
}
$dataobj->mode = "end";
}
}
echo json_encode($dataobj);

Sample Responds

$data = @file_get_contents('php://input');
$dataobj = json_decode($data);
// Check if data is not empty and is an object
if (!empty($data) && is_object($dataobj)) {
// Check if mode is "MORE"
if (strtolower($dataobj->mode) == 'more') {
$dataobj->mode = "more";
$dataobj->userdata = "Welcome to Version2\n Choose your option:\n1.Input^2.Message^3.End";
} else {
// Process the userdata for options
if ($dataobj->userdata == '1') {
$dataobj->userdata = "You choose input.";
}
if ($dataobj->userdata == '2') {
$dataobj->userdata = "You choose Message.";
}
if ($dataobj->userdata == '3') {
$dataobj->userdata = "You choose End.";
}
$dataobj->mode = "end";
}
}
echo json_encode($dataobj);

The above sample response will achieve the menu displayed as below;

Welcome to Version2Choose your option:1.Input2.Message3.End

NB: Max characters per page must be 160 including spaces. If exceeded, the message will be truncated. Avoid special characters like $ ` < ' & in the USERDATA field to prevent display issues with USSD menus.

WIGAL SMART USSD API receives the response and parse the request, and depending on that particular network setups, it generates an appropriate network response in protocols such as SMPP, SOAP, SS7, etc. and send to the respective network operator.

Developers Example in PHP

Get a complete sample PHP script with it’s Database structure on our Github page here:

Github Repository