@wppconnect-team/wppconnect - v1.36.4
    Preparing search index...

    Function list

    • Return a list of contacts

      Parameters

      Returns Promise<ContactModel[]>

      // All contacts
      const contats = await WPP.contact.list();

      // Only my contacts
      const contacts = await WPP.contact.list({onlyMyContacts: true});

      // Only with label Text
      const contacts = await WPP.contact.list({withLabels: ['Test']});

      // Only with label id
      const contacts = await WPP.contact.list({withLabels: ['1']});

      // Only with label with one of text or id
      const contacts = await WPP.contact.list({withLabels: ['Alfa','5']});