Returns a log of the the operations performed and record counts returned for a particular synchronization session.
Given the SyncId of a previous synchronization session, this operation returns a list of the synchronization requests logged during the session and the counts of the records returned.
The response may contain zero or more response elements
<?xml version='1.0' encoding='UTF-8' ?> <soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'> <soap:Header> <Session xmlns='urn:soap.convio.com'> <SessionId>87b595b8e3c82928155dc5f424849a00f32e761d:JServSessionIdr005=0jqh43iip1.app8007:1001021:318:2010-03-09T18:08:02.856Z</SessionId> </Session> </soap:Header> <soap:Body> <GetSynchronizationRequestLog xmlns='urn:soap.convio.com'> <SyncId>82</SyncId> </GetSynchronizationRequestLog> </soap:Body> </soap:Envelope>
<?xml version='1.0' encoding='UTF-8'?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetSynchronizationRequestLogResponse xmlns="urn:soap.convio.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ens="urn:object.soap.convio.com"> <RecordRequest xsi:type="RecordQueryRequest"> <Operation>GetIncrementalInserts</Operation> <RecordType>Constituent</RecordType> <RecordCount>43</RecordCount> <RequestTime>2010-03-09T18:10:32Z</RequestTime> <SyncId>82</SyncId> <Page>1</Page> <PageSize>100</PageSize> </RecordRequest> <RecordRequest xsi:type="RecordQueryRequest"> <Operation>GetIncrementalUpdates</Operation> <RecordType>Constituent</RecordType> <RecordCount>9</RecordCount> <RequestTime>2010-03-09T18:12:09Z</RequestTime> <SyncId>82</SyncId> <Page>1</Page> <PageSize>100</PageSize> </RecordRequest> <RecordRequest xsi:type="RecordQueryRequest"> <Operation>GetIncrementalDeletes</Operation> <RecordType>Constituent</RecordType> <RecordCount>2</RecordCount> <RequestTime>2010-03-09T18:12:12Z</RequestTime> <SyncId>82</SyncId> <Page>1</Page> <PageSize>100</PageSize> </RecordRequest> </GetSynchronizationRequestLogResponse> </soap:Body> </soap:Envelope>
Comments