You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pom.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<artifactId>docusign-esign-java</artifactId>
6
6
<packaging>jar</packaging>
7
7
<name>docusign-esign-java</name>
8
-
<version>4.6.0</version>
8
+
<version>5.0.0-RC1</version>
9
9
<url>https://developers.docusign.com</url>
10
10
<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>
Copy file name to clipboardExpand all lines: src/main/java/com/docusign/esign/api/EnvelopesApi.java
+60-24Lines changed: 60 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -794,12 +794,12 @@ public ApiResponse<Tabs > createDocumentTabsWithHttpInfo(String accountId, Strin
794
794
* Returns a URL that allows you to embed the edit view of the DocuSign UI in your applications. This is a one-time use login token that allows the user to be placed into the DocuSign editing view. Upon sending completion, the user is returned to the return URL provided by the API application. Important: iFrames should not be used for embedded operations on mobile devices due to screen space issues. For iOS devices DocuSign recommends using a WebView.
795
795
* @param accountId The external account number (int) or account ID Guid. (required)
796
796
* @param envelopeId The envelopeId Guid of the envelope being accessed. (required)
* Returns a URL that allows you to embed the edit view of the DocuSign UI in your applications. This is a one-time use login token that allows the user to be placed into the DocuSign editing view. Upon sending completion, the user is returned to the return URL provided by the API application. Important: iFrames should not be used for embedded operations on mobile devices due to screen space issues. For iOS devices DocuSign recommends using a WebView.
809
809
* @param accountId The external account number (int) or account ID Guid. (required)
810
810
* @param envelopeId The envelopeId Guid of the envelope being accessed. (required)
return new ApiResponse<IdEvidenceViewLink>(apiClient.getStatusCode(), apiClient.getResponseHeaders(), localVarResponse);
1851
1851
}
1852
+
/// <summary>
1853
+
/// Returns a resource token to get access to the identity events stored in the proof service related to this recipient. Creates a resource token for a sender. This token allows a sender to return identification data for a recipient using the [ID Evidence API](/docs/idevidence-api/).
public class CreateRecipientProofFileResourceTokenOptions
1861
+
{
1862
+
private String tokenScopes = null;
1863
+
1864
+
/**
1865
+
* setTokenScopes method.
1866
+
*/
1867
+
public void setTokenScopes(String tokenScopes) {
1868
+
this.tokenScopes = tokenScopes;
1869
+
}
1870
+
1871
+
/**
1872
+
* getTokenScopes method.
1873
+
*
1874
+
* @return String
1875
+
*/
1876
+
public String getTokenScopes() {
1877
+
return this.tokenScopes;
1878
+
}
1879
+
}
1880
+
1881
+
/**
1882
+
* Returns a resource token to get access to the identity events stored in the proof service related to this recipient..
1883
+
* Creates a resource token for a sender. This token allows a sender to return identification data for a recipient using the [ID Evidence API](/docs/idevidence-api/).
1884
+
* @param accountId The external account number (int) or account ID Guid. (required)
1885
+
* @param envelopeId The envelopeId Guid of the envelope being accessed. (required)
1886
+
* @param recipientId The ID of the recipient being accessed. (required)
* Returns a resource token to get access to the identity events stored in the proof service related to this recipient..
1855
1895
* Creates a resource token for a sender. This token allows a sender to return identification data for a recipient using the [ID Evidence API](/docs/idevidence-api/).
1856
-
* @param tokenScopes (required)
1857
1896
* @param accountId The external account number (int) or account ID Guid. (required)
1858
1897
* @param envelopeId The envelopeId Guid of the envelope being accessed. (required)
1859
1898
* @param recipientId The ID of the recipient being accessed. (required)
1899
+
* @param options for modifying the method behavior.
* Returns a resource token to get access to the identity events stored in the proof service related to this recipient.
1870
1910
* Creates a resource token for a sender. This token allows a sender to return identification data for a recipient using the [ID Evidence API](/docs/idevidence-api/).
1871
-
* @param tokenScopes (required)
1872
1911
* @param accountId The external account number (int) or account ID Guid. (required)
1873
1912
* @param envelopeId The envelopeId Guid of the envelope being accessed. (required)
1874
1913
* @param recipientId The ID of the recipient being accessed. (required)
1914
+
* @param options for modifying the method behavior.
@@ -2079,12 +2115,12 @@ public ApiResponse<DocumentHtmlDefinitions > createResponsiveHtmlPreviewWithHttp
2079
2115
* Returns a URL that allows you to embed the sender view of the DocuSign UI in your applications. This is a one-time use login token that allows the user to be placed into the DocuSign sending view. Upon sending completion, the user is returned to the return URL provided by the API application. Important: iFrames should not be used for embedded operations on mobile devices due to screen space issues. For iOS devices DocuSign recommends using a WebView.
2080
2116
* @param accountId The external account number (int) or account ID Guid. (required)
2081
2117
* @param envelopeId The envelopeId Guid of the envelope being accessed. (required)
* Returns a URL that allows you to embed the sender view of the DocuSign UI in your applications. This is a one-time use login token that allows the user to be placed into the DocuSign sending view. Upon sending completion, the user is returned to the return URL provided by the API application. Important: iFrames should not be used for embedded operations on mobile devices due to screen space issues. For iOS devices DocuSign recommends using a WebView.
2094
2130
* @param accountId The external account number (int) or account ID Guid. (required)
2095
2131
* @param envelopeId The envelopeId Guid of the envelope being accessed. (required)
0 commit comments