Usage

Use GetDeleted to get the IDs of individual objects that have been deleted during the specified time for the specified object.

NOTE: Only worked for the BudgetItem object.

Basic Steps

  1. Call GetDeleted, passing in the object and time span for which to retrieve data.
  2. Iterate through the returned array of IDs. For each ID element in the array, call Retrieve to obtain the latest information you want from the associated object. Your client application must then take the appropriate action on the local data, such as inserting new rows or updating existing ones with the latest information.
  3. Optionally, the client application saves the request timestamp for future reference.

General Syntax

GetDeletedResultArray = cventapi. GetDeleted(CvObjectType ObjectType, dateTime StartDate, dateTime EndDate

Input

NameTypeDescription
ObjectTypeCvObject TypeObject from which to retrieve data.
StartDateDateTimeStarting date/time (GMT – not local time zone) of the time span for which to retrieve the data. The Cvent Web service ignores the seconds portion of the specified dateTime value. For example, 12:30:15 is interpreted as 12:30:00 GMT.
EndDateDateTimeEnding date/time (GMT – not local time zone) of the time span for which to retrieve the data. The Cvent Web service ignores the seconds portion of the specified dateTime value. For example, 12:30:15 is interpreted as 12:30:00 GMT.

Output

NameTypeDescription
IdID ArrayArray of one or more Object IDs that have been deleted in the given time span.
Last updated on