Go
package main import( "context" "os" latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk" "log" ) func main() { ctx := context.Background() s := latitudeshgosdk.New( latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")), ) res, err := s.APIKeys.Delete(ctx, "tok_x1ZJrdx5qg4LV") if err != nil { log.Fatal(err) } if res != nil { // handle response } }
{ "meta": {} }
Delete an existing API Key. Once deleted, the API Key can no longer be used to access the API.
Success
The response is of type file.
file
Was this page helpful?