POST wrapper/transactions/get
(SLGetUpdatedTransactions) Returns the Transactions with Matches that have been updated within a Time period.
Request Information
URI Parameters
None.
Body Parameters
Wrapper Request LSTServicesGetUpdatedTransactionsRequest
LSTServicesGetUpdatedTransactionsRequestName | Description | Type | Additional information |
---|---|---|---|
organizationName |
The User's Organization Name. |
string |
None. |
userName |
The User's Name. |
string |
None. |
password |
The User's Password. |
string |
None. |
elapsedTime |
The amount of time in minutes you would like for previous updates to be displayed. If this field is non-zero, that value will be used. |
integer |
None. |
lastGetTime |
The start time for which you would like updates (until the current time). This field will only be used if the elapsedTime is zero. |
date |
None. |
Request Formats
application/json, text/json
{ "organizationName": "sample string 1", "userName": "sample string 2", "password": "sample string 3", "elapsedTime": 4, "lastGetTime": "2024-11-18T19:08:38.5977664+00:00" }
application/xml, text/xml
<LSTServicesGetUpdatedTransactionsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSTServicesLookup"> <elapsedTime>4</elapsedTime> <lastGetTime>2024-11-18T19:08:38.5977664+00:00</lastGetTime> <organizationName>sample string 1</organizationName> <password>sample string 3</password> <userName>sample string 2</userName> </LSTServicesGetUpdatedTransactionsRequest>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
Match information with optional Compliance List Record details
LSTServicesGetUpdatedTransactionsResponseName | Description | Type | Additional information |
---|---|---|---|
status |
The Current Status of the call [Pass, Pending or Fail]. If potential matches are found, the Status returned will be Pending until all of the potential matches have been reviewed, even if one or more matches are set as a Hit. |
SLResultTypeEnum |
None. |
code |
A Code Value for the Status/Message returned. |
SLWrapperCodes |
None. |
message |
Information on the call results including Error details. |
string |
None. |
version |
The version of the Wrapper. |
string |
None. |
isiReserved |
A field used to return debugging information. |
string |
None. |
lastGetTime |
The time the search was performed. |
date |
None. |
transactions |
The Transactions that have been updated within the date/time range. |
Collection of SLUpdatedTransaction |
None. |
Response Formats
application/json, text/json
{ "status": 0, "code": 0, "message": "sample string 1", "version": "sample string 2", "isiReserved": "sample string 3", "lastGetTime": "2024-11-18T19:08:38.6134025+00:00", "transactions": [ { "referenceNumber": "sample string 1", "inputFileName": "sample string 2", "extractedDate": "2024-11-18T19:08:38.6134025+00:00", "status": "sample string 4" }, { "referenceNumber": "sample string 1", "inputFileName": "sample string 2", "extractedDate": "2024-11-18T19:08:38.6134025+00:00", "status": "sample string 4" } ] }
application/xml, text/xml
<LSTServicesGetUpdatedTransactionsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSTServicesLookup"> <code>SUCCESS</code> <isiReserved>sample string 3</isiReserved> <lastGetTime>2024-11-18T19:08:38.6134025+00:00</lastGetTime> <message>sample string 1</message> <status>PASS</status> <transactions> <SLUpdatedTransaction> <extractedDate>2024-11-18T19:08:38.6134025+00:00</extractedDate> <inputFileName>sample string 2</inputFileName> <referenceNumber>sample string 1</referenceNumber> <status>sample string 4</status> </SLUpdatedTransaction> <SLUpdatedTransaction> <extractedDate>2024-11-18T19:08:38.6134025+00:00</extractedDate> <inputFileName>sample string 2</inputFileName> <referenceNumber>sample string 1</referenceNumber> <status>sample string 4</status> </SLUpdatedTransaction> </transactions> <version>sample string 2</version> </LSTServicesGetUpdatedTransactionsResponse>