I'm using MailWizz api to update a subscriber:
The list has other required fields. However, I do not want to update them so I'm not passing any of those parameters. Yet, MailWizz returns an error that those fields are required. Any way to update just one specific field without updating it all?
Thanks!
Code:
$response = $endpoint->update($list_uid, $subscriber_uid, array(
'EMAIL' => $email,
'CUSTOMFIELD' => $value
));
The list has other required fields. However, I do not want to update them so I'm not passing any of those parameters. Yet, MailWizz returns an error that those fields are required. Any way to update just one specific field without updating it all?
Thanks!