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

    Interface ListConnectionsQueryParameters

    {}
    
    interface ListConnectionsQueryParameters {
        from?: string;
        take?: number;
        strategy?:
            | Management.ConnectionStrategyEnum
            | Management.ConnectionStrategyEnum[];
        name?: string;
        fields?: string;
        include_fields?: boolean;
    }
    Index

    Properties

    from?: string

    Optional Id from which to start selection.

    take?: number

    Number of results per page. Defaults to 50.

    Provide strategies to only retrieve connections with such strategies

    name?: string

    Provide the name of the connection to retrieve

    fields?: string

    A comma separated list of fields to include or exclude (depending on include_fields) from the result, empty to retrieve all fields

    include_fields?: boolean

    true if the fields specified are to be included in the result, false otherwise (defaults to true)