{ "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" } } } } } } } } }