Skip to content
Open
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# DocuSign Java Client Changelog
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.

## [v6.5.0] - eSignature API v2.1-25.3.01.00 - 2025-09-29
## [v6.6.0] - eSignature API v2.1-25.4.01.00 - 2026-01-27
### Changed
- Added support for version v2.1-25.4.01.00 of the DocuSign ESignature API.
- Updated the SDK release version.

## [v6.5.0] - eSignature API v2.1-25.3.01.00 - 2025-12-11
### Changed
- Added support for version v2.1-25.3.01.00 of the Docusign ESignature API.
- Updated the SDK release version.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ This client SDK is provided as open source, which enables you to customize its f
<dependency>
<groupId>com.docusign</groupId>
<artifactId>docusign-esign-java</artifactId>
<version>6.5.0</version>
<version>6.6.0</version>
</dependency>
```
8. If your project is still open, restart Eclipse.
Expand Down
15 changes: 4 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>docusign-esign-java</artifactId>
<packaging>jar</packaging>
<name>docusign-esign-java</name>
<version>6.5.0</version>
<version>6.6.0</version>
<url>https://developers.docusign.com</url>
<description>The official Docusign eSignature JAVA client is based on version 2.1 of the Docusign REST API and provides libraries for JAVA application integration. It is recommended that you use this version of the library for new development.</description>

Expand Down Expand Up @@ -210,13 +210,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<fork>true</fork>
<executable>javac</executable>
<compilerArgs>
<arg>-J-Xss4m</arg>
</compilerArgs>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
Expand All @@ -238,8 +233,6 @@
<version>12.1.1</version>
<configuration>
<failBuildOnCVSS>8</failBuildOnCVSS>
<ossindexAnalyzerEnabled>false</ossindexAnalyzerEnabled>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -298,7 +291,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down
19 changes: 19 additions & 0 deletions src/main/java/com/docusign/esign/api/EnvelopesApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -5248,6 +5248,7 @@ public class GetEnvelopeOptions
private String advancedUpdate = null;
private String include = null;
private String includeAnchorTabLocations = null;
private String userId = null;

/**
* setAdvancedUpdate method.
Expand Down Expand Up @@ -5296,6 +5297,22 @@ public void setIncludeAnchorTabLocations(String includeAnchorTabLocations) {
public String getIncludeAnchorTabLocations() {
return this.includeAnchorTabLocations;
}

/**
* setUserId method.
*/
public void setUserId(String userId) {
this.userId = userId;
}

/**
* getUserId method.
*
* @return String
*/
public String getUserId() {
return this.userId;
}
}

/**
Expand Down Expand Up @@ -5362,6 +5379,8 @@ public ApiResponse<Envelope > getEnvelopeWithHttpInfo(String accountId, String e
localVarQueryParams.addAll(apiClient.parameterToPair("include", options.include));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("include_anchor_tab_locations", options.includeAnchorTabLocations));
}if (options != null) {
localVarQueryParams.addAll(apiClient.parameterToPair("user_id", options.userId));
}


Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/docusign/esign/client/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public ApiClient() {
String javaVersion = System.getProperty("java.version");

// Set default User-Agent.
setUserAgent("Swagger-Codegen/v2.1/6.5.0/Java/" + javaVersion);
setUserAgent("Swagger-Codegen/v2.1/6.6.0/Java/" + javaVersion);

// Setup authentications (key: authentication name, value: authentication).
authentications = new HashMap<String, Authentication>();
Expand Down
Loading