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: README.md
+35-5Lines changed: 35 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,17 @@
1
1
# Java Launcher Code Examples
2
2
3
-
This GitHub repo includes code example for both the DocuSign eSignature REST API as well as the DocuSign Rooms API. To use the Rooms API code examples, change the **DS_API_NAME** value to `ROOMS` in the application.json config file.
3
+
This GitHub repo includes code example for the DocuSign eSignature REST API, for the DocuSign Rooms API and for the Click API. To use the Rooms API code examples, change the **DS_API_NAME** value to `ROOMS` in the application.json config file, to use the Click API, change the **DS_API_NAME** value to `CLICK` in the application.json config file.
4
4
5
5
**Note:** to use the Rooms API you must also [create your DocuSign Developer Account for Rooms](https://developers.docusign.com/docs/rooms-api/rooms101/create-account).
6
6
7
7
## Introduction
8
8
This repo is a Java Spring Boot application that demonstrates:
9
9
10
-
1.**Embedded Signing.**
10
+
## eSignature API
11
+
12
+
For more information about the scopes used for obtaining authorization to use the eSignature API, see the [Required Scopes section](https://developers.docusign.com/docs/esign-rest-api/esign101/auth)
This code example demonstrates how to apply a brand you've created to a template using using the [Create Envelope](https://developers.docusign.com/esign-rest-api/reference/Envelopes/Envelopes/create) method.
105
109
You must have at least one created template and brand.
106
-
107
110
1.**Bulk sending envelopes to multiple recipients**
This topic demonstrates how to create an envelope where the workflow is paused before the envelope is sent to a second recipient.
110
135
111
136
## Rooms API
137
+
138
+
For more information about the scopes used for obtaining authorization to use the Rooms API, see the [Required Scopes section](https://developers.docusign.com/docs/rooms-api/rooms101/auth/)
139
+
112
140
**Note:** to use the Rooms API you must also [create your DocuSign Developer Account for Rooms](https://developers.docusign.com/docs/rooms-api/rooms101/create-account).
113
141
114
142
@@ -166,6 +194,8 @@ The **refresh token** is not used in this example.
166
194
* Authentication with DocuSign via the [JSON Web Token (JWT) Grant](https://developers.docusign.com/platform/auth/jwt/).
167
195
When the token expires, it updates automatically.
168
196
197
+
**Note:** Before you can make any API calls using JWT Grant, you must get your user’s consent for your app to impersonate them. To do this, the `impersonation` scope is added when requesting a JSON Web Token.
0 commit comments