Tool name: search-newsletters
Lists the email newsletters of a KlickTipp account, newest first: newsletter ID, email ID, name, delivery state, creation and dispatch moment, split-test flag and deep links. Narrow by a name fragment, by status (draft, scheduled, outgoing, sent) and by two half-open time windows on creation (createdFrom/createdBefore) and dispatch (sendDateFrom/sendDateBefore), ISO 8601 with UTC offset. Paged by cursor: hand nextCursor back unchanged with the same filters. A draft has no dispatch moment and never matches a sendDate window; a split test has no single email, its emailId is null. Subject, content, audience and statistics are read per newsletter through get-newsletter. SMS newsletters, autoresponders and automations are not included.
Text the name of a newsletter has to contain; omit to list them all
Only newsletters in this delivery state: "draft", "scheduled", "outgoing" or "sent"
Created at or after this moment, ISO 8601 with UTC offset ("2026-09-01T10:00:00+02:00")
Only newsletters created before this moment, exclusive, same format
Dispatch moment at or after this one, same format; a draft has none and never matches
Only newsletters whose dispatch moment lies before this one, exclusive, same format
How many newsletters to return at most, 1 to 100, 25 by default
nextCursor of the previous page, with the same filters; omit for the first page
{ "query": null, "status": "draft", "createdFrom": null, "createdBefore": null, "sendDateFrom": null, "sendDateBefore": null, "limit": null, "cursor": null, "accountId": null }
{ "accountId": 0, "count": 0, "hasNextPage": true, "nextCursor": "string", "newsletters": [ { "newsletterId": 0, "emailId": 0, "name": "string", "newsletterStatus": "string", "createdAt": "string", "sendDate": "string", "isSplitTest": true, "sent": 0, "opensTotal": 0, "clicksTotal": 0, "editUrl": "string", "statisticsUrl": "string", "contentUrl": "string" } ] }