How to batch add users in Pulse.

Hi All

What methods are available in Pulse to batch add users?

I tried using the API, but when I logged in as admin and called /api/system/user, the addition failed.Checking the logs shows that the current user does not have permission to add users.

thanks

Hi @Carson.li,

There is no official API yet. However, depending on your situation, here are some available methods,

  1. If migrating users from another Pulse server, there is a Administrator | Synchronisation Manager page that allows you to centralize and sync users from a single Pulse server and let security be distributed to connected Pulse servers
  2. If it is only a single Pulse server, a way to go about it is to go through the UI and control it from there. There are a number of automation scripts like Microsoft’s Playwright among others.

Just a heads up that things might change still on the front-end / UI with option 2 though it should be manageable especially with the automation scripts for minor changes.

Cheers,

Paul

Hi @plim

I’ve implemented this using Python and Selenium.

Thanks for your advice!