Optionaloptions: NewsletterSearchOptions// Basic search
const result = await WPP.newsletter.search('technology');
// Search with options
const result = await WPP.newsletter.search('news', {
limit: 10,
categories: ['TECHNOLOGY', 'NEWS']
});
// Pagination
const firstPage = await WPP.newsletter.search('tech');
if (firstPage.pageInfo?.hasNextPage) {
const nextPage = await WPP.newsletter.search('tech', {
cursorToken: firstPage.pageInfo.endCursor
});
}
Search for newsletters in the directory