What should the lists array look like for more that one list when creating a contact?

SOLVED
Go to solution
ZelenaR4
Regular Participant
0 Votes

I want to create a new contact and add them to multiple lists on the

POST: https://api.constantcontact.com/v2/contacts endpoint

	"lists": [
		{
		"id": "1"
		}
	],

I want to set multiple ids what would that look like?

Thanks

1 ACCEPTED SOLUTION
David_B.
Moderator

Hello,

 

Thank you for reaching out to Constant Contact API Developer Support.

 

You can do this by adding an additional list item to the lists array. For example:

 

	"lists": [
		{
		"id": "1"
		},
		{
		"id": "2"
		}
	],

 

Please give that a try and let me know if you have any other questions!

 

Regards,

David B.
Tier II API Support Engineer

View solution in original post

1 REPLY 1
David_B.
Moderator

Hello,

 

Thank you for reaching out to Constant Contact API Developer Support.

 

You can do this by adding an additional list item to the lists array. For example:

 

	"lists": [
		{
		"id": "1"
		},
		{
		"id": "2"
		}
	],

 

Please give that a try and let me know if you have any other questions!

 

Regards,

David B.
Tier II API Support Engineer