getUsers
Syntax

Session.getUsers();
Parameters
Return value Array of Array of string
The returned array contains arrays of two strings: the user’s short name and the user’s full name.
Description
The getUsers() method returns a list of users as defined on Studio Server.
Examples
Get all users
// Get all users from Studio Server.
var users = app.entSession.getUsers();
for (var i = 0; i < users.length; i++) {
alert("User: " + users[i][0] + " (" + users[i][1] + ")");
}
Supported versions
| Adobe Version | Supported |
|---|---|
| 2023 | ✔ |
| 2024 | ✔ |
| 2025 | ✔ |
| 2026 | ✔ |