Interface ListDirectoryParams

interface ListDirectoryParams {
    limit?: null | number;
    local?: null | boolean;
    offset?: null | number;
    order?: null | DirectoryOrderType;
}

Properties

limit?: null | number

How many accounts to load. Default 40.

local?: null | boolean

Only return local accounts.

offset?: null | number

How many accounts to skip before returning results. Default 0.

order?: null | DirectoryOrderType

active to sort by most recently posted statuses (default) or new to sort by most recently created profiles.