Skip to main content

Remove SSL Certificate

DELETE 
/storage/buckets/:bucketName/ssl_certificate

Deletes an SSL certificate and its matching secret.

Request

Path Parameters

    bucketName stringrequired

    Bucket Name

Responses

200: SSL Certificate Response

Request samples


curl -L -X DELETE '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"
}
}