Modify certificate
POST/organization/certificates/{certificate_id}
Modify a certificate. Note that only the name can be modified.
Returns
Modify certificate
curl -X POST https://api.openai.com/v1/organization/certificates/cert_abc \
-H "Authorization: Bearer $OPENAI_ADMIN_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Renamed Certificate"
}'
{
"object": "certificate",
"id": "cert_abc",
"name": "Renamed Certificate",
"created_at": 1234567,
"certificate_details": {
"valid_at": 12345667,
"expires_at": 12345678
}
}
Returns Examples
{
"object": "certificate",
"id": "cert_abc",
"name": "Renamed Certificate",
"created_at": 1234567,
"certificate_details": {
"valid_at": 12345667,
"expires_at": 12345678
}
}