Client Certificate

APIs.ioEngineeringPlatform

Properties

Name Type Description
certificate_id string UUID of Cloudflare managed certificate.
cn string Common Name that is protected by the certificate
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-teams-devices-client-certificate-input-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/teams-devices_client_certificate_input_request",
  "title": "Client Certificate",
  "properties": {
    "certificate_id": {
      "description": "UUID of Cloudflare managed certificate.",
      "example": "b14ddcc4-bcd2-4df4-bd4f-eb27d5a50c30",
      "maxLength": 36,
      "type": "string"
    },
    "cn": {
      "description": "Common Name that is protected by the certificate",
      "example": "example.com",
      "type": "string"
    }
  },
  "required": [
    "certificate_id",
    "cn"
  ],
  "type": "object"
}