Files
nginx-proxy-manager/backend/embed/api_docs/paths/certificates-authorities/caID/get.json
2021-06-30 10:50:55 +10:00

52 lines
980 B
JSON

{
"operationId": "getCertificateAuthority",
"summary": "Get a Certificate Authority object by ID",
"tags": [
"Certificate Authorities"
],
"parameters": [
{
"in": "path",
"name": "caID",
"schema": {
"type": "integer",
"minimum": 1
},
"required": true,
"description": "ID of the Certificate Authority",
"example": 1
}
],
"responses": {
"200": {
"description": "200 response",
"content": {
"application/json": {
"schema": {
"required": [
"result"
],
"properties": {
"result": {
"$ref": "#/components/schemas/CertificateAuthorityObject"
}
}
},
"examples": {
"default": {
"value": {
"result": {
"id": 1,
"created_on": 1602588511,
"modified_on": 1602588511,
"name": "Let's Encrypt",
"acme2_url": "https://acme-v02.api.letsencrypt.org/directory"
}
}
}
}
}
}
}
}
}