import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const sslCertificate = await client.storage.buckets.sslCertificate.retrieve('');console.log(sslCertificate.data);
Returns the stored certificate detail of a bucket, if applicable.
GET
/
storage
/
buckets
/
{bucketName}
/
ssl_certificate
JavaScript
Copy
Ask AI
import Telnyx from 'telnyx';const client = new Telnyx({ apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted});const sslCertificate = await client.storage.buckets.sslCertificate.retrieve('');console.log(sslCertificate.data);