-
Notifications
You must be signed in to change notification settings - Fork 8
/
GetComputerInvitations.go
34 lines (28 loc) · 1 KB
/
GetComputerInvitations.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package main
import (
"encoding/xml"
"fmt"
"log"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/jamfpro"
)
func main() {
// Define the path to the JSON configuration file
configFilePath := "/Users/dafyddwatkins/localtesting/jamfpro/clientconfig.json"
// Initialize the Jamf Pro client with the HTTP client configuration
client, err := jamfpro.BuildClientWithConfigFile(configFilePath)
if err != nil {
log.Fatalf("Failed to initialize Jamf Pro client: %v", err)
}
// Use the client to call the GetComputerInvitations function.
invitations, err := client.GetComputerInvitations()
if err != nil {
log.Fatalf("Error retrieving computer invitations: %v", err)
}
// Output the invitations in a human-readable format.
// Here we're simply printing the XML representation of the invitations.
invitationsXML, err := xml.MarshalIndent(invitations, "", " ")
if err != nil {
log.Fatalf("Error marshalling invitations to XML: %v", err)
}
fmt.Printf("Computer Invitations:\n%s\n", invitationsXML)
}