cURL
curl --request GET \ --url https://api.ngrok.com/ssh_certificate_authorities \ --header 'Authorization: Bearer <token>' \ --header 'ngrok-version: <ngrok-version>'
{ "ssh_certificate_authorities": [ { "id": "<string>", "uri": "<string>", "created_at": "<string>", "description": "<string>", "metadata": "<string>", "public_key": "<string>", "key_type": "<string>" } ], "uri": "<string>", "next_page_uri": "<string>" }
List all SSH Certificate Authorities 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 SSH Certificate Authority
URI of the SSH Certificate Authority API resource
timestamp when the SSH Certificate Authority API resource was created, RFC 3339 format
human-readable description of this SSH Certificate Authority. optional, max 255 bytes.
arbitrary user-defined machine-readable data of this SSH Certificate Authority. optional, max 4096 bytes.
raw public key for this SSH Certificate Authority
the type of private key for this SSH Certificate Authority
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?