List organization certificates
GET/organization/certificates
List uploaded certificates for this organization.
Query Parameters
after: optional string
A cursor for use in pagination. after is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.
limit: optional number
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
Returns
has_more: boolean
object: "list"
first_id: optional string
last_id: optional string
List organization certificates
curl https://api.openai.com/v1/organization/certificates \
-H "Authorization: Bearer $OPENAI_API_KEY"{
"data": [
{
"id": "id",
"certificate_details": {
"content": "content",
"expires_at": 0,
"valid_at": 0
},
"created_at": 0,
"name": "name",
"object": "certificate",
"active": true
}
],
"has_more": true,
"object": "list",
"first_id": "cert_abc",
"last_id": "cert_abc"
}Returns Examples
{
"data": [
{
"id": "id",
"certificate_details": {
"content": "content",
"expires_at": 0,
"valid_at": 0
},
"created_at": 0,
"name": "name",
"object": "certificate",
"active": true
}
],
"has_more": true,
"object": "list",
"first_id": "cert_abc",
"last_id": "cert_abc"
}