Versions Compared

Key

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

This operation allows a custom affidavit to be generated upon request, which will display the following data:

NOTE: To use this service, before submitting to the EviPostSubmit service, 'AffidavitsOnDemandEnabled: true' had to be indicated within the note Options


...

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

{
	"UniqueId":"87ffa214-e773-4bd5-9b8d-a8ef00fd80f8",
	"PushUrl":"http://www.mysite.org/url/to/push",
	"IncludeBody":"true",
	"IncludeEvents":"true"
}


In case of successful sending, the identifier allocated to the request (RequestId) will be included in the notification:


Code Block
titleExample of answer in JSON
{
	"requestId": "79726a87000c1f7042aca3ea149f9438"
}



Push notifications

This method allows to report the outcome when generating the affidavit, thus avoiding the need for performing periodically a query.


Code Block
titleExample of push notification answer
{
	"EventIdentifier": "1234",
	"EvidenceId": "2aca3ea149f943879726a87000c1f704",
	"EvidenceType": "eviPost",
	"EventType": "EviPostAffidavitOnDemandGenerated",
	"EventDate": "2018-01-22T12:46:32.4830752+01:00",
	"Site": "pruebas",
	"Owner": "Pruebas evicertia",
	"OwnerEmail": "pruebas@evicertia.com",
	"AdditionalData": {
		"RequestUniqueId": "79726a87000c1f7042aca3ea149f9438",
		"AffidavitUniqueId": "000c1f7042aca3ea149f943879726a87",
		"AffidavitBytesLength": "1234",
		"AffidavitName": "Certification of postal communication (upon request)",
		"Success": "true",
		"ErrorMessage": ""
	}
}

...