Skip to main content

Get Bucket SSL Certificate

GET 
/storage/buckets/:bucketName/ssl_certificate

Returns the stored certificate detail of a bucket, if applicable.

Request

Path Parameters

    bucketName stringrequired

    The name of the bucket

Responses

200: SSL Certificate Response

Response Headers

    Request samples


    curl -L 'https://api.telnyx.com/v2/storage/buckets/:bucketName/ssl_certificate' \
    -H 'Accept: application/json' \
    -H 'Authorization: Bearer <TOKEN>'

    Response samples


    {
    "data": {
    "id": "string",
    "issued_to": {
    "common_name": "string",
    "organization": "string",
    "organization_unit": "string"
    },
    "issued_by": {
    "common_name": "string",
    "organization": "string",
    "organization_unit": "string"
    },
    "valid_from": [
    "2020-01-01T00:00:00Z"
    ],
    "valid_to": [
    "2020-01-01T00:00:00Z"
    ],
    "created_at": [
    "2020-01-01T00:00:00Z"
    ]
    }
    }