# Show

Get complete detail of the installed SSL certificate.

# HTTP Request:

GET https://api.serveravatar.com/organizations/{organization}/servers/{server}/applications/{application}/ssl

# Curl Request example:

curl --request GET \
  --url "https://api.serveravatar.com/organizations/5/servers/15/applications/92/ssl" \
  --header 'content-type: application/json' \
  --header 'Authorization: <YOUR API TOKEN>'

# Response:

# SSL Certificate Detail

  • 200 (Ok)
{
    "installed": true,
    "forceHttps": 0,
    "certificateInfo": {
        "issuer": "(STAGING) Artificial Apricot R3",
        "primary_domain": "*.serveravatarfm.host",
        "domains": [
            "*.serveravatarfm.host"
        ],
        "issued_on": "2023-01-27 21:48:17",
        "expires_on": "2023-04-27 21:48:16",
        "is_expired": false,
        "validity_left": 57,
        "type": "custom",
        "temp_domain": 1
    }
}

# Organization Not Found

  • 404 (Not Found)
{
    "message": "Organization not found!"
}

# Application Not Found

  • 404 (Not Found)
{
    "message": "Application not found!"
}

# Server Not Found

  • 404 (Not Found)
{
    "message": "Server not found!"
}

# Server Error

  • 500 (Internal Server Error)
{
    "message": "Something went really wrong!"
}
Last Updated: 3/1/2023, 1:57:58 PM