> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# Resource: SSL Certificate V1

# Type: Ssl Certificate Object

# Link: https://dev.wix.com/docs/api-reference/account-level/enterprise/site-management/ssl-certificate-v1/ssl-certificate-object.md

## Description: An SSL certificate installed for the domains connected to a site. A single certificate covers every domain listed in its subject alternative names, so 1 certificate typically covers both the apex domain and its `www` name.

## Schema:

```json
 Type: Ssl Certificate Object | type: SslCertificate
 Description: An SSL certificate installed for the domains connected to a site. A single certificate covers every domain listed in its subject alternative names, so 1 certificate typically covers both the apex domain and its `www` name.
       - name: id  | type: string | description: Certificate ID. Derived from the certificate's common name.
       - name: metaSiteId  | type: string | description: ID of the site the certificate is installed for.
       - name: commonName  | type: string | description: Common name in the certificate's subject.
       - name: dnsNames  | type: Array<string> | description: Domains the certificate covers, as listed in its subject alternative names.
       - name: issuer  | type: string | description: Certificate authority that issued the certificate.
       - name: notBefore  | type: string | description: Date and time the certificate becomes valid.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: notAfter  | type: string | description: Date and time the certificate expires.
       - name: serialNumber  | type: string | description: Certificate serial number, hex-encoded.

```