GET api/SmartTransfer/Logs/{smartTransferLogId}
Gets information relevant for a specific SmartTransfer.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| smartTransferLogId |
The SmartTransferLog identifier to get information for. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Information for the SmartTransfer with the given log identifier.
ESignSystems.SmartSAFE.Models.SmartTransfer.SmartTransferInformationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SmartTransferLogId |
Gets or sets the SmartTransfer Document Log identifier this error is in reguards to. |
integer |
None. |
| Date |
Gets or sets the date this SmartTransfer occured. |
date |
None. |
| Error |
Gets or sets whether there was an error for this SmartTransfer. |
boolean |
None. |
| ErrorMessage |
Gets or sets the error message for for this SmartTransfer. |
string |
None. |
| SmartTransferDocumentInformation |
Gets or sets list of information for documents sent within this SmartTransfer. |
Collection of ESignSystems.SmartSAFE.Models.SmartTransfer.SmartTransferDocumentInformationModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"SmartTransferLogId": 1,
"Date": "2025-11-04T12:30:49.712892-05:00",
"Error": true,
"ErrorMessage": "sample string 1",
"SmartTransferDocumentInformation": [
{
"SmartTransferDocumentLogId": 1,
"Name": "sample string 1",
"DocumentId": 1,
"AuthoritativeCopy": true,
"Error": true,
"ErrorMessage": "sample string 2"
},
{
"SmartTransferDocumentLogId": 1,
"Name": "sample string 1",
"DocumentId": 1,
"AuthoritativeCopy": true,
"Error": true,
"ErrorMessage": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<SmartTransferInformationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartTransfer">
<Date>2025-11-04T12:30:49.712892-05:00</Date>
<Error>true</Error>
<ErrorMessage>sample string 1</ErrorMessage>
<SmartTransferDocumentInformation>
<SmartTransferDocumentInformationModel>
<AuthoritativeCopy>true</AuthoritativeCopy>
<DocumentId>1</DocumentId>
<Error>true</Error>
<ErrorMessage>sample string 2</ErrorMessage>
<Name>sample string 1</Name>
<SmartTransferDocumentLogId>1</SmartTransferDocumentLogId>
</SmartTransferDocumentInformationModel>
<SmartTransferDocumentInformationModel>
<AuthoritativeCopy>true</AuthoritativeCopy>
<DocumentId>1</DocumentId>
<Error>true</Error>
<ErrorMessage>sample string 2</ErrorMessage>
<Name>sample string 1</Name>
<SmartTransferDocumentLogId>1</SmartTransferDocumentLogId>
</SmartTransferDocumentInformationModel>
</SmartTransferDocumentInformation>
<SmartTransferLogId>1</SmartTransferLogId>
</SmartTransferInformationModel>