Versions Compared

Key

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

...

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

{
	"LookupKey":"a2R4S25kWiu79fsbubSXkw==",
	"Document":"[ATENTTION: BASE64 for the PDF file would appear here]",
	"RecipientName":"ENTREGADO - Juan English",
	"RecipientLegalName":"Juan Valido",
	"RecipientAddress":
	{
			"StreetAddress":"Gran via 74, 5.. A",
			"PostalCode":"28014"
			"Locality":"Madrid",
			"Region":"Madrid",
			"Country":"ES"
	}
	"IssuerName":"Pedro Comprador",
	"IssuerLegalName":"Pedro valido",
	"IssuerAddress":
	{
		"StreetAddress":"c/ Gran Via, 1,1- A",
		"PostalCode":"28001",
		"Locality":"entregado",
		"Region":"Madrid",
		"Country":"ES"
	}
	"IssuerPhone":"+34677888777","
	"IssuerEmail":"pedro.comprador@gmail.com",
	"IssuerComments":"Sending on March.",
	"Options":
	{
		"PostServiceType":"Registered",
		"CertificationLevel":"Advanced",
		"NotaryRetentionPeriod":"5",
		"OnlineRetentionPeriod":"1",
		"CustomFields":
		[
			{
				"Key":"CollegiateMemberId",
				"Label":"Number of notarial college",
				"Value:"Collegiate member number",
				"IsLookupKey":false
			},
			{
				"Key":"ProtocolId",
				"Label":"Protocolo",
				"Value:"573/2014",
				"IsLookupKey":false
			}
		]
	}
}

...