Versions Compared

Key

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

...


EVICERTIA recommends to search using the field WithUniqueiIds

Code Block
titleExample of request
GET https://app.evicertiaecertia.com/api/EviPost/Query?WithUniqueIds=568a7105-21f8-4be1-b4ea-a7f900c4bf59&includeAffidavitsOnResult=true&includeAttachmentsOnResult=true&includeAffidavitBlobsOnResult=false&includeAttachmentBlobsOnResult=false
Content-Type: application/json
Accept: application/json
Authorization: basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX==
Host: app.evicertiaecertia.com



The result of this operation will include the following data:

  • Results: List of EviPost included in the response (depending on the Limit/Offset parameters of the original request):
    • EvidenceId: Unique identifier allocated to the evidence.
    • LookupKey: Locator allocated to the evidence by user at the time of submit:
      • When node is set to true EviPostSubmit.CustomFields.CustomField.IsLookupKey, this information will be displayed in node EviPostQuery.LookupKey.
        • Information appearing in EviPostSubmit.LookupKey node is the information included in the node:: EviPostSubmit.CustomFields.CustomField.Value
        • It should be taken into account that like node EviPostSubmit.CustomFields.CustomField.Value can be repeated several times, so in node EviPostQuery.LookupKey it is separated by "::". Here below is an answer from EviPostQuery:

...


Code Block
titleHere below is an answer from EviPostQuery:
{
	{
		"EvidenceId":"933ee25a-8791-4b56-95eb-a33b0172498f",
		"LookupKey":"NumeroColegiado::NumeroColegiado2"
	}
}

...

Code Block
titleExample of answer in JSON
{
	"Results":
	{
		"EvidenceId":"3977d143-a6cb-4642-abc6-a33b016cbec2",
		"LookupKey":"a2R4S25kWiu79fsbubSXkw==",
		"RecipientName":"ENTREGADO - Juan Españool",
		"Address":
		{
				"StreetAddress":"Gran via 74, 5.. A",
				"PostalCode":"28014",
				"Locality":"Madrid",
				"Region":"Madrid",
				"Country":"ES"
		},
		"State>Sent",
		"StateDate":"2014-05-30T22:08:07+02:00",
		"LastStateChangeDate":"2014-05-30T22:08:11+02:00",
		"Outcome":"None",
		"OutcomeDate":"2014-05-30T22:07:59+02:00",
		"CreationDate":"2014-05-30T22:07:59.797569+02:00",
		"SubmittedOn":"2014-05-30T22:07:59+02:00",
		"ProcessedOn":"2014-05-30T22:08:03+02:00",
		"SentOn":"2014-05-30T22:08:07+02:00",
	}
	"TotalMatches":1
}

...