mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-24 13:48:14 -05:00
66 lines
1.3 KiB
JSON
66 lines
1.3 KiB
JSON
{
|
|
"operationId": "updateCertificate",
|
|
"summary": "Update an existing Certificate",
|
|
"tags": ["Certificates"],
|
|
"parameters": [
|
|
{
|
|
"in": "path",
|
|
"name": "certificateID",
|
|
"schema": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"required": true,
|
|
"description": "ID of the certificate",
|
|
"example": 1
|
|
}
|
|
],
|
|
"requestBody": {
|
|
"description": "Certificate details to update",
|
|
"required": true,
|
|
"content": {
|
|
"application/json": {
|
|
"schema": "{{schema.UpdateCertificate}}"
|
|
}
|
|
}
|
|
},
|
|
"responses": {
|
|
"200": {
|
|
"description": "200 response",
|
|
"content": {
|
|
"application/json": {
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["result"],
|
|
"properties": {
|
|
"result": {
|
|
"$ref": "#/components/schemas/CertificateObject"
|
|
}
|
|
}
|
|
},
|
|
"examples": {
|
|
"default": {
|
|
"value": {
|
|
"result": {
|
|
"id": 1,
|
|
"created_at": 1604536109000,
|
|
"updated_at": 1604536109000,
|
|
"expires_on": null,
|
|
"type": "dns",
|
|
"user_id": 1,
|
|
"certificate_authority_id": 2,
|
|
"dns_provider_id": 1,
|
|
"name": "test1.jc21.com.au",
|
|
"domain_names": ["test1.jc21.com.au"],
|
|
"is_ecc": 0,
|
|
"status": "ready"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|