Versions Compared

Key

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

...

Code Block
titleExample of request
 POST https://app.evicertia.com/api/v2/EviNotice/Query
Content-Type: application/json
Accept: application/json
Authorization: basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX==
Host: app.evicertia.com

{
    "Limit": 50,
    "Owner": "pruebas@evicertia.com",
    "State": "Closed",
    "Outcome": "Failed,
    "LookupKeys": ["dev"],
    "Cursor": "AYDf+lSUutoIvCmEAQbEkUCv1RLwCH0saw=="
}
 

...

Code Block
titleExample of answer
{
    "Cursor": "AYDf+lSUutoIvCmEAQbEkUCv1RLwCH0saw==",
    "Results": [
        {
            "Id": "018429bc-c406-4091-afd5-12f0087d2c6b",
            "Subject": "Hello world",
            "Issuer": "Evicertia",
            "IssuerEmail": "pruebas@evicertia.com",
            "IssuerPhone": "EVICERTIA",
            "RecipientAddress": "unknown@evicertia.com",
            "RecipientLegalName": "LegalName",
            "RecipientDisplayName": "DisplayName",
            "State": "Closed",
            "Outcome": "Accepted",
            "CreationDate": "2022-10-30T16:32:26.8513550Z",
            "LastUpdateDate": "2022-11-11T19:39:13.0000000Z",
            "SubmittedOn": "2022-10-30T16:32:27.0000000Z",
            "ProcessedOn": "2022-10-30T16:32:35.0000000Z",
            "SentOn": "2022-10-30T16:32:36.0000000Z",
            "DeliveredOn": "2022-10-30T16:41:25.0000000Z",
            "ReadOn": "2022-10-30T17:09:45.0000000Z",
            "RepliedOn": "2022-10-30T17:09:55.0000000Z",
            "ExpiredOn": "2022-11-11T19:39:13.0000000Z",
            "AcceptedOn": "2022-10-30T17:09:55.0000000Z",
            "ArchivedOn": "2022-11-11T19:39:15.0000000Z",
            "TimeToLive": 10080,
            "AllowRefusal": true,
            "SourceChannel": "Web",
            "OnlineRetentionPeriod": 1,
            "NotaryRetentionPeriod": true
        }
    ]
}
 


Code Block
titleExample of request with cursor
POST https://app.evicertia.com/api/v2/EviNotice/Query
Content-Type: application/json
Accept: application/json
Authorization: basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX==
Host: app.evicertia.com

{
    "Cursor": "AYDf+lSUutoIvCmEAQbEkUCv1RLwCH0saw=="
}