GET web_api/error_log_items/{id}
Get a single Error Log Item by its unique identifier.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The Error Log item's unique identifier |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The response body will contain the single requested Error Log item.
ErrorLogItem| Name | Description | Type | Additional 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-12-18T16:49:24.2664216-06:00",
"TestMode": true,
"ErrorMessage": "sample string 5",
"InquiryText": "sample string 6"
}
application/xml, text/xml
Sample:
<ErrorLogItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.giact.com/verificationservices/v5"> <ApiUsername>sample string 2</ApiUsername> <ErrorMessage>sample string 5</ErrorMessage> <InquiryText>sample string 6</InquiryText> <ItemID>1</ItemID> <TestMode>true</TestMode> <TimeStamp>2025-12-18T16:49:24.2664216-06:00</TimeStamp> </ErrorLogItem>