Hello all,
How do I resubscribe via API (aka change the subscription status from unsubscribed to confirmed)?
I'm using this PHP code and it's not updating the subscription status (but if I add code to update a custom field here, it does work):
How do I resubscribe via API (aka change the subscription status from unsubscribed to confirmed)?
I'm using this PHP code and it's not updating the subscription status (but if I add code to update a custom field here, it does work):
Code:
$response = $endpoint->update($listUid, $subscriber_uid, array(
'status' => 'confirmed',
));