Termii.NET
1.0.2
dotnet add package Termii.NET --version 1.0.2
NuGet\Install-Package Termii.NET -Version 1.0.2
<PackageReference Include="Termii.NET" Version="1.0.2" />
paket add Termii.NET --version 1.0.2
#r "nuget: Termii.NET, 1.0.2"
// Install Termii.NET as a Cake Addin #addin nuget:?package=Termii.NET&version=1.0.2 // Install Termii.NET as a Cake Tool #tool nuget:?package=Termii.NET&version=1.0.2
Termii.NET
This utility library is designed to make integrating with Termii easier using C#
Usage
To download from Nuget.org
dotnet add package Termii.NET
The library has one classes TermiiService
.
TermiiService exposes APIs directly integrated to TERMII's API.
Firstly, you have to initialize TermiiService:
var messaging = new TermiiService("{YOUR_API_KEY}", "{YOUR_SENDER_ID}");
GetBalance
This method returns your total balance and balance information from your wallet, such as currency.
Here is how to use this method:
var balance = await messaging.GetBalance();
Console.WriteLine(JsonConvert.SerializeObject(balance));
{
"user": "Tayo Joel",
"balance": 0,
"currency": "NGN"
}
SearchPhoneNumber
This method allows businesses verify phone numbers and automatically detect their status as well as current network. It also tells if the number has activated the do-not-disturb settings
Here is how to use this method:
var searchNumber = await messaging.SearchPhoneNumber("07089509657");
Console.WriteLine(JsonConvert.SerializeObject(searchNumber));
{
"number": "2347089509657",
"status": "DND blacklisted",
"network": "Airtel Nigeria",
"network_code": "62120"
}
GetHistory
This method returns reports for messages sent across the sms, voice & whatsapp channels. Reports can either display all messages on termii or a single message.
Here is how to use this method:
var history = await messaging.GetHistory();
Console.WriteLine(JsonConvert.SerializeObject(history));
{
"data": [
{
"sender": "SecureM",
"receiver": "23499990111",
"country_code": "234",
"message": "This is your sign in code 189165",
"amount": 1,
"reroute": 0,
"status": "Delivered",
"sms_type": "plain",
"send_by": "api",
"media_url": null,
"message_id": "10202408333113000220182700000094918",
"notify_url": "https://google.com",
"notify_id": null,
"created_at": "2024-08-02T19:18:27Z",
"sent_at": "2024-08-02T19:18:27Z"
}
],
"links": {
"first": "http://api.ng.termii.com/api/sms/inbox?page=1",
"last": "http://api.ng.termii.com/api/sms/inbox?page=9",
"prev": null,
"next": "http://api.ng.termii.com/api/sms/inbox?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 9,
"path": "http://api.ng.termii.com/api/sms/inbox",
"per_page": 15,
"to": 15,
"total": 125
}
}
You can also use this method by parsing in a specific messageId. This will return details for the messageId alone.
var history = await messaging.GetHistory("10202408333113000220182700000094918");
Console.WriteLine(JsonConvert.SerializeObject(history));
{
"data": [
{
"sender": "SecureM",
"receiver": "23499990111",
"country_code": "234",
"message": "This is your sign in code 189165",
"amount": 1,
"reroute": 0,
"status": "Delivered",
"sms_type": "plain",
"send_by": "api",
"media_url": null,
"message_id": "10202408333113000220182700000094918",
"notify_url": "https://dashboard.getconvoy.io/ingest/6FMau5w7seS3Swjs",
"notify_id": null,
"created_at": "2024-08-02T19:18:27Z",
"sent_at": "2024-08-02T19:18:27Z"
}
],
"links": {
"first": "http://api.ng.termii.com/api/sms/inbox?page=1",
"last": "http://api.ng.termii.com/api/sms/inbox?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "http://api.ng.termii.com/api/sms/inbox",
"per_page": 15,
"to": 1,
"total": 1
}
}
SendSms
This method allows businesses send text messages to their customers across different messaging channels. It takes the text and an array of phone numbers (max of 100 phone numbers).
Messaging Channels/Routes
generic: This channel is used to send promotional messages and messages to phone number not on dnd dnd: On this channel all your messages deliver whether there is dnd restriction or not on the phone number whatsapp: This channel sends messages via WhatsApp
var sendSms = await messaging.SendSms("This is to notify you", ["08136644812"]);
Console.WriteLine(JsonConvert.SerializeObject(sendSms));
{
"message_id": "9122821270554876574",
"message": "Successfully Sent",
"balance": 9,
"user": "Peter Mcleish"
}
SendBulkSms
This method allows businesses send text messages to their customers across different messaging channels. It takes the text and an array of phone numbers (max of 10,000 phone numbers).
Messaging Channels/Routes
generic: This channel is used to send promotional messages and messages to phone number not on dnd dnd: On this channel all your messages deliver whether there is dnd restriction or not on the phone number whatsapp: This channel sends messages via WhatsApp
var sendSms = await messaging.SendSms("This is to bulk notify you", ["08136644812"]);
Console.WriteLine(JsonConvert.SerializeObject(sendSms));
{
"code": "ok",
"message_id": "9122821270554876574",
"message": "Successfully Sent",
"balance": 9,
"user": "Peter Mcleish"
}
SendToken
The send token method allows businesses trigger one-time-passwords (OTP) across any available messaging channel on Termii. One-time-passwords created are generated randomly and there's an option to set an expiry time. Parameters expected are message_text, phoneNumber, pin_placeholder. Optional parameters include channel, message_type, pin_attempts, pin_time_to_live, pin_length.
var sendToken = await messaging.SendToken("This is your sign in code <code>", "08136644812", "<code>");
Console.WriteLine(JsonConvert.SerializeObject(sendToken));
{
"pinId": "29ae67c2-c8e1-4165-8a51-8d3d7c298081",
"to": "2348136644812",
"smsStatus": "Message Sent"
}
VerifyToken
The verify token method checks tokens sent to customers and returns a response confirming the status of the token. A token can either be confirmed as verified or expired based on the timer set for the token. Parameters expected are pin_id and pin.
var verifyToken = await messaging.VerifyToken("1a116587-2e19-4858-80df-f6638427ddeb", "189165");
Console.WriteLine(JsonConvert.SerializeObject(verifyToken));
{
"pinId": "c8dcd048-5e7f-4347-8c89-4470c3af0b",
"verified": "True",
"msisdn": "2348109077743"
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.Extensions.Http (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.