Retrieves a list of the identifiers of all records deleted from a particular table since a specified date.
The tableName parameter must be one of the following:
Only the identifiers of records that have been deleted after the specified sinceDate parameter are returned.
The result is a TAuthStringList. The TextList property contains an array of strings, each one an identifier for a deleted record. If no records in the specified table were deleted since the specified date, the TextList will be empty.
A token is passed for authentication. If the authentication fails, or other errors occur, no data will be returned. The result of the authentication is represented by a TAuthenticate object.
This function has security level "Protected", and can only be accessed by users that have explicitly been granted permission to the API.
[WebMethod(Description = "Gets a list of the identifiers of all records deleted from a table since a date")] public TAuthStringList GetDeletedRecordsSince(string token, string tableName, DateTime sinceDate);
| 
Parameters  | 
Description  | 
| 
string token  | 
Mandatory string containing a token.  | 
| 
string tableName  | 
Mandatory string containing the name of the table to get deleted records of.  | 
| 
DateTime sinceDate  | 
Mandatory DateTime, only records deleted after this date are returned  | 
TAuthStringList, containing the identifiers of records deleted from the table since the date
| 
Copyright (c) VETtrak 2022. All rights reserved. |