WorkflowGen Documentation
8.3
8.3
  • WorkflowGen Administration Guide
  • Administration Module Overview
  • Configuration Panel
  • User Management
    • Directories
    • Users
    • Groups
    • Delegations
  • Directory Synchronization
  • Global Information
    • Participants
    • Applications
    • Categories
    • Global Lists
  • Process Definition
    • Editing
    • Participants
    • Data
  • Form
    • Structure, Sections & Fields
    • Appearance, Behavior & Mapping
    • Management
  • Workflow
    • Actions
    • Parameters
    • Conditions & Exceptions
    • Notifications
  • Reports
  • Remote Approval
  • EFORMASPX Workflow Application
  • XMLTODATABASE Workflow Application
  • GETUSERSFROMDIR Workflow Application
  • XMLTRANS Workflow Application
  • RAISEEXCEPTION Workflow Application
  • UPDATEPROCESSDATA Workflow Application
  • STARTPROCESS Workflow Application
  • COMPLETEACTION Workflow Application
  • GETPROCESSDATA Workflow Application
  • GETFORMDATA Workflow Application
  • CANCELREQUEST Workflow Application
  • MERGEFORM Workflow Application
  • COPYDATA Workflow Application
  • SENDMESSAGE Workflow Application
  • SENDHTTPPOST Workflow Application
  • RESTAPICLIENT Workflow Application
  • EXECSQL Workflow Application
  • JSONTODATA Workflow Application
  • DOCUSIGNSEND Workflow Application
  • DOCUSIGNCHECK Workflow Application
  • ADOBESIGNSEND Workflow Application
  • ADOBESIGNCHECK Workflow Application
  • DOCAPOSTESEND Workflow Application
  • DOCAPOSTECHECK Workflow Application
  • YOUSIGNSEND Workflow Application
  • YOUSIGNCHECK Workflow Application
  • Custom Notification Templates
  • Macros
  • WorkflowGen URLs
  • Custom Menus
  • Portlet
  • Error Messages
Powered by GitBook
On this page
  • Overview
  • How it works
  • Configuring the Yousign API
  • Required parameter
  • Optional parameters
  • Yousign configuration
  • General
  • Example with YOUSIGNSEND
Export as PDF

YOUSIGNCHECK Workflow Application

PreviousYOUSIGNSEND Workflow ApplicationNextCustom Notification Templates

Overview

The YOUSIGNCHECK workflow application lets you verify the status of an agreement and download its associated file, which is a concatenation of attached files.

How it works

  • You can verify the status of an agreement and download the file from Yousign based on your status criteria.

  • Application logs are available. These can be specified by setting the value of the YousignCheckLogLevel parameter in the web.config file to 0 to deactivate logs, 1 for error logs, 2 for information logs, or 3 for debug logs; the default value is 0.

Configuring the Yousign API

For instructions on how to configure the the Yousign API, see the section in the chapter.

Required parameter

Parameter

Type

Direction

Description

YOUSIGN_SIGNATURE_ID

TEXT

IN

ID of the Yousign signature to verify

Optional parameters

Yousign configuration

Parameters

Type

Direction

Description

YOUSIGN_API_KEY

TEXT

IN

Yousign API key By default, this value comes from the YousignApiKey parameter in the web.config file.

YOUSIGN_HOST_SERVER

TEXT

IN

Yousign host server (e.g.: https://api.yousign.app/v3)

By default, this value comes from the YousignHostServer parameter in the web.config file.

General

Parameter

Type

Direction

Description

VALID_STATUS_LIST

TEXT

IN

Valid status to download the document

Possible values:

  • draft

  • ongoing

  • done

  • deleted

  • expired

  • canceled

  • approval

  • rejected

  • declined

Default: done,canceled,expired,deleted,rejected

YOUSIGN_DOCUMENT

FILE

OUT

Yousign document

YOUSIGN_STATUS

TEXT

OUT

Agreement status

Example with YOUSIGNSEND

In the following example, the YOUSIGNSEND action is directly followed by the YOUSIGNCHECK action. This action will loop back onto itself until the status changes to done, canceled, expired, deleted, or rejected.

If the status returned meets the condition, the document will be downloaded from Yousign.

With the system loop action function, the YOUSIGNCHECK action will be executed every x seconds until the OUT condition is met.

YOUSIGNSEND Workflow Application
Configuring a YOUSIGNCHECK action
Configuring the Yousign API