cdns/name/{{name}}/sslkeys

GET

Returns SSL certificates for all Delivery Services that are a part of the CDN.

Auth. Required

Yes

Roles Required

“admin”

Permissions Required

DS-SECURITY-KEY:READ, CDN:READ, DELIVERY-SERVICE:READ

Response Type

Array

Request Structure

Table 291 Request Path Parameters

Name

Description

name

The name of the CDN for which keys will be fetched

Response Structure

certificate

An object representing The SSL keys used for the Delivery Service identified by deliveryservice

key

Base 64-encoded private key for SSL certificate

crt

Base 64-encoded SSL certificate

deliveryservice

A string that is the xml_id of the Delivery Service using the SSL key within certificate

#697 Response Example
{ "response": [
    {
        "deliveryservice": "ds1",
        "certificate": {
            "crt": "base64encodedcrt1",
            "key": "base64encodedkey1"
        }
    },
    {
        "deliveryservice": "ds2",
        "certificate": {
            "crt": "base64encodedcrt2",
            "key": "base64encodedkey2"
        }
    }
]}