Jump to content

How to mark clients as inactive


itvietnam

Recommended Posts

Hi,

May i know how to do bulk update multiple clients account to inactive or closed status direct from mysql?  I can see 3 status from mysql view.

2019-09-13_18-13-15.png.b9a6a4a1d95a1a12221f06c356aefffd.png

For example, their email failed into domain expired, domain is not exist, their account is nolonger exists... These list will be check and save as .txt format, each address listed per line.

Link to comment
Share on other sites

23 hours ago, itvietnam said:

May i know how to do bulk update multiple clients account to inactive or closed status direct from mysql?

to close all accounts, you could use the SQL query..

UPDATE tblclients
SET tblclients.status = 'Closed'

to add conditions to that, you would use WHERE statement(s).

alternatively, there's the CloseClient API function or there are commercial solutions available in Marketplace.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated