masto
    Preparing search index...

    Interface ListAccountsParams

    interface ListAccountsParams {
        active?: boolean | null;
        byDomain?: string | null;
        disabled?: boolean | null;
        displayName?: string | null;
        email?: string | null;
        ip?: string | null;
        limit?: number | null;
        local?: boolean | null;
        maxId?: string | null;
        minId?: string | null;
        pending?: boolean | null;
        remote?: boolean | null;
        sensitized?: boolean | null;
        silenced?: boolean | null;
        sinceId?: string | null;
        staff?: boolean | null;
        suspended?: boolean | null;
        username?: string | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    active?: boolean | null

    Filter for currently active accounts?

    byDomain?: string | null

    Filter by the given domain

    disabled?: boolean | null

    Filter for currently disabled accounts?

    displayName?: string | null

    Display name to search for

    email?: string | null

    Lookup a user with this email

    ip?: string | null

    Lookup users by this IP address

    limit?: number | null

    Maximum number of results to return per page. Defaults to 40. NOTE: Pagination is done with the Link header from the response.

    local?: boolean | null

    Filter for local accounts?

    maxId?: string | null

    Return results older than this ID.

    minId?: string | null

    Get a list of items with ID greater than this value excluding this ID

    pending?: boolean | null

    Filter for currently pending accounts?

    remote?: boolean | null

    Filter for remote accounts?

    sensitized?: boolean | null

    Boolean. Filter for accounts force-marked as sensitive?

    silenced?: boolean | null

    Filter for currently silenced accounts?

    sinceId?: string | null

    Return results newer than this ID.

    staff?: boolean | null

    Filter for staff accounts?

    suspended?: boolean | null

    Filter for currently suspended accounts?

    username?: string | null

    Username to search for