Member Junction
    Preparing search index...

    Options for controlling integration sync behavior

    interface IntegrationSyncOptions {
        EntityMapIDs?: string[];
        FullSync?: boolean;
        ScheduledJobRunID?: string;
        SyncDirection?: "Pull" | "Push" | "Bidirectional";
    }
    Index

    Properties

    EntityMapIDs?: string[]

    Restrict sync to specific entity map IDs. If omitted, all enabled maps are synced.

    FullSync?: boolean

    Force a full sync, ignoring watermarks. Defaults to false.

    ScheduledJobRunID?: string

    Links this sync run to a ScheduledJobRun for traceability.

    SyncDirection?: "Pull" | "Push" | "Bidirectional"

    Override sync direction for all entity maps in this run. If omitted, each entity map's own SyncDirection is used. Pull = external → MJ only. Push = MJ → external only. Bidirectional = both.