Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# DocuSign C# Client Changelog

## [v11.0.0] - eSignature API v2.1-26.2.01.01 - 2026-06-25
### Added
- **Envelopes API**: `GetEnvelopesShares` and `GetEnvelopesShare` methods for retrieving envelope share information.
- **Recipients**: New `AuthorizedSignatories` recipient type on `Recipients` and `TemplateRecipients`.
- **Models**: `AuthorizedSignatory` model for authorized signatory recipients.
- **Account Settings**: `EnableAIAgents`, `EnableAIAgentsMetadata`, and `AllowConnectWorkspaceUploadRequestUI` properties.
- **DocGen**: `Filter` property on `DocGenFormField`.
- **Template Roles**: Signing group properties (`SigningGroupName`, `SigningGroupType`, `SigningGroupUsers`) on `TemplateRole`.
- **User Authorizations**: `TaskSource` and `TaskType` properties and query parameters for authorization listing endpoints.

### Changed
- Added support for version v2.1-26.2.01.01 of the DocuSign ESignature API.
- Updated the SDK release version.
## [v10.0.0] - eSignature API v2.1-26.2.00.00 - 2026-06-01
### Changed
- Added support for version v2.1-26.2.00.00 of the DocuSign ESignature API.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This client SDK is provided as open source, which enables you to customize its f
<a id="versionInformation"></a>
### Version Information
- **API version**: v2.1
- **Latest SDK version (Including prerelease)**: 10.0.0
- **Latest SDK version (Including prerelease)**: 11.0.0

<a id="requirements"></a>
### Requirements
Expand Down
10 changes: 5 additions & 5 deletions sdk/DocuSign.eSign.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
VisualStudioVersion = 12.0.0.0
MinimumVisualStudioVersion = 10.0.0.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.eSign", "src\DocuSign.eSign\DocuSign.eSign.csproj", "{F790A71F-1180-4AF0-97EB-B72D3068C3FD}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.eSign", "src\DocuSign.eSign\DocuSign.eSign.csproj", "{F070A0FC-1D81-4F37-BF80-52E35C60D198}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F790A71F-1180-4AF0-97EB-B72D3068C3FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F790A71F-1180-4AF0-97EB-B72D3068C3FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F790A71F-1180-4AF0-97EB-B72D3068C3FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F790A71F-1180-4AF0-97EB-B72D3068C3FD}.Release|Any CPU.Build.0 = Release|Any CPU
{F070A0FC-1D81-4F37-BF80-52E35C60D198}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F070A0FC-1D81-4F37-BF80-52E35C60D198}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F070A0FC-1D81-4F37-BF80-52E35C60D198}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F070A0FC-1D81-4F37-BF80-52E35C60D198}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
422 changes: 16 additions & 406 deletions sdk/src/DocuSign.eSign/Api/AccountsApi.cs

Large diffs are not rendered by default.

438 changes: 438 additions & 0 deletions sdk/src/DocuSign.eSign/Api/EnvelopesApi.cs

Large diffs are not rendered by default.

462 changes: 434 additions & 28 deletions sdk/src/DocuSign.eSign/Api/TemplatesApi.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sdk/src/DocuSign.eSign/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Configuration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "10.0.0";
public const string Version = "11.0.0";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/DocuSign.eSign/DocuSign.eSign.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<RootNamespace>DocuSign.eSign</RootNamespace>
<AssemblyName>DocuSign.eSign</AssemblyName>
<NeutralLanguage>en-US</NeutralLanguage>
<VersionPrefix>10.0.0</VersionPrefix>
<VersionPrefix>11.0.0</VersionPrefix>
<VersionSuffix/>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -26,7 +26,7 @@
<PackageLicenseUrl>https://github.com/docusign/docusign-esign-csharp-client/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/docusign/docusign-esign-csharp-client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>[v10.0.0] - ESignature API v2.1-26.2.00.00 - 6/1/2026</PackageReleaseNotes>
<PackageReleaseNotes>[v11.0.0] - ESignature API v2.1-26.2.01.01 - 6/25/2026</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462'">
<DefineConstants>NET462</DefineConstants>
Expand Down
47 changes: 46 additions & 1 deletion sdk/src/DocuSign.eSign/Model/AccountSettingsInformation.cs

Large diffs are not rendered by default.

1,657 changes: 1,657 additions & 0 deletions sdk/src/DocuSign.eSign/Model/AuthorizedSignatory.cs

Large diffs are not rendered by default.

