Function getAccountLinksFiltered

  • Retrieves a paginated list of account links based on the provided filter, limit, and cursor.

    Parameters

    • connection: Connection

      The database connection object.

    • accountLinkFilter: AccountLinkFilter = null

      An optional filter to apply to the account links.

    • limit: OptionalLimit = null

      An optional limit on the number of results to return.

    • cursor: OptionalPageCursor = null

      An optional cursor for pagination.

    Returns Promise<PaginatedEntity<{
        account: Account;
        secondary: Account;
    }>>

    A promise that resolves to a paginated entity containing account links with primary and secondary accounts.

    Available since ApiVersion 1