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

    Interface ListOrganizationsRequestParameters

    {
    * from: "from",
    * take: 1,
    * sort: "sort"
    * }
    interface ListOrganizationsRequestParameters {
        from?: string | null;
        take?: number | null;
        sort?: string | null;
    }
    Index

    Properties

    Properties

    from?: string | null

    Optional Id from which to start selection.

    take?: number | null

    Number of results per page. Defaults to 50.

    sort?: string | null

    Field to sort by. Use field:order where order is 1 for ascending and -1 for descending. e.g. created_at:1. We currently support sorting by the following fields: name, display_name and created_at.