Skip to content

Releases: Nexmo/nexmo-dotnet

4.1.2 Signing and Validation of SMS

21 Aug 16:05
629e5e7
Compare
Choose a tag to compare

Release 4.1.2 Fixes hash / HMAC signing and validation of signed messages
for an example of how to manage signing / validation of signed messages visit https://developer.nexmo.com/concepts/guides/signing-messages/dotnet

4.1.1

21 Aug 16:05
79b5551
Compare
Choose a tag to compare

Fixed some dependencies in the nuget package

4.1.0

21 Aug 16:05
c961129
Compare
Choose a tag to compare

v4.1 Fixes the structure of the application update API. This changed structure may require some code changes as the previous implementation created an erroneous structure for performing the update and start request. Use something along the lines of the following to create the request for the update / create:

var request = new AppRequest()
            {                
                Name = name,
                Capabilities = new Capabilities()
                {
                    Messages = new MessagesWebhook(
                        new Webhook() { Address = "https://example.com/webhooks/inbound", HttpMethod = "POST" },
                        new Webhook() { Address = "https://example.com/webhooks/status", HttpMethod = "POST" }),
                    Rtc = new RtcWebhook(
                        new Webhook() { Address = "https://example.com/webhooks/event", HttpMethod = "POST" }),
                    Voice = new VoiceWebhook(
                        new Webhook() { Address = "https://example.com/webhooks/answer", HttpMethod = "GET" },
                        new Webhook() { Address = "https://example.com/webhooks/event", HttpMethod = "POST" }),
                    Vbc = new VbcWebhook()
                }
            };

v4.1 Fixes the Redact API, this can be invoked like so:

var result = client.Redact.RedactTransaction(redactRequest: new Redact.RedactRequest(NEXMO_REDACT_ID, NEXMO_REDACT_PRODUCT));

v4.1 Adds support for retrieving voice recordings using the GetRecording API
invoke like so:

var response = client.Call.GetRecording(recordingUrl);

4.0.1

21 Aug 16:05
Compare
Choose a tag to compare

Added workflow_id to verify_request

V4.0.0

21 Aug 16:05
369cc93
Compare
Choose a tag to compare

Added support to Application API Version 2.

V3.4.0

21 Aug 16:05
93f41fb
Compare
Choose a tag to compare

GetPrefixPricing Implementation
SubmitConversion Implementation

V3.3.1

21 Aug 16:05
3c0bddb
Compare
Choose a tag to compare

Fixing minor issues
NCCO implementation

V3.3.0

21 Aug 16:05
3c0bddb
Compare
Choose a tag to compare

Implemented NCCO param for creating a call.

V3.2.4

21 Aug 16:05
95cf8af
Compare
Choose a tag to compare

Fixed dependencies

V3.2.3

21 Aug 16:06
95cf8af
Compare
Choose a tag to compare

Fixed Destination in call command