Versions Compared

Key

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

...

Code Block
titleExample of request in JSON
POST https://app.evicertiaecertia.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
}

...

Code Block
titleExample of answer in JSON
{
    "uniqueId": "d11caec270bd4739afd5aa7600920538",
    "url": "http://app.evicertiaecertia.com/Delivery/5415bbab-4e14-4035-a769-e0a3b9e88ee2",
    "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
        }
    ]
}

...