I am creating the Coldfusion / Railo Wrapper API for Mailchimp restful Services V3.0. GET requests work fine, but I have problems sending data to Mailchimp.
My code format is:
httpService.setMethod("PUT") ;
httpService.setURL("https://us12.api.mailchimp.com/3.0/lists/d9****81/members/e311cfde*****************2dda77c0") ;
httpService.addParam(type="URL",name="apikey", value="*******************-us12");
httpService.addParam(type="URL",name="user", value="jnicola2:******************-us12");
httpService.addParam(type="BODY",name="status", value="Subscribed") ;
httpService.addParam(type="BODY",name="email_address", value="*****@*****.co.uk") ;
httpService.addParam(type="BODY",name="interests", value="{"ae4****7e5":true,"675****75a":true,"1ab****7f":false,"cf0****8ef":true,"38be****2a":false}") ;
ANSWER ERROR errordetail: 401 Unauthorized filecontent: {"type": " http://developer.mailchimp.com/documentation/mailchimp/guides/error-glossary/ ", "title": "API Key Missing", "status": 401, "detail": "The API key is not included in your request.", "Instance": ""}
What happened to my call?