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.


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.evicertia.com

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

...