can someone help me?
I'm using the set_contact_customs() GetResponse API function. It works, but can someone explain what happens when the same email address is subscribed in more than one campaign?
For example I want to set the field 'bought' with the string '3' for the user mail AT mail.com
If the user mail AT mail.com is subscribed in two campaigns, which campaign does the set_contact_customs() affect?
set_contact_customs() doesn't take the campaign as argument (documentation: http://apidocs.getresponse.com/en/api/1.5.0/Contacts/set_contact_customs ), so if you want to set a custom field only for one campaign how can you do?
I tryed this:
$result_set = $client->set_contact_customs(
$api_key,
array (
'contact' => $ee_cont_id,
'customs' => array(
array(
'name' => $param_name,
'content' => $param_value
)
)
)
);
And it affected only one campaign, but not the one that I wanted.
Thanks