SyncLog

A change log entry

Description

This object describes a change that has occurred on the gateway.

Properties

Type Name Description
integer SyncPosition Sequential id of sync log entry
string ObjectName Object type that was changed (products, products_categories, customers, etc)
string RefNum Reference number for object that was changed (ProductRefNum, CustRefNum, etc)
datetime ChangeDate The date/time that the changed occurred on the gateway (all times in PST)
string Action The type of change that occurred (insert,update or delete)

Places Used

getSyncLog

Examples

.NET VB

     try
                {
                    newtek.SyncLog[] log = client.getSyncLog(token, ObjectName, FromPosition);
                    MessageBox.Show(string.Concat(log.Length));

                }

.NET C

     try
                {
                    newtek.SyncLog[] log = client.getSyncLog(token, ObjectName, FromPosition);
                    MessageBox.Show(string.Concat(log.Length));

                }