Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface UpdateHookResponseContent

    interface UpdateHookResponseContent {
        triggerId?: string;
        id?: string;
        name?: string;
        enabled?: boolean;
        script?: string;
        dependencies?: HookDependencies;
    }
    Index

    Properties

    triggerId?: string

    Trigger ID

    id?: string

    ID of this hook.

    name?: string

    Name of this hook.

    enabled?: boolean

    Whether this hook will be executed (true) or ignored (false).

    script?: string

    Code to be executed when this hook runs.

    dependencies?: HookDependencies