Delete certificate
DELETE/organization/certificates/{certificate_id}
Delete a certificate from the organization.
The certificate must be inactive for the organization and all projects.
Path Parameters
certificate_id: string
Returns
id: string
The ID of the certificate that was deleted.
object: "certificate.deleted"
The object type, must be certificate.deleted.
Delete certificate
curl https://api.openai.com/v1/organization/certificates/$CERTIFICATE_ID \
-X DELETE \
-H "Authorization: Bearer $OPENAI_API_KEY"{
"id": "id",
"object": "certificate.deleted"
}Returns Examples
{
"id": "id",
"object": "certificate.deleted"
}