curl -X POST 'https://frogtestapi.wigal.com.gh/api/v3/sms/otp/verify'
"API-KEY: your_api_key_here"
"USERNAME: your_username_here"
'{"your_request_body_here"}'
const apiKey = 'your_api_key_here';
const username = 'your_username_here';
const postData = {
number: "0276128036",
expiry: 1,
length: 5,
messagetemplate: "Hello, your OTP is : %OTPCODE%. It will expire after %EXPIRY% mins",
type: "ALPHANUMERIC",
senderid: "Stevkky"
};
fetch('https://frogtestapi.wigal.com.gh/api/v3/sms/otp/generate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'API-KEY': apiKey,
'USERNAME': username
},
body: JSON.stringify(postData)
})
.then(response => response.json())
.then(data => {
console.log(data);
})
.catch(error => {
console.error('Error:', error);
});
import requests
import json
api_key = 'your_api_key_here'
username = 'your_username_here'
post_data = {
"number": "0276128036",
"expiry": 1,
"length": 5,
"messagetemplate": "Hello, your OTP is : %OTPCODE%. It will expire after %EXPIRY% mins",
"type": "ALPHANUMERIC",
"senderid": "Stevkky"
}
headers = {
'Content-Type': 'application/json',
'API-KEY': api_key,
'USERNAME': username
}
response = requests.post('https://frogtestapi.wigal.com.gh/api/v3/sms/otp/generate', headers=headers, data=json.dumps(post_data))
print(response.json())
$apiKey = 'your_api_key_here';
$username = 'your_username_here';
$postData = array(
'number' => '0276123036',
'expiry' => 1,
'length' => 5,
'messagetemplate' => 'Hello, your OTP is : %OTPCODE%. It will expire after %EXPIRY% mins',
'type' => 'ALPHANUMERIC',
'senderid' => 'Stevkky'
);
$ch = curl_init('https://frogtestapi.wigal.com.gh/api/v3/sms/otp/generate');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'API-KEY: ' . $apiKey,
'USERNAME: ' . $username
));
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($postData));
$response = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
} else {
echo $response;
}
curl_close($ch);
?>