21 changes: 18 additions & 3 deletions sdk/src/DocuSign.eSign/Model/DocGenFormField.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public DocGenFormField()
/// <param name="ConnectedObjectDetails">ConnectedObjectDetails.</param>
/// <param name="DefaultValue">DefaultValue.</param>
/// <param name="Description">Description.</param>
/// <param name="Filter">Filter.</param>
/// <param name="Format">Format.</param>
/// <param name="FullyQualifiedPath">FullyQualifiedPath.</param>
/// <param name="Hidden">Hidden.</param>
Expand All @@ -52,11 +53,12 @@ public DocGenFormField()
/// <param name="Type">Type.</param>
/// <param name="Validation">Validation.</param>
/// <param name="Value">Specifies the value of the tab. .</param>
public DocGenFormField(ConnectedObjectDetails ConnectedObjectDetails = default(ConnectedObjectDetails), string DefaultValue = default(string), string Description = default(string), DocGenFormat Format = default(DocGenFormat), string FullyQualifiedPath = default(string), string Hidden = default(string), string Label = default(string), string Name = default(string), List<DocGenFormFieldOption> Options = default(List<DocGenFormFieldOption>), string Order = default(string), string PredefinedValidation = default(string), string ReadOnly = default(string), string Required = default(string), List<DocGenFormFieldRowValue> RowValues = default(List<DocGenFormFieldRowValue>), string Type = default(string), DocGenFormFieldValidation Validation = default(DocGenFormFieldValidation), string Value = default(string))
public DocGenFormField(ConnectedObjectDetails ConnectedObjectDetails = default(ConnectedObjectDetails), string DefaultValue = default(string), string Description = default(string), Object Filter = default(Object), DocGenFormat Format = default(DocGenFormat), string FullyQualifiedPath = default(string), bool? Hidden = default(bool?), string Label = default(string), string Name = default(string), List<DocGenFormFieldOption> Options = default(List<DocGenFormFieldOption>), string Order = default(string), string PredefinedValidation = default(string), bool? ReadOnly = default(bool?), string Required = default(string), List<DocGenFormFieldRowValue> RowValues = default(List<DocGenFormFieldRowValue>), string Type = default(string), DocGenFormFieldValidation Validation = default(DocGenFormFieldValidation), string Value = default(string))
{
this.ConnectedObjectDetails = ConnectedObjectDetails;
this.DefaultValue = DefaultValue;
this.Description = Description;
this.Filter = Filter;
this.Format = Format;
this.FullyQualifiedPath = FullyQualifiedPath;
this.Hidden = Hidden;
Expand Down Expand Up @@ -89,6 +91,11 @@ public DocGenFormField()
[DataMember(Name="description", EmitDefaultValue=false)]
public string Description { get; set; }
/// <summary>
/// Gets or Sets Filter
/// </summary>
[DataMember(Name="filter", EmitDefaultValue=false)]
public Object Filter { get; set; }
/// <summary>
/// Gets or Sets Format
/// </summary>
[DataMember(Name="format", EmitDefaultValue=false)]
Expand All @@ -102,7 +109,7 @@ public DocGenFormField()
/// Gets or Sets Hidden
/// </summary>
[DataMember(Name="hidden", EmitDefaultValue=false)]
public string Hidden { get; set; }
public bool? Hidden { get; set; }
/// <summary>
/// Gets or Sets Label
/// </summary>
Expand Down Expand Up @@ -132,7 +139,7 @@ public DocGenFormField()
/// Gets or Sets ReadOnly
/// </summary>
[DataMember(Name="readOnly", EmitDefaultValue=false)]
public string ReadOnly { get; set; }
public bool? ReadOnly { get; set; }
/// <summary>
/// When set to **true**, the signer is required to fill out this tab
/// </summary>
Expand Down Expand Up @@ -171,6 +178,7 @@ public override string ToString()
sb.Append(" ConnectedObjectDetails: ").Append(ConnectedObjectDetails).Append("\n");
sb.Append(" DefaultValue: ").Append(DefaultValue).Append("\n");
sb.Append(" Description: ").Append(Description).Append("\n");
sb.Append(" Filter: ").Append(Filter).Append("\n");
sb.Append(" Format: ").Append(Format).Append("\n");
sb.Append(" FullyQualifiedPath: ").Append(FullyQualifiedPath).Append("\n");
sb.Append(" Hidden: ").Append(Hidden).Append("\n");
Expand Down Expand Up @@ -236,6 +244,11 @@ public bool Equals(DocGenFormField other)
this.Description != null &&
this.Description.Equals(other.Description)
) &&
(
this.Filter == other.Filter ||
this.Filter != null &&
this.Filter.Equals(other.Filter)
) &&
(
this.Format == other.Format ||
this.Format != null &&
Expand Down Expand Up @@ -325,6 +338,8 @@ public override int GetHashCode()
hash = hash * 59 + this.DefaultValue.GetHashCode();
if (this.Description != null)
hash = hash * 59 + this.Description.GetHashCode();
if (this.Filter != null)
hash = hash * 59 + this.Filter.GetHashCode();
if (this.Format != null)
hash = hash * 59 + this.Format.GetHashCode();
if (this.FullyQualifiedPath != null)
Expand Down
17 changes: 16 additions & 1 deletion sdk/src/DocuSign.eSign/Model/Recipients.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public Recipients()
/// Initializes a new instance of the <see cref="Recipients" /> class.
/// </summary>
/// <param name="Agents">A complex type defining the management and access rights of a recipient assigned assigned as an agent on the document..</param>
/// <param name="AuthorizedSignatories">AuthorizedSignatories.</param>
/// <param name="CarbonCopies">A complex type containing information about recipients who should receive a copy of the envelope, but does not need to sign it..</param>
/// <param name="CertifiedDeliveries">A complex type containing information on a recipient the must receive the completed documents for the envelope to be completed, but the recipient does not need to sign, initial, date, or add information to any of the documents..</param>
/// <param name="CurrentRoutingOrder">CurrentRoutingOrder.</param>
Expand All @@ -50,9 +51,10 @@ public Recipients()
/// <param name="Seals">Seals.</param>
/// <param name="Signers">A complex type containing information about the Signer recipient..</param>
/// <param name="Witnesses">Witnesses.</param>
public Recipients(List<Agent> Agents = default(List<Agent>), List<CarbonCopy> CarbonCopies = default(List<CarbonCopy>), List<CertifiedDelivery> CertifiedDeliveries = default(List<CertifiedDelivery>), string CurrentRoutingOrder = default(string), List<Editor> Editors = default(List<Editor>), ErrorDetails ErrorDetails = default(ErrorDetails), List<InPersonSigner> InPersonSigners = default(List<InPersonSigner>), List<Intermediary> Intermediaries = default(List<Intermediary>), List<NotaryRecipient> Notaries = default(List<NotaryRecipient>), List<NotaryWitness> NotaryWitnesses = default(List<NotaryWitness>), List<Participant> Participants = default(List<Participant>), string RecipientCount = default(string), List<SealSign> Seals = default(List<SealSign>), List<Signer> Signers = default(List<Signer>), List<Witness> Witnesses = default(List<Witness>))
public Recipients(List<Agent> Agents = default(List<Agent>), List<AuthorizedSignatory> AuthorizedSignatories = default(List<AuthorizedSignatory>), List<CarbonCopy> CarbonCopies = default(List<CarbonCopy>), List<CertifiedDelivery> CertifiedDeliveries = default(List<CertifiedDelivery>), string CurrentRoutingOrder = default(string), List<Editor> Editors = default(List<Editor>), ErrorDetails ErrorDetails = default(ErrorDetails), List<InPersonSigner> InPersonSigners = default(List<InPersonSigner>), List<Intermediary> Intermediaries = default(List<Intermediary>), List<NotaryRecipient> Notaries = default(List<NotaryRecipient>), List<NotaryWitness> NotaryWitnesses = default(List<NotaryWitness>), List<Participant> Participants = default(List<Participant>), string RecipientCount = default(string), List<SealSign> Seals = default(List<SealSign>), List<Signer> Signers = default(List<Signer>), List<Witness> Witnesses = default(List<Witness>))
{
this.Agents = Agents;
this.AuthorizedSignatories = AuthorizedSignatories;
this.CarbonCopies = CarbonCopies;
this.CertifiedDeliveries = CertifiedDeliveries;
this.CurrentRoutingOrder = CurrentRoutingOrder;
Expand All @@ -76,6 +78,11 @@ public Recipients()
[DataMember(Name="agents", EmitDefaultValue=false)]
public List<Agent> Agents { get; set; }
/// <summary>
/// Gets or Sets AuthorizedSignatories
/// </summary>
[DataMember(Name="authorizedSignatories", EmitDefaultValue=false)]
public List<AuthorizedSignatory> AuthorizedSignatories { get; set; }
/// <summary>
/// A complex type containing information about recipients who should receive a copy of the envelope, but does not need to sign it.
/// </summary>
/// <value>A complex type containing information about recipients who should receive a copy of the envelope, but does not need to sign it.</value>
Expand Down Expand Up @@ -161,6 +168,7 @@ public override string ToString()
var sb = new StringBuilder();
sb.Append("class Recipients {\n");
sb.Append(" Agents: ").Append(Agents).Append("\n");
sb.Append(" AuthorizedSignatories: ").Append(AuthorizedSignatories).Append("\n");
sb.Append(" CarbonCopies: ").Append(CarbonCopies).Append("\n");
sb.Append(" CertifiedDeliveries: ").Append(CertifiedDeliveries).Append("\n");
sb.Append(" CurrentRoutingOrder: ").Append(CurrentRoutingOrder).Append("\n");
Expand Down Expand Up @@ -216,6 +224,11 @@ public bool Equals(Recipients other)
this.Agents != null &&
this.Agents.SequenceEqual(other.Agents)
) &&
(
this.AuthorizedSignatories == other.AuthorizedSignatories ||
this.AuthorizedSignatories != null &&
this.AuthorizedSignatories.SequenceEqual(other.AuthorizedSignatories)
) &&
(
this.CarbonCopies == other.CarbonCopies ||
this.CarbonCopies != null &&
Expand Down Expand Up @@ -301,6 +314,8 @@ public override int GetHashCode()
// Suitable nullity checks etc, of course :)
if (this.Agents != null)
hash = hash * 59 + this.Agents.GetHashCode();
if (this.AuthorizedSignatories != null)
hash = hash * 59 + this.AuthorizedSignatories.GetHashCode();
if (this.CarbonCopies != null)
hash = hash * 59 + this.CarbonCopies.GetHashCode();
if (this.CertifiedDeliveries != null)
Expand Down
Loading