cURL
curl --request GET \ --url https://api.ngrok.com/certificate_authorities \ --header 'Authorization: Bearer <token>' \ --header 'ngrok-version: <ngrok-version>'
{ "certificate_authorities": [ { "id": "<string>", "uri": "<string>", "created_at": "<string>", "description": "<string>", "metadata": "<string>", "ca_pem": "<string>", "subject_common_name": "<string>", "not_before": "<string>", "not_after": "<string>", "key_usages": [ "<string>" ], "extended_key_usages": [ "<string>" ] } ], "uri": "<string>", "next_page_uri": "<string>" }
List all Certificate Authority on this account
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
the list of all certificate authorities on this account
Show child attributes
unique identifier for this Certificate Authority
URI of the Certificate Authority API resource
timestamp when the Certificate Authority was created, RFC 3339 format
human-readable description of this Certificate Authority. optional, max 255 bytes.
arbitrary user-defined machine-readable data of this Certificate Authority. optional, max 4096 bytes.
raw PEM of the Certificate Authority
subject common name of the Certificate Authority
timestamp when this Certificate Authority becomes valid, RFC 3339 format
timestamp when this Certificate Authority becomes invalid, RFC 3339 format
set of actions the private key of this Certificate Authority can be used for
extended set of actions the private key of this Certificate Authority can be used for
URI of the certificates authorities list API resource
URI of the next page, or null if there is no next page
Was this page helpful?