Skip to content

Commit cb35bf2

Browse files
committed
adding Click instructions to readme
1 parent b757f36 commit cb35bf2

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
### Github repo: [code-examples-python](./)
44

5-
This GitHub repo includes code examples for both the DocuSign eSignature REST API as well as the DocuSign Rooms API. To use the Rooms API code example, modify the EXAMPLES_API_TYPE setting at the end of the ds_config.py file. Set 'Rooms' to True and 'ESignature' to False.
5+
This GitHub repo includes code examples for DocuSign APIs.
6+
7+
To switch between API code examples, modify the EXAMPLES_API_TYPE setting at the end of the configuration file. Set only one API type to true and set the remaining to false.
8+
9+
If none of the API types are set to true, the DocuSign eSignature REST API code examples will be shown. If multiple API types are set to true, only the first will be shown.
610

711
**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).
812

@@ -153,7 +157,7 @@ This example adds a standard real estate related form to a specific room in your
153157
[Source.](./app/rooms/examples/eg005_get_rooms_with_filters/controller.py)
154158
1. **Create an external form fillable session.**
155159
[Source.](./app/rooms/examples/eg006_create_external_form_fill_session/controller.py)
156-
<!--
160+
157161
## Click API
158162

159163
1. **Create a clickwrap.**
@@ -170,7 +174,7 @@ This example demonstrates how to use DocuSign Click to get a list of clickwraps
170174
[Source.](./app/click/examples/eg006_list_clickwraps/controller.py)
171175
1. **Get clickwrap responses.**
172176
This example demonstrates how to use DocuSign Click to get user responses to your clickwrap agreements.
173-
[Source.](./app/click/examples/eg007_clickwrap_responses/controller.py) -->
177+
[Source.](./app/click/examples/eg007_clickwrap_responses/controller.py)
174178

175179
## Included OAuth grant types:
176180

app/ds_config_sample.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,5 @@
4242
EXAMPLES_API_TYPE = {
4343
"Rooms": False,
4444
"ESignature": True,
45+
"Click": False
4546
}

0 commit comments

Comments
 (0)