Telnyx Bucket SSL Certificate API

SSL certificate operations

Operations 3

DELETE /storage/buckets/{bucketName}/ssl_certificate Remove SSL Certificate #
GET /storage/buckets/{bucketName}/ssl_certificate Get Bucket SSL Certificate #
PUT /storage/buckets/{bucketName}/ssl_certificate Add SSL Certificate #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/telnyx-bucket-ssl-certificate-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

telnyx-bucket-ssl-certificate-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: support@telnyx.com
  description: Telnyx provides global communications and connectivity APIs for developers — including SIP trunking, programmable voice, SMS, MMS, WhatsApp Business Messaging, Call Control, Fax, Wireless (IoT & eSIM), Phone Numbers (DID provisioning & porting), Emergency Services, and Network APIs for private interconnects and edge connectivity. Build, scale, and manage voice, messaging, and data networks with Telnyx's carrier-grade global infrastructure and API-first platform.
  title: Telnyx Bucket SSL Certificate API
  version: 2.0.0
  x-endpoint-cost: light
servers:
- description: Version 2.0.0 of the Telnyx API
  url: https://api.telnyx.com/v2
security:
- bearerAuth: []
tags:
- description: SSL certificate operations
  name: Bucket SSL Certificate
paths:
  /storage/buckets/{bucketName}/ssl_certificate:
    delete:
      deprecated: false
      description: Deletes an SSL certificate and its matching secret.
      operationId: RemoveStorageSSLCertificate
      parameters:
      - description: Bucket Name
        example: ''
        in: path
        name: bucketName
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/SSLCertificate'
                type: object
          description: SSL Certificate Response
          headers: {}
        '401':
          description: Unauthorized
        '404':
          description: Bucket or SSL certificate not found
        '422':
          description: Unprocessable Entity
      summary: Remove SSL Certificate
      tags:
      - Bucket SSL Certificate
      x-latency-category: responsive
    get:
      deprecated: false
      description: Returns the stored certificate detail of a bucket, if applicable.
      operationId: GetStorageSSLCertificates
      parameters:
      - description: The name of the bucket
        example: ''
        in: path
        name: bucketName
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/SSLCertificate'
                type: object
          description: SSL Certificate Response
          headers: {}
        '401':
          description: Unauthorized
        '404':
          description: Bucket or SSL certificate not found
        '422':
          description: Unprocessable Entity
      summary: Get Bucket SSL Certificate
      tags:
      - Bucket SSL Certificate
      x-latency-category: responsive
    put:
      deprecated: false
      description: Uploads an SSL certificate and its matching secret so that you can use Telnyx's storage as your CDN.
      operationId: AddStorageSSLCertificate
      parameters:
      - description: The name of the bucket
        example: ''
        in: path
        name: bucketName
        required: true
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              properties:
                certificate:
                  description: The SSL certificate file
                  example: ''
                  format: binary
                  type: string
                private_key:
                  description: The private key file
                  example: ''
                  format: binary
                  type: string
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/SSLCertificate'
                type: object
          description: SSL Certificate Response
          headers: {}
        '401':
          description: Unauthorized
        '404':
          description: Bucket not found
        '422':
          description: Unprocessable Entity
      summary: Add SSL Certificate
      tags:
      - Bucket SSL Certificate
      x-latency-category: responsive
components:
  schemas:
    SSLCertificate:
      properties:
        created_at:
          description: Time when SSL certificate was uploaded
          example: '2020-01-01T00:00:00Z'
          format: date-time
          type: string
        id:
          description: Unique identifier for the SSL certificate
          type: string
        issued_by:
          properties:
            common_name:
              description: The common name of the entity the certificate was issued by
              type: string
            organization:
              description: The organization the certificate was issued by
              type: string
            organization_unit:
              description: The organizational unit the certificate was issued by
              type: string
          type: object
        issued_to:
          properties:
            common_name:
              description: The common name of the entity the certificate was issued to
              type: string
            organization:
              description: The organization the certificate was issued to
              type: string
            organization_unit:
              description: The organizational unit the certificate was issued to
              type: string
          type: object
        valid_from:
          description: The time the certificate is valid from
          example: '2020-01-01T00:00:00Z'
          format: date-time
          type: string
        valid_to:
          description: The time the certificate is valid to
          example: '2020-01-01T00:00:00Z'
          format: date-time
          type: string
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http
    branded-calling_bearerAuth:
      description: API key passed as a Bearer token in the Authorization header
      scheme: bearer
      type: http
    oauthClientAuth:
      description: OAuth 2.0 authentication for Telnyx API and MCP integrations
      flows:
        authorizationCode:
          authorizationUrl: https://api.telnyx.com/v2/oauth/authorize
          refreshUrl: https://api.telnyx.com/v2/oauth/token
          scopes:
            admin: Administrative access to Telnyx resources
          tokenUrl: https://api.telnyx.com/v2/oauth/token
        clientCredentials:
          scopes:
            admin: Administrative access to Telnyx resources
          tokenUrl: https://api.telnyx.com/v2/oauth/token
      type: oauth2
    outbound-voice-profiles_bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http
    pronunciation-dicts_bearerAuth:
      description: Telnyx API v2 key. Obtain from https://portal.telnyx.com
      scheme: bearer
      type: http
    stored-payment-transactions_bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http