Skip to content

Commit

Permalink
chore: update readme, remove warning (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dovchik authored May 7, 2024
1 parent b737280 commit bc033ef
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,9 @@ To use Sinch services, you'll need a Sinch account and access keys. You can sign

For more information on the Sinch APIs on which this SDK is based, refer to the official [developer documentation portal](https://developers.sinch.com/).

> [!WARNING]
> This SDK is currently available to selected developers for preview use only. It is being provided for the purpose of collecting feedback, and should not be used in production environments.
- [Installation](#installation)
- [Getting started](#getting-started)
- [Client initialization](#client-initialization)
- [Client initialization](#client-initialization)
- [Supported Sinch products](#supported-sinch-products)
- [Logging, HttpClient and additional options](#logging-httpclient-and-additional-options)
- [Handling Exceptions](#handling-exceptions)
Expand All @@ -27,7 +24,7 @@ For more information on the Sinch APIs on which this SDK is based, refer to the
SinchSDK can be installed using the Nuget package manager or the `dotnet` CLI.

```
dotnet add package Sinch --prerelease
dotnet add package Sinch
```

## Getting started
Expand Down Expand Up @@ -126,13 +123,12 @@ using Sinch;
using Sinch.SMS.Batches.Send;

try {
var batch = await sinch.Sms.Batches.Send(new SendBatchRequest
var batch = await sinch.Sms.Batches.Send(new SendTextBatchRequest()
{
Body = "Hello, World!",
DeliveryReport = DeliveryReport.None,
To = new List<string>()
{
123456789
"+123456789"
}
});
}
Expand Down

0 comments on commit bc033ef

Please sign in to comment.