GET web_api/error_log_items?start={start}&end={end}

Search the Error Log using a date range. If the start or end parameter is not included in the request, then the default value for start is midnight Central time zone for the current day, and the default value for end is the current date and time.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
start

Optional start DateTime for the search range

date

None.

end

Optional end DateTime for the search range

date

None.

Body Parameters

None.

Response Information

Resource Description

A list of all inquiries that returned an error message during the search range

Collection of ErrorLogItem
NameDescriptionTypeAdditional information
ItemID

The unique identifier for the error log item

integer

None.

ApiUsername

The API User's name

string

None.

TimeStamp

The DateTime value for when the error message was logged

date

None.

TestMode

Whether the inquiry was to the Sandbox environment or Production environment

boolean

None.

ErrorMessage

The error message text

string

None.

InquiryText

The details of the inquiry that caused the error message when processed

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ItemID": 1,
    "ApiUsername": "sample string 2",
    "TimeStamp": "2025-04-28T06:23:48.9583986-05:00",
    "TestMode": true,
    "ErrorMessage": "sample string 5",
    "InquiryText": "sample string 6"
  },
  {
    "ItemID": 1,
    "ApiUsername": "sample string 2",
    "TimeStamp": "2025-04-28T06:23:48.9583986-05:00",
    "TestMode": true,
    "ErrorMessage": "sample string 5",
    "InquiryText": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfErrorLogItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.giact.com/verificationservices/v5">
  <ErrorLogItem>
    <ApiUsername>sample string 2</ApiUsername>
    <ErrorMessage>sample string 5</ErrorMessage>
    <InquiryText>sample string 6</InquiryText>
    <ItemID>1</ItemID>
    <TestMode>true</TestMode>
    <TimeStamp>2025-04-28T06:23:48.9583986-05:00</TimeStamp>
  </ErrorLogItem>
  <ErrorLogItem>
    <ApiUsername>sample string 2</ApiUsername>
    <ErrorMessage>sample string 5</ErrorMessage>
    <InquiryText>sample string 6</InquiryText>
    <ItemID>1</ItemID>
    <TestMode>true</TestMode>
    <TimeStamp>2025-04-28T06:23:48.9583986-05:00</TimeStamp>
  </ErrorLogItem>
</ArrayOfErrorLogItem>