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

    Interface CreateActionModuleRequestContent

    {
    * name: "name",
    * code: "code"
    * }
    interface CreateActionModuleRequestContent {
        name: string;
        code: string;
        secrets?: ActionModuleSecretRequest[];
        dependencies?: ActionModuleDependencyRequest[];
        api_version?: string;
        publish?: boolean;
    }
    Index

    Properties

    name: string

    The name of the action module.

    code: string

    The source code of the action module.

    The secrets to associate with the action module.

    The npm dependencies of the action module.

    api_version?: string

    The API version of the module.

    publish?: boolean

    Whether to publish the module immediately after creation.