Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Web service parameters

This operation allows to obtain a signature link for several EviSigns issued. By using the following data:


  • UniqueIds: Identifier or identifiers separated by commas, of the different EviSigns that are supposed to be signed jointly.
    • NOTE: All EviSigns must have the same signature method. Contact SigningMethod within EviSignSubmit
  • Party: Email or telephone number of the signer of the EviSigns who tries to sign through this service.
  • DiscardedThreshold [opcional]: Minimum percentage of evisigns needed for generating the URL. If in a batch of 100 EviSigns to be signed, a threshold of 80 is defined, that means that the BulkSign will be generated if 80% of the contracts are ready to be signed.
  • LiteFlow [opcional]: Boolean this option allows to define the type of signature flow to be performed by the recipient in a iframe integration.
    • True: The use of a simple flow is forced.
    • False: Simple flow shall not be used, even if it is database-enabled.
    • Note: You can also set the EviSignLiteFLow parameter in the DeliveryChannels table. This way it would not be necessary to report the LiteFlow parameter in the EviSignBulkSign request. The configuration of this parameter is done by ticketing our support team.
    • More info:  https://namirial.atlassian.net/wiki/x/cIBnEg



An example is shown here.

Code Block
titleExample of request in JSON
POST https://app.evicertia.com/api/EviSign/BulkSign HTTP/1.1
Accept: application/json
Content-Type: application/json
Authorization: basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX==
Host: app.evicertiaecertia.com

{
	"UniqueIds":["d11caec270bd4739afd5aa7600920538"],
	"party": "pruebas_evi@hotmail.com",
	"DiscardedThreshold": 80,
	"LiteFlow" : false,
}

...


Code Block
titleExample of answer in JSON

{
    	"uniqueId": "d11caec270bd4739afd5aa7600920538",
    	"url": "https://ecertia.com/Public/EviSign/Delivery/Start?eid=zut8pnewDUTxxEVGdmd7kmRPtDBtgy5TlyGiJAI9NmQaUcSFEjVNU4dLE5t4Yuyty9a7avO01viKambXpYQkWcaMjyQFOoa4bdbRo0lxKrW8zkm8D4WZ0rlZLdC3jUfpdsszut8pnewDUTxxEVGdmd7kmRPtDBtgy5TlyGiJAI9NmQaUcSFEjVNU4dLE5t4Yuyty9a7avO01viKambXpYQkWcaMjyQFOoa4bdbRo0lxKrW8zkm8D4WZ0rlZLdC3jUfpsW",
    	"expiresAt": "2020-02-17T13:22:07.0019802+01:00",
    	"results": [
        {
            		{
			"evidenceId": "d11caec270bd4739afd5aa7600920538",
            			"discarded": false,
            			"lookupKey": "H-Prueba",
            			"state": "Processed",
            			"outcome": "None",
            			"creationDate": "2020-02-17T12:21:58.2659710+01:00",
            			"lastStateChangeDate": "2020-02-17T12:22:02.0000000+01:00",
            			"submittedOn": "2020-02-17T12:21:59.0000000+01:00",
            			"processedOn": "2020-02-17T12:22:02.0000000+01:00",
            			"timeToLive": 1500
        		}
    	]
}