-
Notifications
You must be signed in to change notification settings - Fork 8
/
GetApiIntegrationByID.go
58 lines (48 loc) · 1.82 KB
/
GetApiIntegrationByID.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package main
import (
"encoding/json"
"fmt"
"log"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/http_client"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/jamfpro"
)
const (
integrationID = 1 // Updated to be an integer
)
func main() {
// Define the path to the JSON configuration file inside the main function
configFilePath := "/Users/dafyddwatkins/GitHub/deploymenttheory/go-api-sdk-jamfpro/clientauth.json"
// Load the client OAuth credentials from the configuration file
authConfig, err := jamfpro.LoadClientAuthConfig(configFilePath)
if err != nil {
log.Fatalf("Failed to load client OAuth configuration: %v", err)
}
// Instantiate the default logger and set the desired log level
logger := http_client.NewDefaultLogger()
logLevel := http_client.LogLevelDebug // LogLevelNone // LogLevelWarning // LogLevelInfo // LogLevelDebug
// Configuration for the jamfpro
config := jamfpro.Config{
InstanceName: authConfig.InstanceName,
OverrideBaseDomain: authConfig.OverrideBaseDomain,
LogLevel: logLevel,
Logger: logger,
ClientID: authConfig.ClientID,
ClientSecret: authConfig.ClientSecret,
}
// Create a new jamfpro client instanceclient,
client, err := jamfpro.NewClient(config)
if err != nil {
log.Fatalf("Failed to create Jamf Pro client: %v", err)
}
// Call GetApiIntegrationByID function with an integer ID
integration, err := client.GetApiIntegrationByID(integrationID)
if err != nil {
log.Fatalf("Error fetching Jamf API Integration by ID: %v", err)
}
// Pretty print the integration in JSON
integrationJSON, err := json.MarshalIndent(integration, "", " ") // Indent with 4 spaces
if err != nil {
log.Fatalf("Error marshaling Jamf API Integration data: %v", err)
}
fmt.Println("Fetched Jamf API Integration:\n", string(integrationJSON))
}