Update to "search subscriber by custom field" API?

eggerda

Member
Hi @twisted1919 can I request to add "status" as a selection in this API?

GET API-URL/lists/LIST-UNIQUE-ID/subscribers/search-by-custom-fields

It's bringing back blacklisted subscribers - and we're unable to update blacklisted subscribers to prevent them from being selected by the custom field again.

This would solve our issues... let me know. Thank you!

Dan
 
@laurentiu @twisted1919 in the meantime, is there a way to allow an "update" to a blacklisted record? So we can modify the value of a blacklisted email address custom field through the API?

Would this setting do it?

"Mark blacklisted as confirmed" - in the backend? If I set that to YES would it allow us to modify custom field data for blacklisted records?
 
Any update on either of these @laurentiu ? I think adding the "status" to the selection in this API method is the only way for now - even changing "Mark blacklisted as confirmed" in the backend - the API is still prevented from changing a field in a blacklisted record.
 
Any update on either of these @laurentiu ? I think adding the "status" to the selection in this API method is the only way for now
This has been added and will be available in the next release, you will can use like this:


PHP:
$response = $endpoint->searchByCustomFields('xxxxxxxxxx', [
    'FNAME' => 'test',
    'status' => 'confirmed',
]);
 
Back
Top