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

Update a certificate by ID

PUT
http://localhost:3000/gateway_manager/v1/certificates/:id
PUT
/gateway_manager/v1/certificates/:id
$curl -X PUT http://localhost:3000/gateway_manager/v1/certificates/id \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "_id": "6853177801de7d29d95c123b",
3 "certificate": "string",
4 "alias": "test",
5 "contract_id": "cluster-1",
6 "host": "host_name",
7 "issuer": "E6",
8 "self_signed": true,
9 "type": "Host",
10 "validity": {
11 "notBefore": "2024-01-15T09:30:00Z",
12 "notAfter": "2024-01-15T09:30:00Z"
13 },
14 "updatedAt": "2024-01-15T09:30:00Z"
15}
Updates a certificate in the certificate store.
Was this page helpful?
Previous

Update gateway

Next
Built with

Authentication

AuthorizationBasic

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

Path parameters

idstringRequired

Id of certificate (MongoDB ObjectId as string)

Request

request body
aliasstringOptional

Response

Information about the certificate that was just updated
_idstring
certificatestring

PEM-encoded certificate string

aliasstring
contract_idstring
hoststring
issuerstring
self_signedboolean
typeenum
Allowed values:
validityobject
updatedAtstringformat: "date-time"

Errors

500
Internal Server Error