I am new to Docusign. We are exploring if DocuSign can be integrated with Oracle Applications R12 iExpense Approval Workflow. I found API documents to send a document for signature. But, I would like to get a call to my webservice when the document is signed to reinstate workflow in Oracle Applications. I understand, there is a way to add an email in sequence to send the completed document. However, please let me know if there is any way for Docusign to call a Webservice or REST service when a document is signed.
Docusign APi Workflow
546 Views Asked by Prasenjit At
1
There are 1 best solutions below
Related Questions in DOCUSIGNAPI
- Is there a way to stop Expired email notification in DocuSign?
- Failed to instantiate [com.docusign.esign.client.ApiClient]
- DocuSign integrated login fails when MFA is enabled
- DocuSign: How to check the reminder status for an envelope
- Is there a DocuSign API listitems attribute to allow multiselect from a dropdown list on a document?
- DocuSign signing language always english
- Are envelope resent and recipient resent webhook events triggered for automated reminders?
- Get any user pending envelopes which was sent by any sender
- Get users pending envelopes which was sent by any sender
- Refresh a Document Sent After Changing Template
- DocuSign Admin Consent - missing "coid" field
- DocuSign: How to disable the "Style Selection" in adopt siganture
- Get signature option in DocuSign envelop
- changing the starting url in 'createSender' API
- DocuSign NodeJs SDK: How to replace a document in an envelope which is already sent but not signed by any parties
Related Questions in ORACLE-APPS
- Oracle Apps View: ALL_TAB_COLUMNS; columns: LOW_VALUE and HIGH_VALUE
- Display additional Column in the SQL query
- why oracle apps home page not showing submenus for responsibility in oracle apps after migration
- Getting a "UserID not exists" error when using jtf_rs_resource_pub.create_resource API to import an employee as a salesperson in Oracle EBS
- Oracle APPS R12- AP Invoice Struck in re-validation
- Call procedure of Oracle apps by C# not working
- Total sum not working inside the for-each-group tag in BI Publisher when using Group Left
- How can a PL/SQL procedure tell if it is being run from a concurrent program?
- Oracle Apex change Checksum Error to 404 Page Not Found
- Difference between custom and seeded tables in oracle apps
- Oracle Applications - Next Step Attribute
- joining hr_organization_information and mtl_parameters in Oracle apps
- Trying to set a field as mandatory on Oracle Applications R12
- How to resolve this ORA-01722: invalid number error in SQL *Loader based concurrent program?
- Profile creation and how user opt "yes" or "no"
Related Questions in ORACLEAPPLICATIONS
- How to input info to a remote Oracle Application with excel VBA?
- Oracle Apex Cards Region Pagination
- PLSQL Function with variable number of parameters
- Trying to set a field as mandatory on Oracle Applications R12
- How can i show data of a username (with same role) - APEX
- Oracle Apex is not working after reset redo logfile
- Issue in OAF during page load
- Select all checkbox of interactive grid only selects the rows that have already been rendered?
- How to disable edit mode of oracle apex interactive grid on double click?
- Way to set conflict domain on INV org level for Concurrent prog in Oracle Apps
- SOA Gateway xml output when using refcursor as a parameter type
- location of FND_FILE log file
- While clicking next link in a table region for an oaf page is not fectching the next set of rows?
- Wip process interface api takes too much time in R12.2.5 instance
- Does Selenium Support Automation of Oracle Applications Forms & Reports?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There are three (3) general methods the DocuSign platform offers for getting real-time status of your documents and signature requests.
eventNotificationproperty that's part of the envelope definition to configure a webhook for that given envelope.DocuSign Connectmodule to configure web hooks account wide, not just for a given envelope.For #1, you can make REST or SOAP API calls to poll for real-time status. However note that there are certain rate limits in place for polling (i.e. you can't poll the same envelope for status more than once every 15 mins). See the Go Live section of the dev center to learn more about requirements in the production environment.
For #2, you can use the
eventNotificationobject to configure your external URL (where you want events and data to be pushed to) along with security settings and other options. This configures certain events or recipients for the envelope in question that you configure it for. See the webhook recipe for example code. The recipe includes a Heroku button so you can quickly try out the recipe. Search the API docs for "eventNotification" to learn more.For #3, you can use the "DocuSign Connect" module to push events and data out to your app just like #2, however DocuSign Connect can be configured across the account as opposed to for just one given envelope. You can filter by recipient, event type (i.e. signed, declined to sign, etc) and you can optionally include the signed documents in the request if you like. See the DocuSign Connect section of the Dev Center to learn more.
DocuSign Dev Center