Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added v2 directory in the request example

...

Code Block
titleExample of request
POST https://app.evicertia.com/api/v2/EviNotice/Submit HTTP/1.1
Accept: application/json
Content-Type: application/json
Authorization: basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX==
Host: app.evicertia.com
{
	"Subject": "Hello world",
	"Body": "Lorem ipsum dolor sit amet",
	"RecipientAddress": "pruebas@evicertia.com",
	"IssuerLegalName": "Evicertia",
	"LookupKey": "dev",
	"Attachments": [
		{
			"Data": "Pdf's B64."
		}
	],
	"CertificationLevel": "Advanced",
	"AffidavitKinds": ["SubmittedAdvanced", "CompleteAdvanced", "OnDemand"],
	"CommitmentChoice": "AcceptOrReject",
	"CommitmentCommentsAllowed": true,
	"PushNotificationUrl": "https://www.mysite.org/url/to/push",
	"PushNotificationFilter": ["Processed", "Sent"],
	"OnlineRetentionPeriod": 10,
	"Language": "es",
	"AffidavitLanguage": "es"
}

...