Currently the Jamf API connection is established via 2 separate calls, such as:
JAC = JamfApiConnection(server, username, password)
api = JamfApi(JAC)
There was some reason I had to do a 2-step call like this, but I can't remember what it was anymore. Regardless, it's a little silly, and the 2-steps should be abstracted away so it's just a single call such as:
api = Jamf(server, username, password)
Currently the Jamf API connection is established via 2 separate calls, such as:
There was some reason I had to do a 2-step call like this, but I can't remember what it was anymore. Regardless, it's a little silly, and the 2-steps should be abstracted away so it's just a single call such as: