You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running into an issue when trying to delete a system
accept := "application/json"
client1 := jcapiv1.NewAPIClient(jcapiv1.NewConfiguration())
auth1 := context.WithValue(context.TODO(), jcapiv1.ContextAPIKey, jcapiv1.APIKey{
Key: os.Getenv("JUMPCLOUD_API_KEY"),
})
_, _, err := client1.SystemsApi.SystemsDelete(auth1, "123456789", contentType, accept, nil)
if err != nil {
helpers.LogFatalError(err)
}```
`json: cannot unmarshal object into Go struct field System.sshdParams of type string
exit status 1`
For now I'll just have to ignore `err`.
The text was updated successfully, but these errors were encountered:
If I create a new system and then quickly attempt to delete, it seems to work. I assume the system hasn't fully populated jumpcloud side. err returns nil
Hi,
I'm running into an issue when trying to delete a system
The text was updated successfully, but these errors were encountered: