import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.cdn.trusted_ca_certificates.delete(
0,
)
CA certificates
Delete trusted CA certificate
DELETE
/
cdn
/
sslCertificates
/
{id}
Python
Copy
Ask AI
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
client.cdn.trusted_ca_certificates.delete(
0,
)