Mailerlite is an email marketing tool to send campaigns for business. So, If you want your data in JSON format then you can get it with NoCodeAPI.
Make GET request on this endpoint to get campaigns with required parameters(if any required).
https://v1.nocodeapi.com//mailerlite//campaigns
Object | Description |
---|---|
status |
[Optional] available values: sent, draft, outbox |
limit |
[Optional] Number of result you want in one API call |
offset |
[Optional] To navigate for pagination |
Make GET request on this endpoint to subscribers with required parameters(if any required).
https://v1.nocodeapi.com//mailerlite//subscribers
Object | Description |
---|---|
limit |
[Optional] Number of result you want in one API call |
offset |
[Optional] To navigate for pagination |
type |
[Optional] available values: active, unsubscribed, bounced, junk, unconfirmed |
groupId |
[Optional] Group id, if you want to filter the subscribers data |
Make POST request on this endpoint to add subscriber with required parameters(if any required).
https://v1.nocodeapi.com//mailerlite//subscribers
Object | Description |
---|---|
groupId |
[Optional] Group id, if you want to add intt a group |
body |
[Required] Pass an body object, email is required |
– Body data format example:
{
"title": "Example 2",
"website": "https://example2.com"
}
Make GET request on this endpoint to groups with required parameters(if any required).
https://v1.nocodeapi.com//mailerlite//groups
Object | Description |
---|---|
limit |
[Optional] Number of result you want in one API call |
offset |
[Optional] To navigate for pagination |