QuickBase JS SDK v2 - v2.2.2
    Preparing search index...

    Interface RecordsModifiedSinceResponse

    interface RecordsModifiedSinceResponse {
        changes?: {
            changeType?: "DELETE" | "CREATE" | "MODIFY";
            recordId?: number;
            timestamp?: string;
            [key: string]: unknown;
        }[];
        count: number;
        deletesTruncated?: boolean;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    changes?: {
        changeType?: "DELETE" | "CREATE" | "MODIFY";
        recordId?: number;
        timestamp?: string;
        [key: string]: unknown;
    }[]

    When includeDetails is true, this array contains the individual record changes. If includeDetails is false, this array will not be returned.

    Type Declaration

    • [key: string]: unknown
    • OptionalchangeType?: "DELETE" | "CREATE" | "MODIFY"

      The type of change that was detected.

    • OptionalrecordId?: number

      A record whose dependencies were found to have been updated after the time provided.

    • Optionaltimestamp?: string

      The timestamp that Quickbase found that exceeded the after time. This does not represent the latest date modified in the record graph.

    count: number

    The count of changes found.

    deletesTruncated?: boolean

    When true, this indicates that the number of deletes detected exceeded the limit and details could not be returned.