Delete certificate

DELETEhttps:/api.openai.com/v1/organization/certificates/{certificate_id}

Delete a certificate from the organization.

The certificate must be inactive for the organization and all projects.

Response

A confirmation object indicating the certificate was deleted.

Example request
1
curl -X DELETE https://api.openai.com/v1/organization/certificates/cert_abc \
2
-H "Authorization: Bearer $OPENAI_ADMIN_KEY"
Example response
1
{
2
"object": "certificate.deleted",
3
"id": "cert_abc"
4
}
Built with