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

    Interface ListActionsRequestParameters

    {
    * triggerId: "triggerId",
    * actionName: "actionName",
    * deployed: true,
    * page: 1,
    * per_page: 1,
    * installed: true
    * }
    interface ListActionsRequestParameters {
        triggerId?: string | null;
        actionName?: string | null;
        deployed?: boolean | null;
        page?: number | null;
        per_page?: number | null;
        installed?: boolean | null;
    }
    Index

    Properties

    triggerId?: string | null

    An actions extensibility point.

    actionName?: string | null

    The name of the action to retrieve.

    deployed?: boolean | null

    Optional filter to only retrieve actions that are deployed.

    page?: number | null

    Use this field to request a specific page of the list results.

    per_page?: number | null

    The maximum number of results to be returned by the server in single response. 20 by default

    installed?: boolean | null

    Optional. When true, return only installed actions. When false, return only custom actions. Returns all actions by default.