Account.run.listUsers() method not working correctly (anymore).

Account.run.listUsers() method not working correctly (anymore).

Hi,

We noticed that the behavior of the the Account.run.listUsers() method has changed. We used to filter on multiple tags but now the filter only works for one tag. In the example below we can filter on "managers" or on company_id, but not on both. Always returns zero results.

Please advice,


Kind Regards,

Erwin

  1. manager_list = await account.run.listUsers({
    page: 1,
    fields: ["id", "name", "phone", "email"],
    filter: {
    tags: [
    { key: "access", value: "manager" },
    { key: "company_id", value: company_id }
    ]
    },
    amount: 1e4
    });