EasyFM - v5.0.0-beta.1
    Preparing search index...

    Interface extraBodyOptions

    Additional body options accepted by write operations.

    interface extraBodyOptions {
        deleteRelatedRecords?: { recordId: number; table: string }[];
        options?: {
            entrymode?: "script" | "user";
            prohibitmode?: "script" | "user";
        } & Record<string, any>;
        scripts?: ScriptRequestData;
    }
    Index

    Properties

    deleteRelatedRecords?: { recordId: number; table: string }[]
    options?: { entrymode?: "script" | "user"; prohibitmode?: "script" | "user" } & Record<
        string,
        any,
    >

    Type Declaration

    • Optionalentrymode?: "script" | "user"

      Defines what entry mode to use (FileMaker Server 2024 and newer) user (default) - Field validation occurs as per normal. Request is blocked if validation failed. script - Field validation is overridden/ignored when allowed in the database schema.

    • Optionalprohibitmode?: "script" | "user"

      Overrides the 'prohibit modification of this field during data entry' property (FileMaker Server 2024 - 21.1.1 and newer) user (default) - Follow this rule script - Ignore this rule