MailChimp is a marketing tool to send promotional emails for business. So, If you want your data as JSON format then you can get with NoCodeAPI.
Make GET request on this endpoint to all lists with required parameters(if any required).
https://v1.nocodeapi.com//mailchimp//lists
Object | Description |
---|---|
page |
[Optional] Page number |
perPage |
[Optional] The number of records to return. Default value is 100. Maximum value is 1000 |
sort_dir |
[Optional] Determines the order direction for sorted results. ASC, or DESC |
sort_field |
[Optional] Returns files sorted by the specified field. |
Make GET request on this endpoint to get members with required parameters(if any required).
https://v1.nocodeapi.com//mailchimp//members
Object | Description |
---|---|
list_id |
[Required] List id. |
page |
[Optional] Page number |
perPage |
[Optional] The number of records to return. Default value is 100. Maximum value is 1000 |
status |
[Optional] The subscriber's status. subscribed, unsubscribed, cleaned, pending, transactional, or archived |
since_timestamp_opt |
[Optional] Restrict results to subscribers who opted-in after the set timeframe. We recommend ISO 8601 time format: 2015-10-21T15:41:36+00:00 |
before_timestamp_opt |
[Optional] Restrict results to subscribers who opted-in after the set timeframe. We recommend ISO 8601 time format: 2015-10-21T15:41:36+00:00 |
sort_field |
[Optional] Returns files sorted by the specified field. timestamp_opt, timestamp_signup, or last_changed |
sort_dir |
[Optional] Determines the order direction for sorted results. ASC, or DESC |
Make POST request on this endpoint to add members with required parameters(if any required).
https://v1.nocodeapi.com//mailchimp//members
Object | Description |
---|---|
list_id |
[Required] List id. |
email_address |
[Required] Email address of member |
status |
[Required] Status: subscribed, unsubscribed, cleaned, pending, transactional |
ip_signup |
[Optional] IP address the subscriber signed up from. |
timestamp_signup |
[Optional] The date and time the subscriber signed up for the list in ISO 8601 format. |
tags |
[Optional] The tags that are associated with a member. |
Make DELETE request on this endpoint to delete members with required parameters(if any required).
https://v1.nocodeapi.com//mailchimp//members
Object | Description |
---|---|
list_id |
[Required] List id. |
hash_id |
[Required] id of the member |
Make GET request on this endpoint to list all compaigns with required parameters(if any required).
https://v1.nocodeapi.com//mailchimp//campaigns
Object | Description |
---|---|
status |
[Optional] The status of the campaign. Possible Values: save, paused, schedule, sending, or sent. |
page |
[Optional] Page number |
perPage |
[Optional] The number of records to return. Default value is 100. Maximum value is 1000 |
sort_dir |
[Optional] Determines the order direction for sorted results. ASC, or DESC |
sort_field |
[Optional] Returns files sorted by the specified field. |
Make GET request on this endpoint to single compaign with required parameters(if any required).
https://v1.nocodeapi.com//mailchimp//campaign
Object | Description |
---|---|
id |
[Required] campaign ID. |