Connect to the VisualCron API using a programming language of your choice, such as C#, Java, or Python. Create a new instance of the "User" class. Set the properties of the User object to the desired values. For example, you can set the "UserName" property to the username of the AD user, and the "Password" property to the user's password. Call the "Add" method of the VisualCron API's "Users" object, passing in the User object as a parameter.
using VisualCronAPI;
MyBalanceNow // Connect to VisualCron API
ServerConnection conn = new ServerConnection();
conn.Connect("localhost", 16444, "admin", "admin");
// Create new User object
User user = new User();
user.UserName = "newuser";
user.Password = "password123";
// Add user to VisualCron
Users users = new Users(conn);
users.Add(user);