For the complete documentation index, see llms.txt. This page is also available as Markdown.

Update a Distribution

Prerequisite: Only contract administrators, owners, and users with accessAndManageCdn privilege can create and manage CDN distributions via the API. You can also set user privileges in the DCD. For more information, see Set User Privileges.

To update an existing CDN distribution, perform a PUT request with the distributionID of the CDN. The CDN distribution for a given distributionID is updated with the provided distribution details.

Note: If a CDN distribution for a given distributionID does not exist, a distribution is created instead.

Endpoint

Use the following endpoint to create or update a CDN distribution: https://cdn.de-fra.ionos.com/distributions/{distributionId}.

Request

Note: The following request contains a sample distributionId. Replace them with the distributionId value whose information you want to update.

curl --location \
--request PUT 'https://cdn.de-fra.ionos.com/distributions/9ba15778-16c4-543c-8775-e52acf4853f5' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJraWQiO' \
--header 'Content-Type: application/json' \
--data '{
  "id": "9ba15778-16c4-543c-8775-e52acf4853f5",
  "metadata": {},
  "properties": {
    "domain": "example.com",
    "certificateId": "5a029f4a-72e5-11ec-90d6-0242ac120003",
    "routingRules": [
      {
        "scheme": "http/https",
        "prefix": "/api",
        "upstream": {
          "host": "server.example.com",
          "caching": true,
          "waf": true,
          "geoRestrictions": {
            "blockList": [
              "CN",
              "RU"
            ]
          },
          "rateLimitClass": "R100",
          "sniMode": "distribution"
        }
      }
    ]
  }
}'

Below is the list of mandatory path parameter:

Path Parameter

Type

Description

Example

distributionId

string

The ID (UUID) of the CDN distribution.

9ba15778-16c4-543c-8775-e52acf4853f5

Response

PUT returns 200 Successful operation when it updates an existing distribution. If the distributionId does not exist, the API creates a new distribution and returns 201 instead.

Following is an example of a successfully updated CDN distribution.

Last updated

Was this helpful?