Sample - OpenAI API
GET/organization/certificates

List organization certificates

Lists certificates uploaded at the organization level. Use after to continue pagination, limit to control page size, and order to sort certificates by their created_at timestamp.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

3 parameters
limitintegeroptional
Maximum number of certificates to return, from 1 to 100. Defaults to 20 when omitted.
Default:20
afterstringoptional
A cursor containing a certificate object ID after which to continue the paginated results.
orderstringoptional
Sort order by `created_at`: `asc` or `desc`. Defaults to `desc` when omitted.
Allowed:ascdescDefault:desc

2 status codes
200Returns a list object containing organization certificate records, pagination cursors, and a `has_more` flag.
dataarray<object>required
first_idstringrequired
last_idstringrequired
has_morebooleanrequired
objectstringrequired
Allowed:list
429Returned when the request rate exceeds the permitted limit.
errorobjectrequired

Error handling

limit must be between 1 and 100 and defaults to 20 when omitted; order must be asc or desc and defaults to desc when omitted. A 429 is returned when the request rate exceeds the permitted limit.