List Custom Emails (lawmatics_list-custom-emails)
List custom emails from Lawmatics with optional pagination and sorting. Each custom email includes its name, subject, promotional flag, and engagement statistics — opens, sends, bounces, clicks, and open/click/bounce/delivered rates as fractions (null for never-sent emails).
Tool Input
pageinteger— Page number (1-based)(> 0)
sortBystring— Column to sort by(enum: "id", "created_at", "updated_at")
sortOrderstring— Sort direction; ascending or descending(enum: "asc", "desc")
Tool Output
customEmailsarrayrequired— Custom emails on this page of results
[]object
idstringrequired— Lawmatics custom email ID
namestringrequired— Internal name of the custom email
subjectstringrequired— Subject line of the custom email
opensintegernullrequired— Unique open count; null when the email has never been sent
sendsintegernullrequired— Send count; null when the email has never been sent
bouncesintegernullrequired— Bounce count; null when the email has never been sent
clicksintegernullrequired— Click count; null when the email has never been sent
openRatenumbernullrequired— Open rate as a raw fraction in 0..1 (e.g. 0.24 means 24%); null when the email has never been sent
clickRatenumbernullrequired— Click rate as a raw fraction in 0..1 (e.g. 0.02 means 2%); null when the email has never been sent
bounceRatenumbernullrequired— Bounce rate as a raw fraction in 0..1 (e.g. 0.15 means 15%); null when the email has never been sent
deliveredRatenumbernullrequired— Delivered rate as a raw fraction in 0..1 (e.g. 0.80 means 80%); null when the email has never been sent
promotionalbooleanrequired— Whether the email is marked as promotional
createdAtstringrequired— When the custom email was created, as an ISO 8601 timestamp
updatedAtstringrequired— When the custom email was last updated, as an ISO 8601 timestamp
paginationobjectrequired— Pagination metadata derived from the API `meta` envelope
totalPagesnumberrequired— Total number of pages available
limitPerPagenumberrequired— Maximum custom emails returned per page
totalEntriesnumberrequired— Total number of custom emails across all pages
Related Tools