POST api/Reports/ARCValidationErrorLogSearch
Allows a user to search for ARC validation error logs.
Request Information
URI Parameters
None.
Body Parameters
The ARC validation error log search criteria
ESignSystems.SmartSAFE.Models.Reports.ARCValidationErrorLogSearchCriteria| Name | Description | Type | Additional information |
|---|---|---|---|
| MIN |
Gets or sets the MIN. |
string |
Required Max length: 18 |
| ClientId |
Gets or sets the client identifier. |
integer |
None. |
| ReceivedFromMERSOrgId |
Gets or sets which MERS organization the document was received from. |
string |
Max length: 7 |
| StartDate |
Gets or sets the start date. |
date |
Required |
| EndDate |
Gets or sets the end date. |
date |
Required |
| PageSize |
Gets or sets the number of rows in the page. |
integer |
Range: inclusive between 1 and 2147483647 |
| PageOffset |
Gets or sets the offset page to return. |
integer |
None. |
Request Formats
application/json, text/json
{
"MIN": "sample string 1",
"ClientId": 1,
"ReceivedFromMERSOrgId": "sample string 2",
"StartDate": "2026-07-26T20:29:20.2941933-07:00",
"EndDate": "2026-07-26T20:29:20.2941933-07:00",
"PageSize": 1,
"PageOffset": 3
}
application/xml, text/xml
<ARCValidationErrorLogSearchCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Reports"> <PageOffset xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">3</PageOffset> <PageSize xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">1</PageSize> <ClientId>1</ClientId> <EndDate>2026-07-26T20:29:20.2941933-07:00</EndDate> <MIN>sample string 1</MIN> <ReceivedFromMERSOrgId>sample string 2</ReceivedFromMERSOrgId> <StartDate>2026-07-26T20:29:20.2941933-07:00</StartDate> </ARCValidationErrorLogSearchCriteria>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
The list of ARC validation error logs resulting from the search.
Collection of ESignSystems.SmartSAFE.Models.Reports.ClientToClientTransferLogModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientToClientTransferLogId |
The client to client transfer log identifier. |
integer |
None. |
| SendingClientName |
Gets or sets the sending client's name. |
string |
None. |
| ReceivingClientName |
Gets or sets the receiving client's name. |
string |
None. |
| Status |
Gets or sets the status of the upload. |
string |
None. |
| StartTime |
Gets or sets the start time of the transfer. |
date |
None. |
| EndTime |
Gets or sets the end time of the transfer. |
date |
None. |
| DocumentGuid |
Gets or sets the response log document GUID. |
string |
None. |
| UpdatedBy |
Gets or sets the name of the user that updated the model. |
string |
None. |
| UpdatedDate |
Gets or sets the date an time that the model was updated. |
date |
None. |
Response Formats
application/json, text/json
[
{
"ClientToClientTransferLogId": 1,
"SendingClientName": "sample string 2",
"ReceivingClientName": "sample string 3",
"Status": "sample string 4",
"StartTime": "2026-07-26T20:29:20.3093726-07:00",
"EndTime": "2026-07-26T20:29:20.3093726-07:00",
"DocumentGuid": "sample string 5",
"UpdatedBy": "sample string 6",
"UpdatedDate": "2026-07-26T20:29:20.3093726-07:00"
},
{
"ClientToClientTransferLogId": 1,
"SendingClientName": "sample string 2",
"ReceivingClientName": "sample string 3",
"Status": "sample string 4",
"StartTime": "2026-07-26T20:29:20.3093726-07:00",
"EndTime": "2026-07-26T20:29:20.3093726-07:00",
"DocumentGuid": "sample string 5",
"UpdatedBy": "sample string 6",
"UpdatedDate": "2026-07-26T20:29:20.3093726-07:00"
}
]
application/xml, text/xml
<ArrayOfClientToClientTransferLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Reports">
<ClientToClientTransferLogModel>
<UpdatedBy xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">sample string 6</UpdatedBy>
<UpdatedDate xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">2026-07-26T20:29:20.3093726-07:00</UpdatedDate>
<ClientToClientTransferLogId>1</ClientToClientTransferLogId>
<DocumentGuid>sample string 5</DocumentGuid>
<EndTime>2026-07-26T20:29:20.3093726-07:00</EndTime>
<ReceivingClientName>sample string 3</ReceivingClientName>
<SendingClientName>sample string 2</SendingClientName>
<StartTime>2026-07-26T20:29:20.3093726-07:00</StartTime>
<Status>sample string 4</Status>
</ClientToClientTransferLogModel>
<ClientToClientTransferLogModel>
<UpdatedBy xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">sample string 6</UpdatedBy>
<UpdatedDate xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">2026-07-26T20:29:20.3093726-07:00</UpdatedDate>
<ClientToClientTransferLogId>1</ClientToClientTransferLogId>
<DocumentGuid>sample string 5</DocumentGuid>
<EndTime>2026-07-26T20:29:20.3093726-07:00</EndTime>
<ReceivingClientName>sample string 3</ReceivingClientName>
<SendingClientName>sample string 2</SendingClientName>
<StartTime>2026-07-26T20:29:20.3093726-07:00</StartTime>
<Status>sample string 4</Status>
</ClientToClientTransferLogModel>
</ArrayOfClientToClientTransferLogModel>