For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI referenceRelease notes
DocumentationAPI referenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTAdd a new certificate
        • GETCheck if a specific gateway connection is healthy
        • POSTCreate a new gateway
        • POSTCreate a new service group
        • DELDelete a certificate by ID
        • DELDelete a gateway by ID
        • DELDelete service group
        • GETGet a certificate by its ID
        • GETGet gateway by ID
        • GETGet gateway service details
        • GETGet service group by ID
        • GETList all actively connected gateways
        • GETList all certificates
        • GETList all gateways
        • GETList all service groups
        • GETList all services
        • POSTRun a gateway service
        • GETSimple health check
        • GETThe version of app-gateway_manager
        • PUTUpdate a certificate by ID
        • PUTUpdate gateway
        • PATCHUpdate service group
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceGateway Manager

Delete a certificate by ID

DELETE
http://localhost:3000/gateway_manager/v1/certificates/:id
DELETE
/gateway_manager/v1/certificates/:id
$curl -X DELETE http://localhost:3000/gateway_manager/v1/certificates/id \
> -u "<username>:<password>"
1{
2 "_id": "66ff56c9fcbec46997145abd",
3 "certificate": "-----BEGIN CERTIFICATE--...",
4 "contract_id": "my-certificate-1",
5 "host": "localhost",
6 "issuer": "localhost",
7 "self_signed": true,
8 "type": "Root",
9 "validity": {
10 "notBefore": "2024-10-03T20:52:55.000Z",
11 "notAfter": "2025-10-03T20:52:55.000Z"
12 }
13}
Deletes a particular certificate from the certificate store.
Was this page helpful?
Previous

Delete a gateway by ID

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Path parameters

idstringRequired

Id of certificate (MongoDB ObjectId as string)

Response

Information about the certificate that was just deleted
_idstring
The Id of the certificate within the database
certificatestring
The raw certificate data
contract_idstring
The name of the certificate
hoststring
issuerstring
self_signedboolean
typestring
validityobject

Errors

500
Internal Server Error