Skip to content

Commit

Permalink
docs: update v7.0.0 migration guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Tr00d committed Mar 15, 2024
1 parent d8a00f9 commit 9d3715b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions MIGRATION_v7.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,32 @@ var url = configuration.VonageUrls.Video;
var url = configuration.VonageUrls.Get(VonageUrls.Region.US);
```

#### Remove 'Input' webhook object

This item has been rendered obsolete due to the new multi-input functionality. Please add the `Dtmf` arguments to your
input action and use the `MultiInput` object.

More details [here](https://developer.nexmo.com/voice/voice-api/ncco-reference#dtmf-input-settings).

#### Remove 'Portuguese" language in Meetings API

This language has been removed in favor or 'Portuguese-Brazilian'.

```csharp
// Using v6.X.X
var language = UserInterfaceLanguage.Pt;


// Using v7.X.X and above
var language = UserInterfaceLanguage.PtBr;
```

#### Remove 'VoiceName' from 'TalkCommand' and 'TalkAction' in Voice

This parameter has been made obsolete by the language and style fields.

More details [here](https://developer.nexmo.com/voice/voice-api/guides/text-to-speech#locale).

### Add new timeouts on Voice Webhooks in Application API

Adding new timeouts requested (`connection_timeout`, `socket_timeout`) on Voice Webhooks.
Expand Down

0 comments on commit 9d3715b

Please sign in to comment.