action cloudflare_access_mtls_authentication_get_an_mtls_certificate { label: "Get an mTLS certificate" description: "Fetches a single mTLS certificate." provider: cloudflare method: GET path: "/accounts/{account_id}/access/certificates/{certificate_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } certificate_id: { type: "string" description: "UUID." } } required: ["account_id", "certificate_id"] additionalProperties: false } output: { type: "object" } }