Pesquisas recentes
Sem pesquisas recentes
Unsuspend all users in Zendesk
Publicado 12 de mar. de 2024
Hello,
Is there a way to unsuspend all users at once in Zendesk Support by running a script like the below:
curl https://[subdomain].zendesk.com/api/v2/users/update_many.json?ids=1,2,3 \
-d '{"user": {"suspended": false}}' \
-H "Content-Type: application/json" -X PUT \
-v -u {email_address}:{password}
If yes what would the script be how would I run it?
Thank you.
Kind Regards,
Anton
0
2
2 comentários
Shawna James
0
Git-Zen Support
Hi Anton, you should check out ZCLI
https://developer.zendesk.com/documentation/apps/getting-started/using-zcli/
You are going to have to sign into your domain and then you should be able to run your script
0