-
Notifications
You must be signed in to change notification settings - Fork 8
/
DeleteEbookByID.go
43 lines (33 loc) · 1.03 KB
/
DeleteEbookByID.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
package main
import (
"fmt"
"log"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/http_client"
"github.com/deploymenttheory/go-api-sdk-jamfpro/sdk/jamfpro"
)
func main() {
configFilePath := "/Users/dafyddwatkins/GitHub/deploymenttheory/go-api-sdk-jamfpro/clientauth.json"
authConfig, err := jamfpro.LoadClientAuthConfig(configFilePath)
if err != nil {
log.Fatalf("Failed to load client OAuth configuration: %v", err)
}
logger := http_client.NewDefaultLogger()
logLevel := http_client.LogLevelDebug
config := jamfpro.Config{
InstanceName: authConfig.InstanceName,
LogLevel: logLevel,
Logger: logger,
ClientID: authConfig.ClientID,
ClientSecret: authConfig.ClientSecret,
}
client, err := jamfpro.NewClient(config)
if err != nil {
log.Fatalf("Failed to create Jamf Pro client: %v", err)
}
ebookID := 1 // Replace with the actual eBook ID
err = client.DeleteEbookByID(ebookID)
if err != nil {
log.Fatalf("Error deleting ebook by ID: %v", err)
}
fmt.Println("Ebook successfully deleted by ID")
}