CNAME & SSL
Updates the CNAME configuration for a CDN resource. This setting is available for small and large resource types.
UUID of the organization.
UUID of the CDN resource.
UUID of the resource.
****-****-****-****List of CNAME records associated with the resource.
["example.com","cdn.example.com"]CNAME configuration updated successfully.
PUT /api/v1/cdn/{organization_uuid}/resource/{resource_uuid} HTTP/1.1
Host: cloud.medianova.com
Content-Type: application/json
Accept: */*
Content-Length: 60
{
"resource_uuid": "****-****-****-****",
"cname": [
"test.com"
]
}CNAME configuration updated successfully.
{
"status": true,
"data": {
"resource_uuid": "****-****-****-****",
"resource_name": "test.sm",
"cdn_url": "test.sm.mncdn.com",
"resource_type": "small",
"cname": [
"test.com"
],
"ssl_status": true,
"ssl_type": "shared_ssl",
"status_http3_support": true,
"http2": true,
"origin_type": "mainstream",
"status_geo_blocking": false,
"origin_response_timeout": 30,
"tls_version": [
"tlsv1.2",
"tlsv1.3"
],
"created_at": "2024-06-28T09:45:23.000000Z",
"updated_at": "2024-12-29T10:44:25.000000Z"
}
}Updates SSL and DNS configuration for a specific CDN resource. This setting is available for small and large resource types.
UUID of the organization.
UUID of the CDN resource.
Enables or disables SSL for the resource.
trueType of SSL configuration applied when SSL is enabled.
shared_sslPossible values: UUID of the SSL certificate. Required when ssl_type is 'sni'.
****-****-****-****ID of the custom SNI. Required when ssl_type is 'custom_sni'.
12345Type of DNS configuration for the resource.
GeoIPPossible values: ID of the server group associated with the organization.
67890SSL configuration updated successfully.
PUT /api/v1/cdn/{organization_uuid}/resource/{resource_uuid} HTTP/1.1
Host: cloud.medianova.com
Content-Type: application/json
Accept: */*
Content-Length: 43
{
"ssl_status": true,
"ssl_type": "shared_ssl"
}SSL configuration updated successfully.
{
"status": true,
"data": {
"resource_uuid": "****-****-****-****",
"resource_name": "test.sm",
"cdn_url": "test.sm.mncdn.com",
"resource_type": "small",
"ssl_status": true,
"ssl_type": "shared_ssl",
"dns_configuration": "GeoIP",
"status_http3_support": true,
"http2": true,
"tls_version": [
"tlsv1.2",
"tlsv1.3"
],
"origin_response_timeout": 30,
"status_geo_blocking": false,
"created_at": "2025-08-06T11:39:51.000000Z",
"updated_at": "2025-08-07T10:40:46.000000Z"
}
}Last updated
Was this helpful?