MyUni is a Docusign sample application written in Python 3.7 (server) and React (client). You can find a live instance running at https://myuni.sampleapps.docusign.com/.
MyUni demonstrates the following:
- Authentication with Docusign via JSON Web Token (JWT) Grant.
- Change Your Major or Minor: (Source) This example uses the Docusign eSignature REST API to send an envelope based on an HTML template with prefilled user data and then initiate an embedded signing ceremony for a single signer. AutoPlace (anchor text) is used to position the signing fields in the documents.
- Request an Unofficial Transcript: (Source) This example demonstates the Docusign Click API. Once the user submits the form, the app uses a clickwrap to present a modal dialog requesting confirmation before allowing the user to download an unofficial transcript. More information about ClickAPI
- Sign Up for Extracurricular Activities: (Source) This example uses the Docusign eSignature REST API, demonstrating how to use envelopes combined with payment gateways. The example sends an envelope based on HTML template and adds payment feature to the document, so after signing, the user will be able to pay for their chosen activity. To use this example, create a test payments gateway for your developer account.
- A Docusign developer account. Create a free account.
- A Docusign integration key (a client ID) that is configured to use JSON Web Token (JWT) Grant. You will need the integration key itself and its RSA key pair. To use this application, you must add your application's Redirect URI to your integration key. This video demonstrates how to create an integration key (client ID) for a user application like this example.
- Python 3.7+
- venv
- Node.js v10+
- DS_CLIENT_ID - The integration key is the same as the client ID
- DS_CLIENT_SECRET - Integration Secret Key
- DS_IMPERSONATED_USER_GUID - API account ID
- DS_TARGET_ACCOUNT_ID - Target account ID. Use FALSE to indicate the user's default
- DS_PAYMENT_GATEWAY_ID - Payment gateway ID (Only Stripe method supported)
- DS_PAYMENT_GATEWAY_NAME - Payment gateway name
- DS_PAYMENT_GATEWAY_DISPLAY_NAME - Payment gateway display name
- DS_PRIVATE_KEY - Private key string, source or path; for instance: /app/id_rsa
- REACT_APP_DS_RETURN_URL - URL where the back end of the application is located (If you run it locally, use
http://localhost:3000
) - REACT_APP_API_BASE_URL - URL where the front end of the application is located; will be used by Docusign to redirect back after signing ceremony (If you run it locally, use
http://localhost:5001/api
) - DS_AUTH_SERVER - The Docusign authentication server (for testing purposes, use
https://account-d.docusign.com
) - REACT_APP_DS_DEMO_SERVER - Link to the Docusign demo server (for testing purposes, use
https://demo.docusign.net
) - REACT_APP_DS_CLICKWRAP_URL - Link to the hosted clickwrap client (for testing purposes, use
//demo.docusign.net/clickapi/sdk/latest/docusign-click.js
)
Manual
- Download or clone this repository to your workstation to directory sample-app-myuni-python
- Navigate to that folder:
cd sample-app-myuni-python
directory - Install python packages
pip install -r requirements.txt
- Install React dependencies using npm package manager npm install
- Update the .env file with the integration key and other settings.
Note: Protect your integration key and client secret. You should make sure that your .env file will not be stored in your source code repository.
- Navigate to the admin demo Apps and Keys page, add the Redirect URI http://localhost:3000/callback and then hit save
Using installation scripts
- Download or clone this repository to your workstation in the folder sample-app-myuni-python.
- Navigate to the scripts subfolder:
cd sample-app-myuni-python/scripts
- Run the installation script:
./install.sh
- Update the .env file with the integration key and other settings.
Note: Protect your integration key and client secret. You should make sure that your .env file will not be stored in your source code repository.
- Navigate to the admin demo Apps and Keys page, add the Redirect URI http://localhost:3000/callback and then hit save
All installation scripts are located in the scripts folder.
- To stop the application, run
./stop.sh
- To remove the virtual environment and modules, run
./clean.sh
- Navigate to the application folder:
cd sample-app-myuni-python
- Run the application:
flask run --port 5001
- Run npm:
npm start
- Open a browser to http://localhost:3000
All installation scripts are located in the scripts folder.
- Navigate to the scripts subfolder:
cd scripts
- Run the application script:
./run.sh
- Open a browser to http://localhost:3000
Docusign offers built-in connections to multiple payment gateways. The payments example in this sample app uses a demo account for the Stripe gateway service.
- Log in to your developer account and select Admin.
- On the Integrations/Payments screen, click Stripe.
- For development, you can skip the Stripe account application by using the
Skip this account form
on the top of the page. The Admin Panel will show that an enabled Stripe payment gateway account has been associated with your Docusign developer account. - Configure the example launcher with the gateway account ID shown in the Admin panel.
- Add the payment gateway account ID to the .env file.
This repository uses the MIT License. See the LICENSE file for more information.