Git Product home page Git Product logo

sfdc-toolbox's Introduction

Yousign Salesforce Integration Toolbox

You have discovered Yousign API and want to integrate it fast and without issues in Salesforce? We have good news, you are in the right place!

Introduction

This repository contains code examples to integrate the Yousign API into Salesforce. We will connect through named credentials with an API Key. The code samples, the initialization package and the documentation provided here complete but does not substitute the Yousign API documentation where you will find a dedicated Salesforce sectionย ๐Ÿš€

License

Check the License tab โ˜๏ธ

Installation

Prerequisites

  1. Having an Yousign account with API. If you do not have an API key yet, please create a free Yousign trial account!
  2. A Salesforce Developer, Enterprise (or above) Edition.
  3. Visual Studio Code. Your Visual Studio Code should be set up with the necessary Salesforce development tools including the Salesforce CLI.

Installation steps

  1. In Salesforce go to Setup > Process Automation > Process Automation Settings set an admin (generic account if possible) as Default Workflow User. Click Save.
  2. Download or clone the SFDC-Toolbox repository. On github click the code button then select Download ZIP. Then unzip the files on your computer in folder.
  3. In VS Code type Ctrl-K Ctrl-O (on Windows) or command-K command-O (on a Mac) to open a folder. Select the folder containing the downloaded files.
  4. Authorize your Salesforce Developer Account within Visual Studio Code. To do this press command + shift + P (on a Mac) or Ctrl + Shift + P (on Windows) to open the Command Palette. Then type SFDX:Authorize an Org and press Enter. In the browser window that opens, log into your Salesforce Organization, then on the next screen, click Allow to grant access. If you don't see the SFDX:authorize an Org option, please check that you completed the 3rd point of the prerequisites.
  5. Deploy the code to Salesforce.
    1. On a sandbox/developer organization Navigate to the force-app/main/default/manifest/ folder in the menu on the left and right-click the package.xml file, then select SFDX: Deploy Source to Org. Now when you sign into your Salesforce Developer Edition (account) you will find the clases and Lightning Web Components defined in this project.
    2. On a production organization Select the Terminal menu then click on New Terminal. Type sfdx project deploy start -x manifest/package.xml -l RunSpecifiedTests -t YS_INVOCABLE_GetSignedDocument_Test YS_INVOCABLE_UploadDocument_Test YS_Service_Test YS_MultipartUtil_Test YS_Utils_Test YS_WebhookListener_Test YS_WebhookDispatcher_Test YS_INVOCABLE_VisualForceToPDF_Test --verbose then press Enter.
  6. Configure your organization by following the step detailed in the Getting Started documentation.

Technical Documentation

Access Management

We gives access to Users through Named Credentials with Permission Sets. This allows to keep the API keys secrets and to fine tune user accesses to match business needs. Schema explaining how users get accesses to use Yousign API

Sending information to Yousign from Salesforce

We integrated the Yousign API OpenAPI Specification (OAS) into Salesforce as an External Service. This way, all data structures used by the Yousign API are already created in your organization. You can used them to send requests to Yousign API from Salesforce easily through multiple means: Low code (flows), Code (Apex methods).

The schema below describe how the request are constructed in Salesforce to fill automatically the base path of the endpoint and the credentials. It also contains how Yousign replies. Schema explaining how requests to Yousign from Salesforce are made

Note

Some type of data or format (ex: files, base64 or multipart-forms) are not supported natively by Salesforce, as such you will need to use Apex. Some classes where developed to ease this particular use cases: YS_MultipartUtil, YS_INVOCABLE_UploadDocument and YS_INVOCABLE_GetSignedDocument. Feel free to customize them to best suit your needs.

Receiving updates from Yousign in Salesforce

To have the latest information in Salesforce, Yousign send webhooks to notified Salesforce. We then treat those webhooks with Platform Events. Schema explaining how requests to Webhook sent by Yousign are received and treated by Salesforce

Important

As shown above, the webhooks management is developed for Signature Requests and Signers but not for Contacts, Approvers or Electronic Seals. You can add your own logic to the elements mentioned to add those features if needed.

Data model

We create some fields and object in Salesforce that match the Yousign object structure. This is a model based on the functionalities provided with this toolbox and do not support all of the features available in Yousign API. Schema detailing the Yousign Custom Objects and Custom Fields contained in this package

Error Management

Anything that can go wrong will go wrong. Murphy's Law

Although it should not happen (and we hope it will not), we have to face it: errors can happen. As most of the webhook management's work is done asynchronously for permfomance and security reasons, we need to log those errors to be aware of them.

We do not want to overcharge your organization by adding a Log__c SObject you might already have. As such we do not include our own Log__c SObject here. However some functionalities are ready to trigger a log creation if an error happens.

Hence, feel free to plug the following methods to your own logging object or create a new Log__c one for the occasion. The methods toErrorLog, insertExceptionsAsLogs and insertLogsFuture can all be found in the YS_Utils Apex Class and can be rapidly customized.

Tip

E.g. We created the fields Type__c, Source__c, ErrorMessage__c and ErrorDetails__c on our Log__c SObject.

Code Samples

By exploring the code repository you will be able to find reusable and customizable examples. Here is a non-exhaustive list of where to find some examples you might want to work with.

Use Case Resource type Resource Name
Send Signature Request Flow [YS] Send Signature Request
Callout to the API (flow) Flow [YS] Send Manual Reminder
Callout to the API (Apex) Apex Class YS_INVOCABLE_GetSignedDocument
Smart Anchor Visualforce Page YS_FakeDocumentEn
Visualforce to PDF file Invocable Apex YS_INVOCABLE_VisualForceToPDF
Reporting Report [YS] Time to Sign by Auth Mode
Multipart form Apex YS_MultipartUtil

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.