Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 month 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-19T12:53:36.000Z (8 months ago)
- Last Synced: 2024-11-02T04:05:22.896Z (about 2 months ago)
- Topics: api-client, cnam, csharp, dotnet, hlr, mnp, sdk, sms, text2speech, tts
- Language: C#
- Homepage: https://www.nuget.org/packages/sms77-api/
- Size: 144 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
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
[![MIT](https://img.shields.io/badge/License-MIT-teal.svg)](LICENSE)