Get subscribers of a newsletter
Only an admin or the owner of the newsletter can list its subscribers — WhatsApp answers 401 Not Authorized for anyone else.
401 Not Authorized
The newsletter ID
Optional
How many subscribers to fetch. Defaults to the maximum WhatsApp allows, which is also the ceiling for any higher value.
The subscriber list, or false when the request fails
false
// Up to the maximum WhatsApp allowsconst subscribers = await WPP.newsletter.getSubscribers('[newsletter-id]@newsletter');// Only the first 10const subscribers = await WPP.newsletter.getSubscribers('[newsletter-id]@newsletter', 10); Copy
// Up to the maximum WhatsApp allowsconst subscribers = await WPP.newsletter.getSubscribers('[newsletter-id]@newsletter');// Only the first 10const subscribers = await WPP.newsletter.getSubscribers('[newsletter-id]@newsletter', 10);
Get subscribers of a newsletter
Only an admin or the owner of the newsletter can list its subscribers — WhatsApp answers
401 Not Authorizedfor anyone else.