Created
May 27, 2015 12:51
-
-
Save swooop/e98d07b731207697a69b to your computer and use it in GitHub Desktop.
Managing and uploading many contacts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -X POST \ | |
--user "$MJ_APIKEY_PUBLIC:$MJ_APIKEY_PRIVATE" \ | |
https://api.mailjet.com/v3/REST/contact/managemanycontacts -H "Content-Type: application/json" \ | |
-d "{ 'ContactLists':[{'ListID' : 1, 'Action' : 'addnoforce'}, {'ListID' : 2, 'Action': 'addnoforce'}], 'Contacts':[{'Email':'[email protected]', 'Name':'Jim', 'Properties':{'Property1':value, 'Property2':value2}}, {'Email':'[email protected]', 'Name':'Janet', 'Properties': {'Property1': value, 'Property2': value2}}]}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment