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

    Interface FlowsListRequest

    {
    * page: 1,
    * per_page: 1,
    * include_totals: true,
    * synchronous: true
    * }
    interface FlowsListRequest {
        page?: number | null;
        per_page?: number | null;
        include_totals?: boolean | null;
        hydrate?: "form_count" | ("form_count" | null)[] | null;
        synchronous?: boolean | null;
    }
    Index

    Properties

    page?: number | null

    Page index of the results to return. First page is 0.

    per_page?: number | null

    Number of results per page. Defaults to 50.

    include_totals?: boolean | null

    Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).

    hydrate?: "form_count" | ("form_count" | null)[] | null

    hydration param

    synchronous?: boolean | null

    flag to filter by sync/async flows