Is there a /api/3/contacts/bulk_delete?

Hi all,

I’m looking for a way to delete a group of contacts in a single API call rather than having to iterate through an array of IDs making a single delete call per id. With the 5 calls per second rate limit, it will get painful for large lists.

Is there an undocumented API call like /api/3/contacts/bulk_delete ?

Thanks!

D

You can use the v1 API’s contact_delete_list endpoint to pass a comma-delimited list of IDs to delete.

Hope this helps!

1 Like

That’ll do the trick. Thanks!