v2

latestOpenAPI 3.0.0SolarWinds Software Services Agreement2026-07-2167105153.0 KB
entities/websites

Update website

put/v1/entities/websites/{entityId}

Path parameters

entityIdstring required

Entity ID.

Request body

namestring required

Name of the website, which must be unique within the organization. The website must also not contain any control characters, any white space other than space (U+0020), or any consecutive, leading or trailing spaces.

urlstring required

URL of the website. Must be a valid URL with no leading or trailing white space. Must not contain invalid port number (>65535).

Example request

{
  "name": "solarwinds.com",
  "url": "https://www.solarwinds.com",
  "availabilityCheckSettings": {
    "platformOptions": {
      "probePlatforms": [
        "AWS"
      ],
      "testFromAll": true
    },
    "testFrom": {
      "type": "REGION",
      "values": [
        "NA"
      ]
    },
    "outageConfiguration": {
      "consecutiveForDown": 2
    },
    "checkForString": {
      "value": "string"
    },
    "protocols": [
      "HTTP",
      "HTTPS"
    ],
    "ssl": {
      "enabled": true,
      "daysPriorToExpiration": 7,
      "ignoreIntermediateCertificates": true
    },
    "customHeaders": [
      {
        "name": "string",
        "value": "string"
      }
    ],
    "allowInsecureRenegotiation": true,
    "postData": "{\"example\": \"value\"}"
  },
  "tags": [
    {
      "key": "environment",
      "value": "production"
    }
  ],
  "rum": {
    "apdexTimeInSeconds": 4,
    "spa": true
  }
}

Response

The request has succeeded.

idstring required

Unique identifier of the website entity.

Example response

{
  "id": "e-1448474379026206720"
}