diff --git a/Bandwidth.Standard.sln b/Bandwidth.Standard.sln
index df7ee7a..bc3bd38 100644
--- a/Bandwidth.Standard.sln
+++ b/Bandwidth.Standard.sln
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bandwidth.Standard", "src\Bandwidth.Standard\Bandwidth.Standard.csproj", "{F6AB58AC-4F0B-4FE0-8C07-60575FAFE85D}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bandwidth.Standard", "src\Bandwidth.Standard\Bandwidth.Standard.csproj", "{863FB99D-31AD-4D25-99D4-D2084AFCE5E1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bandwidth.Standard.Test", "src\Bandwidth.Standard.Test\Bandwidth.Standard.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
EndProject
@@ -12,10 +12,10 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {F6AB58AC-4F0B-4FE0-8C07-60575FAFE85D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {F6AB58AC-4F0B-4FE0-8C07-60575FAFE85D}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {F6AB58AC-4F0B-4FE0-8C07-60575FAFE85D}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {F6AB58AC-4F0B-4FE0-8C07-60575FAFE85D}.Release|Any CPU.Build.0 = Release|Any CPU
+ {863FB99D-31AD-4D25-99D4-D2084AFCE5E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {863FB99D-31AD-4D25-99D4-D2084AFCE5E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {863FB99D-31AD-4D25-99D4-D2084AFCE5E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {863FB99D-31AD-4D25-99D4-D2084AFCE5E1}.Release|Any CPU.Build.0 = Release|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU
diff --git a/api/openapi.yaml b/api/openapi.yaml
index 570ecc6..edd193f 100644
--- a/api/openapi.yaml
+++ b/api/openapi.yaml
@@ -6821,7 +6821,7 @@ components:
A comma-separated list of 'User-To-User' headers to be sent
in the INVITE when calling a SIP URI. Each value must end with an 'encoding'
parameter as described in RFC
- 7433. Only 'jwt' and 'base64' encodings are allowed. The entire value
+ 7433. Only 'jwt', 'base64' and 'hex' encodings are allowed. The entire value
cannot exceed 350 characters, including parameters and separators.
example: "eyJhbGciOiJIUzI1NiJ9.WyJoaSJd.-znkjYyCkgz4djmHUPSXl9YrJ6Nix_XvmlwKGFh5ERM;encoding=jwt,aGVsbG8gd29ybGQ;encoding=base64"
nullable: true
diff --git a/bandwidth.yml b/bandwidth.yml
index c4b1fb2..11c79d2 100644
--- a/bandwidth.yml
+++ b/bandwidth.yml
@@ -2202,8 +2202,8 @@ components:
parameter as described in RFC
- 7433. Only 'jwt' and 'base64' encodings are allowed. The entire
- value
+ 7433. Only 'jwt', 'base64' and 'hex' encodings are allowed. The
+ entire value
cannot exceed 350 characters, including parameters and separators.
applicationId:
diff --git a/docs/CreateCall.md b/docs/CreateCall.md
index 37b06e5..1d5d517 100644
--- a/docs/CreateCall.md
+++ b/docs/CreateCall.md
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
**From** | **string** | A Bandwidth phone number on your account the call should come from (must be in E.164 format, like `+15555551212`) even if `privacy` is set to true. |
**Privacy** | **bool?** | Hide the calling number. The `displayName` field can be used to customize the displayed name. | [optional]
**DisplayName** | **string** | The caller display name to use when the call is created. May not exceed 256 characters nor contain control characters such as new lines. If `privacy` is true, only the following values are valid: `Restricted`, `Anonymous`, `Private`, or `Unavailable`. | [optional]
-**Uui** | **string** | A comma-separated list of 'User-To-User' headers to be sent in the INVITE when calling a SIP URI. Each value must end with an 'encoding' parameter as described in <a href='https://tools.ietf.org/html/rfc7433'>RFC 7433</a>. Only 'jwt' and 'base64' encodings are allowed. The entire value cannot exceed 350 characters, including parameters and separators. | [optional]
+**Uui** | **string** | A comma-separated list of 'User-To-User' headers to be sent in the INVITE when calling a SIP URI. Each value must end with an 'encoding' parameter as described in <a href='https://tools.ietf.org/html/rfc7433'>RFC 7433</a>. Only 'jwt', 'base64' and 'hex' encodings are allowed. The entire value cannot exceed 350 characters, including parameters and separators. | [optional]
**ApplicationId** | **string** | The id of the application associated with the `from` number. |
**AnswerUrl** | **string** | The full URL to send the <a href='/docs/voice/webhooks/answer'>Answer</a> event to when the called party answers. This endpoint should return the first <a href='/docs/voice/bxml'>BXML document</a> to be executed in the call. Must use `https` if specifying `username` and `password`. |
**AnswerMethod** | **CallbackMethodEnum** | | [optional]
diff --git a/src/Bandwidth.Standard/Model/CreateCall.cs b/src/Bandwidth.Standard/Model/CreateCall.cs
index 64766f2..c6f669b 100644
--- a/src/Bandwidth.Standard/Model/CreateCall.cs
+++ b/src/Bandwidth.Standard/Model/CreateCall.cs
@@ -62,7 +62,7 @@ protected CreateCall() { }
/// A Bandwidth phone number on your account the call should come from (must be in E.164 format, like `+15555551212`) even if `privacy` is set to true. (required).
/// Hide the calling number. The `displayName` field can be used to customize the displayed name..
/// The caller display name to use when the call is created. May not exceed 256 characters nor contain control characters such as new lines. If `privacy` is true, only the following values are valid: `Restricted`, `Anonymous`, `Private`, or `Unavailable`..
- /// A comma-separated list of 'User-To-User' headers to be sent in the INVITE when calling a SIP URI. Each value must end with an 'encoding' parameter as described in <a href='https://tools.ietf.org/html/rfc7433'>RFC 7433</a>. Only 'jwt' and 'base64' encodings are allowed. The entire value cannot exceed 350 characters, including parameters and separators..
+ /// A comma-separated list of 'User-To-User' headers to be sent in the INVITE when calling a SIP URI. Each value must end with an 'encoding' parameter as described in <a href='https://tools.ietf.org/html/rfc7433'>RFC 7433</a>. Only 'jwt', 'base64' and 'hex' encodings are allowed. The entire value cannot exceed 350 characters, including parameters and separators..
/// The id of the application associated with the `from` number. (required).
/// The full URL to send the <a href='/docs/voice/webhooks/answer'>Answer</a> event to when the called party answers. This endpoint should return the first <a href='/docs/voice/bxml'>BXML document</a> to be executed in the call. Must use `https` if specifying `username` and `password`. (required).
/// answerMethod.
@@ -160,9 +160,9 @@ protected CreateCall() { }
public string DisplayName { get; set; }
///
- /// A comma-separated list of 'User-To-User' headers to be sent in the INVITE when calling a SIP URI. Each value must end with an 'encoding' parameter as described in <a href='https://tools.ietf.org/html/rfc7433'>RFC 7433</a>. Only 'jwt' and 'base64' encodings are allowed. The entire value cannot exceed 350 characters, including parameters and separators.
+ /// A comma-separated list of 'User-To-User' headers to be sent in the INVITE when calling a SIP URI. Each value must end with an 'encoding' parameter as described in <a href='https://tools.ietf.org/html/rfc7433'>RFC 7433</a>. Only 'jwt', 'base64' and 'hex' encodings are allowed. The entire value cannot exceed 350 characters, including parameters and separators.
///
- /// A comma-separated list of 'User-To-User' headers to be sent in the INVITE when calling a SIP URI. Each value must end with an 'encoding' parameter as described in <a href='https://tools.ietf.org/html/rfc7433'>RFC 7433</a>. Only 'jwt' and 'base64' encodings are allowed. The entire value cannot exceed 350 characters, including parameters and separators.
+ /// A comma-separated list of 'User-To-User' headers to be sent in the INVITE when calling a SIP URI. Each value must end with an 'encoding' parameter as described in <a href='https://tools.ietf.org/html/rfc7433'>RFC 7433</a>. Only 'jwt', 'base64' and 'hex' encodings are allowed. The entire value cannot exceed 350 characters, including parameters and separators.
/// eyJhbGciOiJIUzI1NiJ9.WyJoaSJd.-znkjYyCkgz4djmHUPSXl9YrJ6Nix_XvmlwKGFh5ERM;encoding=jwt,aGVsbG8gd29ybGQ;encoding=base64
[DataMember(Name = "uui", EmitDefaultValue = true)]
public string Uui { get; set; }