You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a sign-up form in mailchimp and it also has fields for the user to input their address. When I list these parameters in list fields, I am getting the error.
{
msg: "3 - enter complete address"
result: "error"
}
Looking at the headers I believe this is due to the address parameters being capitalized and not matching the exact name in HTML address fields. The names in my embedded html form has names in this way for the address fields:
When I take a look at the headers in the network tab, I am seeing that the address sub-fields are being capitalized and I am thinking that may be the issue and should instead be 'ADDRESS[addr1]', etc.. in the request to mailchimp. (see below)
Please let me know if there is a work around for this issue or if I can be pointed to any solution, that would be great!
The text was updated successfully, but these errors were encountered:
I'm running into the exact same problem. The only case that doesn't capitalize the object keys in the NPM package is when it starts with group.
Removing field.toUpperCase() from the package will fix the problem. You just need to make sure that your other object keys are now All Caps where they need to be as the package won't auto cap the keys.
I have a sign-up form in mailchimp and it also has fields for the user to input their address. When I list these parameters in list fields, I am getting the error.
Looking at the headers I believe this is due to the address parameters being capitalized and not matching the exact name in HTML address fields. The names in my embedded html form has names in this way for the address fields:
When I take a look at the headers in the network tab, I am seeing that the address sub-fields are being capitalized and I am thinking that may be the issue and should instead be 'ADDRESS[addr1]', etc.. in the request to mailchimp. (see below)

Please let me know if there is a work around for this issue or if I can be pointed to any solution, that would be great!
The text was updated successfully, but these errors were encountered: