# Zuplo CLI: Ca Certificate Describe

<CliCommand
  command="ca-certificate describe"
  description="Describes a CA certificate"
  options={[
  {
    "name": "cert-id",
    "type": "string",
    "description": "The ID of the CA certificate to describe",
    "required": false,
    "deprecated": false,
    "hidden": false
  },
  {
    "name": "account",
    "type": "string",
    "description": "The account name",
    "required": false,
    "deprecated": false,
    "hidden": false
  },
  {
    "name": "output",
    "type": "string",
    "description": "Output format",
    "default": "default",
    "required": false,
    "deprecated": false,
    "hidden": false,
    "alias": [
      "o"
    ],
    "choices": [
      "default",
      "json"
    ]
  }
]}
  examples={[
  [
    "$0 ca-certificate describe --cert-id mtlsca_abc123",
    "Get details about a CA certificate"
  ],
  [
    "$0 ca-certificate describe --cert-id mtlsca_abc123 --output json",
    "Get details as JSON"
  ],
  [
    "$0 ca-certificate describe --cert-id mtlsca_abc123 --account my-account",
    "Explicitly specify the account"
  ]
]}
  usage="$0 ca-certificate describe --cert-id <id> [options]"
>

</CliCommand>

## Global options

The following global options are available for all commands:

- [`--help`](./global-options.mdx#help)
- [`--api-key`](./global-options.mdx#api-key)
