How to update subscriber with API?

Lakjin

Active Member
I'm using MailWizz api to update a subscriber:

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!
 
@Lakjin - What if you first fetch the given subscriber (by email or by uid) and then, since you have all the values, send them all back? Does that do it ?
 
Back
Top