v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Traffic Policy Profiles

Update a traffic policy profile

Updates a traffic policy profile.

patch/traffic_policy_profiles/{id}

Path parameters

idstring uuid required
Example:6a09cdc3-8948-47f0-aa62-74ac943d6c58

Identifies the traffic policy profile.

Request body

domainsstring[]

Array of domain names.

ip_rangesstring[]

Array of IP ranges in CIDR notation.

limit_bw_kbps512 | 1024 | null nullable

Bandwidth limit in kbps. Must be 512 or 1024, or null to remove.

servicesstring[]

Array of PCEF service IDs to include in the profile.

type'whitelist' | 'blacklist' | 'throttling'

The type of the traffic policy profile.

Example request

{
  "domains": [
    "netflix.com"
  ],
  "ip_ranges": [
    "10.64.0.0/24"
  ],
  "limit_bw_kbps": 1024,
  "services": [
    "service_123"
  ],
  "type": "whitelist"
}

Response

Successful Response

Example response

{
  "data": {
    "created_at": "2018-02-02T22:25:27.521Z",
    "domains": [
      "www.hbomax.com",
      "netflix.com"
    ],
    "id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
    "ip_ranges": [
      "10.64.0.0/24",
      "10.64.0.0/25"
    ],
    "limit_bw_kbps": 512,
    "record_type": "traffic_policy_profile",
    "services": [
      "service_123",
      "service_456"
    ],
    "type": "whitelist",
    "updated_at": "2018-02-02T22:25:27.521Z"
  }
}