rmapi-js
    Preparing search index...

    Interface SyncEventAttributes

    what a sync notification says happened

    interface SyncEventAttributes {
        auth0UserID: string;
        event: "SyncComplete";
        eventType?: string;
        eventVersion?: string;
        orgID?: string;
        sourceDeviceID: string;
        userID?: string;
    }
    Index
    auth0UserID: string

    the account that synced, as an auth0 id

    event: "SyncComplete"

    the kind of event, always a sync completion here

    eventType?: string

    the notification family, always "SyncEventNotification" so far

    eventVersion?: string

    the format version, always "1" so far

    orgID?: string

    the organization of a managed account, otherwise empty

    sourceDeviceID: string

    the device that synced

    Tablets report their serial, api clients the id they registered with, so compare it against deviceId to spot your own syncs.

    userID?: string

    the same value as auth0UserID in every event we've seen