This is a C# Client for Infobip API and you can use it as a dependency in your application. To use this library you'll need an Infobip account. You can create a free trial account here.
The library is built on top of OpenAPI Specification and powered by OpenAPI Generator.
Infobip API Documentation can be found here.
For Infobip.Api.Client
versioning we use Semantic Versioning scheme.
Published under MIT License.
.NET Standard 2.0 is targeted for usage of this library.
Recommended way of library usage is to install it via NuGet Package Manager.
Within Visual Studio, use the Package Manager UI to browse for Infobip.Api.Client
package and install the latest version to your project.
Alternatively, also within Visual Studio, use the Package Manager Console command:
Install-Package Infobip.Api.Client -Version 3.0.1
If you are used to .NET CLI, the following command is going to be sufficient for you:
dotnet add package Infobip.Api.Client --version 3.0.1
Including the package directly into project file is also valid option.
<PackageReference Include="Infobip.Api.Client" Version="3.0.1" />
Before initializing client we have to prepare Configuration
object for handling authentication.
The library supports the API Key Header authentication method.
To see your base URL, log in to the Infobip API Resource hub with your Infobip account.
var configuration = new Configuration()
{
BasePath = "<put your base URL here prefixed by https://>",
ApiKey = "<put your API key here>"
};
Next step is to initialize the API client. In this case we're instantiating the SMS API client.
var smsApi = new SmsApi(configuration);
Since library is utilizing the HttpClient
behind the scene for handling the HTTP calls you can provide your own instance of HttpClient
to SendSmsApi
constructor and have a control over its lifecycle.
var smsApi = new SmsApi(myHttpClientInstance, configuration);
Here's a simple example for sending an SMS message. First prepare the message by creating an instance of SmsAdvancedTextualRequest
and its nested objects.
var smsMessage = new SmsTextualMessage(
from: "SMSInfo",
destinations: new List<SmsDestination>()
{
new SmsDestination(to: "41793026727")
},
text: "This is a dummy SMS message sent using Infobip.Api.Client"
);
var smsRequest = new SmsAdvancedTextualRequest(
messages: new List<SmsTextualMessage>
{
smsMessage
}
);
Now we can send the message using client instantiated before and inspect the ApiException
for more information in case of failure.
You can get the HTTP status code from ErrorCode
property, and more details about error from ErrorContent
property.
try
{
var smsResponse = smsApi.SendSmsMessage(smsRequest);
System.Diagnostics.Debug.WriteLine($"Status: {smsResponse.Messages.First().Status}");
}
catch (ApiException apiException)
{
var errorCode = apiException.ErrorCode;
var errorHeaders = apiException.Headers;
var errorContent = apiException.ErrorContent;
}
Additionally, from the successful response (SmsResponse
object) you can pull out the bulkId
and messageId
(s) and use them to fetch a delivery report for given message or bulk.
Bulk ID will be received only when you send a message to more than one destination address or multiple messages in a single request.
string bulkId = smsResponse.BulkId;
string messageId = smsResponse.Messages.First().MessageId;
For each SMS that you send out, we can send you a message delivery report in real time. All you need to do is specify your endpoint when sending SMS in notifyUrl
field of SmsTextualMessage
, or subscribe for reports by contacting our support team.
e.g. https://{yourDomain}/delivery-reports
You can use data models from the library and the pre-configured Newtonsoft.Json
serializer (version 13.0.3).
Example of webhook implementation:
[HttpPost("api/sms/delivery-reports")]
public IActionResult ReceiveDeliveryReport([FromBody] SmsDeliveryResult deliveryResult)
{
foreach (var result in deliveryResult.Results)
{
System.Diagnostics.Debug.WriteLine($"{result.MessageId} - {result.Status.Name}");
}
return Ok();
}
If you prefer to use your own serializer, please pay attention to the supported date format.
Library is using custom date format string yyyy-MM-ddTHH:mm:ss.fffzzzz
when serializing dates. This format does not exactly match the format from our documentation above, but it is the closest possible. This format produces the time zone offset value with :
as time separator, but our backend services will deserialize it correctly.
If you are for any reason unable to receive real time delivery reports on your endpoint, you can use our Delivery reports API to fetch them.
Each request will return a batch of delivery reports - only once.
You can filter reports by multiple parameters (see API's documentation for full list), for example, by bulkId
, bulkId
and limit
like in the snippet below:
int numberOfReportsLimit = 10;
var smsDeliveryResult = smsApi.GetOutboundSmsMessageDeliveryReports(
bulkId: bulkId,
messageId: messageId,
limit: numberOfReportsLimit
);
foreach (var smsReport in smsDeliveryResult.Results)
{
Console.WriteLine($"{smsReport.MessageId} - {smsReport.Status.Name}");
}
Infobip API supports Unicode characters and automatically detects encoding. Unicode and non-standard GSM characters use additional space, avoid unpleasant surprises and check how different message configurations will affect your message text, number of characters and message parts. Use the preview SMS message functionality to verify those details as demonstrated below.
var smsPreviewRequest = new SmsPreviewRequest(
text: "Let's see how many characters will remain unused in this message."
);
var smsPreviewResponse = smsApi.PreviewSmsMessage(smsPreviewRequest);
If you want to receive SMS messages from your subscribers we can have them delivered to you in real time.
When you buy and configure a number capable of receiving SMS, specify your endpoint as explained here e.g. https://{yourDomain}/incoming-sms
.
Example of webhook implementation:
[HttpPost("api/sms/incoming-sms")]
public IActionResult ReceiveSms([FromBody] SmsInboundMessageResult smsInboundMessageResult)
{
foreach (var result in smsInboundMessageResult.Results)
{
System.Diagnostics.Debug.WriteLine($"{result.From} - {result.CleanText}");
}
return Ok();
}
For 2FA quick start guide please check these examples.
For send email quick start guide please check these examples.
Feel free to open issues on the repository for any issue or feature request.
Check the CONTRIBUTING
file for details about contributions - in short, we will not merge any pull requests since this code is auto-generated.
However, if you find something that requires our imminent attention feel free to contact us @ support@infobip.com.