EdgeNext
Documentation home

EdgeNext Documentation

Product guides, setup instructions, and technical references.

CDN

Delete Certificate

Endpoint

Request URL: domain/certificate (DELETE)

API Host: cdn.api.edgenext.com

API Version: v2

Description

Deletes a certificate.

Request Parameters

The following list only includes API-specific request parameters. Common request parameters must also be included for production calls — see the Common Request Parameters page.

DELETE Parameters

Parameter Data Type Required Description
cert_id int Yes ID of the certificate to delete

Example

curl -X DELETE "https://cdn.api.edgenext.com/v2/domain/certificate?token={token}"\
    -H "Content-Type: application/json"\
    -d '{"cert_id":123}'

Response Example

JSON format:

{
    "code": 0,
    "data": "success" // Returns code=0 and data=success on success; error message on failure
}

Response Headers

HTTP/1.0 200 OK
Api-Id:                797198893
Content-Type:          application/json; charset=utf-8
X-Ratelimit-Grad:      minute
X-Ratelimit-Limit:     100
X-Ratelimit-Remaining: 100
X-Retry-After:         13

Need help? Contact our support team at support@edgenext.com.

Back to documentation home