MailChimp.Api.Net icon indicating copy to clipboard operation
MailChimp.Api.Net copied to clipboard

I made a group in mailchimp.net but not able to insert record group wise

Open Chintangandhi007 opened this issue 8 years ago • 5 comments

Hi shahriarhossain,

you had created a great Wrapper named .NET Wrapper for the MailChimp v3.0 API..

Great Work done by you but i want to add Subscriber to list, update Subscriber and remove from one list and insert in other list but i am unable to do this.

ADD SUBSCRIBER TO LIST WITH GROUP ..

please provide the full working Example like add Subscriber to list which you already created in Sample Example, But i want to update and remove from one list to another list, Add with different groups which contains category’s interests are displayed on signup forms. Possible Values: checkboxes,dropdown,radio,hidden

but it does not contain it so can you please upgrade this with all MailChimp API Calls with Class contains in following link: http://developer.mailchimp.com/documentation/mailchimp/reference/overview/

so your dll can be used as full flagged WRAPPER CLASS for API ver 3.0

THANK YOU.

Chintangandhi007 avatar Apr 14 '16 12:04 Chintangandhi007

Hi @Chintangandhi007 : Thanks for stopping by. I am bit confuse with your requirment. Do you want to take the member from one list and upload it to another?

If this is the case, then its pretty simple. :)

You have also refereed an url at the bottom of your text. Please be more specific which of the method u are looking for.

shahriarhossain avatar Apr 15 '16 12:04 shahriarhossain

Hi @shahriarhossain, Thanks for Replying.. I WANT TO ADD SUBSCRIBER TO LIST WITH GROUP ..

please provide the full working Example like add Subscriber to list which you already created in Sample Example, But i want to update in current list and transfer from one list to another list, Add with different groups which contains category’s interests are displayed on signup forms. Possible Values: checkboxes,dropdown,radio,hidden

so your dll can be used as full flagged WRAPPER CLASS for API ver 3.0

THANK YOU.

Chintangandhi007 avatar Apr 15 '16 13:04 Chintangandhi007

I am not clear actully what you are up to. Here is what I have understood so far-

  1. You want to upload new member to a existing list
  2. You want to move some list members to another list
  3. your third requirement is not clear. What do you mean by grouping?

Can you point out which method u want to achieve http://developer.mailchimp.com/documentation/mailchimp/reference ?

shahriarhossain avatar Apr 15 '16 15:04 shahriarhossain

Hi @shahriarhossain, Thanks for Replying..

subscriber add

Here is what I have understood so far-

  1. You want to upload new member to a existing list - YES
  2. You want to move some list members to another list - YES
  3. your third requirement is not clear. What do you mean by grouping? FOR THIS I ATTACHED A SCREEN SHOT.

I have a list named Moon Sign and Make Groups of 12 Zodiac Signs.. Add Each member as per their zodiac sign like John Doe, [email protected] - Zodiac Sign - Aries so it should be add in Aries Group.

It has 3 types of Possible values like checkboxes,dropdown,radio as our current list is radio group list.

And I want to achieve all methods from

http://developer.mailchimp.com/documentation/mailchimp/reference/overview/

under section /Lists/

Chintangandhi007 avatar Apr 16 '16 06:04 Chintangandhi007

@shahriarhossain

Essentially they want to know how to add a new email client to a list and one of their existing groups (Interest Category) in one call>

MailChimpList lists = new MailChimpList(); MCMember member2 = new MCMember() { email_address = String.Format("[email protected]"), email_type = "html", language = "English", status = SubscriberStatus.subscribed.ToString(), interests = * How to add this new email member to existing Interest Group* }; var x = lists.AddMember(member2, "{list-id}").Result;

fireole avatar Apr 17 '16 05:04 fireole