SMS OTP Implementation

Generate SMS OTP.

https://frogapi.wigal.com.gh/api/v3/sms/otp/generate

Request Object

Field Type Description
number string The recipient's phone number.
expiry integer The time duration before the OTP expires.
length integer The length of the OTP code.
messagetemplate string The message template with placeholders.
type string Type of OTP (NUMERIC/ALPHA/ALPHANUMERIC).
senderid string Approved Sender ID.

Placeholders

Available placeholders: %EXPIRY%, %OTPCODE%, %SERVICE%, %LENGTH%, %TYPE%.

%EXPIRY% Expiry time in minutes
%OTPCODE% Generated OTP code
%SERVICE% Service/Application name
%LENGTH% OTP code length
%TYPE% OTP code type

Responses

Field Type Description
status string Returns "SUCCESS" when OTP is generated
message string Confirmation message
Field Type Description
status string Error status ("ERROR")
message string Error description ("Insufficient Balance")
Field Type Description
status string Error status code
message string Error description
Field Type Description
status string Error status code ("ERROR")
message string Error description ("Message template must contain %OTPCODE% placeholder")
Field Type Description
status string Server error status
message string Internal server error message

SMS OTP Verification

Verify SMS OTP code.

https://frogapi.wigal.com.gh/api/v3/sms/otp/verify

Request Object

Field Type Description
otpcode string The OTP code to be verified.
number string The recipient's phone number.

Response Object

Field Type Description
status string The status of the request.
message string The message response.

Responses

Field Type Description
status string Verification success status
message string Confirmation message
Field Type Description
status string Status Message ("ERROR")
message string Error description ("Missing required fields")
Field Type Description
status string Verification error status
message string Error description
Field Type Description
status string Status Message ("ERROR")
message string Error description ("OTP code has expired")
Field Type Description
status string Server error status
message string Internal server error message