diff --git a/README.md b/README.md index 77f15440..e19b6c07 100644 --- a/README.md +++ b/README.md @@ -148,9 +148,25 @@ This example exports all the available data from a specific room in your DocuSig This example adds a standard real estate related form to a specific room in your DocuSign Rooms account. 1. **How to search for rooms with filters.** [Source.](./app/rooms/examples/eg005_get_rooms_with_filters/controller.py) +This example demonstrates how to return rooms that have had their field data, +updated within the time period between Start date and End date. 1. **Create an external form fillable session.** [Source.](./app/rooms/examples/eg006_create_external_form_fill_session/controller.py) - {% extends "base.html" %} +{% block content %} +

1. Creating a form group

+

This example demonstrates creating a DocuSign Form Group.

+{% if show_doc %} +

Documentation about this example.

+{% endif %} + +

API methods used: + Rooms::CreateFormGroup +

+ +
+
+ + +
+ + +
+ +{% endblock %} diff --git a/app/rooms/templates/eg008_grant_office_access_to_form_group.html b/app/rooms/templates/eg008_grant_office_access_to_form_group.html new file mode 100644 index 00000000..3c56eb9a --- /dev/null +++ b/app/rooms/templates/eg008_grant_office_access_to_form_group.html @@ -0,0 +1,40 @@ + {% extends "base.html" %} +{% block content %} + +

8. Grant office access to a form group

+

This example demonstrates how to grant Office access to a Form Group.

+ +{% if show_doc %} +

Documentation about this example.

+{% endif %} + +

API methods used: + Rooms::AccessFormGroup, + FormGroups::GetFormGroups and + Offices::GetOffices +

+ +
+ {% if form_groups %} +
+ + + + +
+ + + {% else %} +

Problem: please first create a form_group using example 7 +
Thank you.

+ {% endif %} +
+{% endblock %} diff --git a/app/rooms/templates/eg009_assign_form_to_form_group.html b/app/rooms/templates/eg009_assign_form_to_form_group.html new file mode 100644 index 00000000..d36a80e6 --- /dev/null +++ b/app/rooms/templates/eg009_assign_form_to_form_group.html @@ -0,0 +1,40 @@ + {% extends "base.html" %} +{% block content %} + +

9. Assign a form to a form group

+

This example demonstrates how to assign a form to a form group.

+ +{% if show_doc %} +

Documentation about this example.

+{% endif %} + +

API methods used: + Rooms::AssignFormGroup, + FormGroups::GetFormGroups and + FormLibraries:GetFormLibraries +

+ +
+ {% if form_groups %} +
+ + + + +
+ + + {% else %} +

Problem: please first create a form_group using example 7 +
Thank you.

+ {% endif %} +
+{% endblock %} diff --git a/app/rooms/templates/home_rooms.html b/app/rooms/templates/home_rooms.html index 84531fad..333cb1f1 100644 --- a/app/rooms/templates/home_rooms.html +++ b/app/rooms/templates/home_rooms.html @@ -68,7 +68,28 @@

6. Creating an external form fill sessionRooms::GetDocuments and Forms::CreateExternalFormFillSession

+

7. Creating a form group

+

This example demonstrates how to create a form group.

+

API methods used: + Rooms::CreateFormGroup +

+

8. Grant office access to a form group

+

This example demonstrates how to grant office access to a form group.

+

API methods used: + Rooms::AccessFormGroup, + FormGroups::GetFormGroups and + Offices::GetOffices +

+

9. Assign form to a form group

+

This example demonstrates how to assign form to a form group.

+

API methods used: + Rooms::AssignFormGroup, + FormGroups::GetFormGroups and + FormLibraries:GetFormLibraries +

+ + diff --git a/requirements.txt b/requirements.txt index a05f06a5..75799714 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,7 +5,7 @@ chardet==3.0.4 Click cryptography==3.2.1 docusign-esign==3.6.0 -docusign-rooms==1.0.0b1 +docusign-rooms==1.1.0rc1 Flask==1.1.1 Flask-OAuthlib flask-wtf==0.14.3