GET
/
organization
/
certificates
/
{certificate_id}
curl --request GET \
  --url https://api.openai.com/v1/organization/certificates/{certificate_id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "certificate",
  "id": "<string>",
  "name": "<string>",
  "created_at": 123,
  "certificate_details": {
    "valid_at": 123,
    "expires_at": 123,
    "content": "<string>"
  },
  "active": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

cert_id
string
required

Unique ID of the certificate to retrieve.

Query Parameters

include
enum<string>[]

A list of additional fields to include in the response. Currently the only supported value is content to fetch the PEM content of the certificate.

Response

200 - application/json

Certificate retrieved successfully.

Represents an individual certificate uploaded to the organization.