delete_certificate
Remove a specific certificate associated with a website by providing the site ID and certificate ID using the ESA MCP Server's standardized protocols for managing security configurations.
Instructions
Deletes a certificate for a website.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the certificate. Example: 30001303 | |
siteId | Yes | The website ID, which can be obtained by calling the ListSites operation. Example: 1234567890123 |
Input Schema (JSON Schema)
{
"annotations": {},
"properties": {
"id": {
"description": "The ID of the certificate. Example: 30001303",
"type": "string"
},
"siteId": {
"description": "The website ID, which can be obtained by calling the ListSites operation. Example: 1234567890123",
"type": "number"
}
},
"required": [
"siteId",
"id"
],
"type": "object"
}