https://github.com/seven-io/net-client
Official .NET API Client for seven
https://github.com/seven-io/net-client
api-client cnam csharp dotnet hlr mnp sdk sms text2speech tts
Last synced: about 1 year ago
JSON representation
Official .NET API Client for seven
- Host: GitHub
- URL: https://github.com/seven-io/net-client
- Owner: seven-io
- License: mit
- Created: 2020-07-30T13:36:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-10T12:17:17.000Z (over 1 year ago)
- Last Synced: 2025-05-27T16:17:45.209Z (about 1 year ago)
- Topics: api-client, cnam, csharp, dotnet, hlr, mnp, sdk, sms, text2speech, tts
- Language: C#
- Homepage: https://www.nuget.org/packages/sms77-api/
- Size: 167 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Official .NET API Client for the [seven SMS Gateway](https://www.seven.io)
## Installation
**.NET CLI**
```shell
dotnet add package sms77-api
```
**Package Manager**
```shell
Install-Package sms77-api
```
**Package Reference**
```xml
```
**Paket**
```shell
paket add sms77-api
```
**F# Interactive**
```shell
#r "nuget: sms77-api, 1.2.0"
```
### Example
```c#
using System;
using System.Threading.Tasks;
using Client = Sms77.Api.Client;
class Program
{
static async Task Main()
{
var apiKey = Environment.GetEnvironmentVariable("SMS77_API_KEY");
var client = new Client(apiKey);
var balance = await client.Balance();
Console.WriteLine($"Current account balance: {balance}");
}
}
```
#### Support
Need help? Feel free to [contact us](https://www.sms77.io/en/company/contact/).
##### License
[](LICENSE)